summaryrefslogtreecommitdiff
path: root/src/main/java/cuchaz/enigma/analysis/index (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Split GUI code to separate module (#242)Gravatar Runemoro2020-06-039-1099/+0
| | | | | | | * Split into modules * Post merge compile fixes Co-authored-by: modmuss50 <modmuss50@gmail.com>
* Fix division by zero (#189)Gravatar howtonotwin2020-04-041-1/+2
| | | Resolves #181.
* Support java 9+ and gradle 6+ (#206)Gravatar liach2020-04-021-2/+3
| | | | | | | | | | | | | | | * Support java 9+ and gradle 6+ * Update asm Signed-off-by: liach <liach@users.noreply.github.com> * Use asm 8 and move that to a constant * Bump version * fix version format Co-authored-by: liach <liach@users.noreply.github.com>
* Made Enigma gui translatable (#193)Gravatar modmuss502020-03-051-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * made enigma gui translatable * key renamings * missed strings * string.format() & another missed string * cached content (thanks @liach) * added a dialog when changing language * better sentence * more %s * liach's requests * empty map * the last (?) missed strings * IT WORKS * French translation * Update fr_fr.json
* Correctly decompile bridges, and add command to add bridges to mappings (#180)Gravatar Runemoro2019-11-221-5/+13
|
* Check protected method/field target in visibility index (#157)Gravatar Runemoro2019-11-026-55/+178
|
* Drop invalid mappings menuGravatar gegy10002019-06-181-4/+4
|
* Fix bad index order from enabled parallelismGravatar gegy10002019-06-181-1/+1
|
* Plugin rework along with API rework: Enigma split from EnigmaProject; ↵Gravatar gegy10002019-06-161-10/+12
| | | | plugins now provide services configurable via a profile
* Method type reference corrections (#142)Gravatar Erlend Åmdal2019-05-184-31/+60
| | | | | | * Add more specific returns for translatables * Only index method descriptors for implemented methods and methods in generated lambda classes
* Feature/weave (#138)Gravatar liach2019-05-162-6/+7
| | | | | | | | | | | | | | | | * Add weave/stitch style command system to enigma Also fixed divide by zero stupidity Signed-off-by: liach <liach@users.noreply.github.com> * Add tests for package access index and command Signed-off-by: liach <liach@users.noreply.github.com> * Minor tweaks Signed-off-by: liach <liach@users.noreply.github.com>
* checkmappings command (#137)Gravatar Erlend Åmdal2019-05-154-5/+195
| | | | | | | | | | | | | | | | * Use expected map sizes for remapped multimaps * Index method and field types * Add package visibility index * Add checkmappings command and use System.err for error messages * Use exit codes for errors * Remove outer class check for package visible only refs * Throw exception on mapping error instead of exiting
* Don't remap specialized methods to their bridge partner in bytecodeGravatar gegy10002019-05-103-65/+33
|
* Fix #110 and remap indices with matched bridge method namesGravatar gegy10002019-02-235-29/+78
|
* Tweak inheritance and implementation tree generationGravatar gegy10002019-02-231-0/+18
|
* Bridge Method Fixes (#111)Gravatar Gegy2019-02-193-16/+113
| | | | | | | | | | * Detect synthetic bridges not marked as bridges, and add back flags to produced bytecode * Remove debug check * Remove more test code * Remove unneeded change to `TranslationClassVisitor`
* Remap sources (#106)Gravatar Gegy2019-01-305-81/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Source remapping beginnings * Fix navigation to remapped classes * Translate identifier info reference * Remap local variables with default names in source * Caching translator * Fix lack of highlighting for first opened class * Fix unicode variable names * Unicode checker shouldn't be checking just alphanumeric * Fix package tree being built from obf names * Don't index `this` as method call for method::reference * Apply proposed names * Fix source export issues * Replace unicode var names at bytecode level uniquely * Drop imports from editor source * Class selector fixes * Delta keep track of base mappings to enable lookup of old names * Optimize source remapping by remapping source with a StringBuffer instead of copying * Bump version
* [WIP] Mapping rework (#91)Gravatar Gegy2019-01-249-0/+687
* 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