summaryrefslogtreecommitdiff
path: root/src/main/java/cuchaz/enigma/mapping/MappingsRenamer.java (follow)
Commit message (Collapse)AuthorAgeFilesLines
* [WIP] Mapping rework (#91)Gravatar Gegy2019-01-241-365/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Move packages * Mapping & entry refactor: first pass * Fix deobf -> obf tree remapping * Resolve various issues * Give all entries the potential for parents and treat inner classes as children * Deobf UI tree elements * Tests pass * Sort mapping output * Fix delta tracking * Index separation and first pass for #97 * Keep track of remapped jar index * Fix child entries not being remapped * Drop non-root entries * Track dropped mappings * Fix enigma mapping ordering * EntryTreeNode interface * Small tweaks * Naive full index remap on rename * Entries can resolve to more than one root entry * Support alternative resolution strategies * Bridge method resolution * Tests pass * Fix mappings being used where there are none * Fix methods with different descriptors being considered unique. closes #89
* rewrite entry resolution logic in TranslationIndex, hopefully fixing bugsGravatar asie2018-12-081-2/+2
|
* do not propagate non-argument local variable namesGravatar asie2018-11-271-1/+5
|
* Package updatesGravatar gegy10002018-05-191-0/+1
|
* Initial port to ASMGravatar gegy10002018-05-191-70/+93
|
* Follow Fabric guidelinesGravatar Thog2017-03-081-318/+315
|
* Drop unix case style and implement hashCode when equals is overridedGravatar Thog2017-03-071-28/+26
| | | | Also update Guava to version 21
* BREAKING CHANGE: Implement modifier transformerGravatar Thog2016-10-301-0/+18
| | | | | | | Known Bugs: - Inner class modifier isn't saved to mapping - Inner class modifier isn't applied to bytecode
* Rework setFieldName to only check name in the actual class mapping and ↵Gravatar Thog2016-10-271-2/+17
| | | | mothers classes mappings (Fix #51)
* Revert "apply similar fix to fields"Gravatar asiekierka2016-10-161-46/+5
| | | | This reverts commit ea3d062ba2426903a37acca26acca187c7e245c3.
* apply similar fix to fieldsGravatar asiekierka2016-10-161-5/+46
|
* make Enigma check subclasses of method implementations for duplicate mapping ↵Gravatar asiekierka2016-10-161-12/+21
| | | | names
* Make sure to use UTF-8 in any case for I/O, change "Mark as deobfuscated" ↵Gravatar Thog2016-09-131-0/+1
| | | | key and clean up
* fix method/argument renaming edge cases, add method/argument name rebuilder, ↵Gravatar asiekierka2016-09-121-11/+45
| | | | add Package to Access enum
* Update Procyon (fix UTF-8 issues), disable debug line number in source code ↵Gravatar Thog2016-08-191-0/+5
| | | | and make all decompiler settings configurable with system properties
* add proper propagation of argument namesGravatar asiekierka2016-08-181-0/+21
|
* Revert "Removed unused methods"Gravatar asiekierka2016-08-171-0/+40
| | | | This reverts commit 1742190f784d0d62e7cc869eebafdfe1927e448f.
* ReformatGravatar lclc982016-07-041-16/+10
|
* Removed unused methodsGravatar lclc982016-07-021-28/+0
|
* Reformatting codeGravatar lclc982016-07-021-6/+2
|
* Json format (#2)Gravatar lclc982016-06-301-0/+237
* Added new format * Fixed bug * Updated Version