| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2019-01-24 | [WIP] Mapping rework (#91) | 124 | -5716/+4484 | ||
| * 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 | |||||
| 2019-01-11 | Fix annotation npe for villager (#99) | 1 | -5/+13 | ||
| Signed-off-by: liach <liach@users.noreply.github.com> | |||||
| 2018-12-15 | Tweak variable name generation (#86) | 4 | -35/+71 | ||
| * Don't apply offset to all methods in abstract class * Tweak local variable naming | |||||
| 2018-12-15 | Fix #78 (#85) | 1 | -1/+2 | ||
| 2018-12-12 | be a bit nicer | 1 | -1/+1 | ||
| 2018-12-11 | fix #74 | 2 | -0/+16 | ||
| 2018-12-11 | fix #66 | 1 | -1/+1 | ||
| 2018-12-10 | Fix cursor and selection highlight color when using the dark theme | 3 | -2/+16 | ||
| 2018-12-09 | add option to view calls to a method in general, not just the specific ↵ | 5 | -7/+37 | ||
| instance of the method | |||||
| 2018-12-09 | fix SourceIndex remap bugs | 3 | -18/+15 | ||
| 2018-12-08 | fix #63 - make method inheritance lookup take into account access flags | 2 | -4/+17 | ||
| 2018-12-08 | rewrite entry resolution logic in TranslationIndex, hopefully fixing bugs | 8 | -88/+81 | ||
| 2018-12-08 | add barebones plugin framework, cleanup | 24 | -347/+310 | ||
| 2018-11-29 | work around Procyon weirdness | 1 | -1/+7 | ||
| 2018-11-28 | fix class sorting in pane | 1 | -41/+2 | ||
| 2018-11-28 | add line number coloring, bugfixes | 7 | -28/+44 | ||
| 2018-11-28 | refactors and bugfixes | 5 | -89/+112 | ||
| 2018-11-28 | Move to awt FileDialog | 2 | -13/+19 | ||
| 2018-11-28 | Add dark LAF | 3 | -6/+22 | ||
| 2018-11-28 | fix #68 | 3 | -20/+47 | ||
| 2018-11-27 | do not propagate non-argument local variable names | 8 | -11/+36 | ||
| 2018-11-07 | update Guava, show proper constructor tree node, fix AccessFlags.toString | 6 | -6/+143 | ||
| 2018-11-04 | unify local variable/argument numbering | 5 | -24/+23 | ||
| 2018-10-31 | hackfix argument order in inner class constructors. this needs a proper fix | 1 | -1/+5 | ||
| 2018-10-28 | expose AccessFlags correctly | 1 | -3/+5 | ||
| 2018-10-28 | expose AccessFlags over Access | 3 | -10/+18 | ||
| 2018-10-27 | update gson, fix argument indexing, delete empty class mappings | 5 | -11/+34 | ||
| 2018-10-26 | remove parallelStreams on non-thread-safe ooperations in rebuildMethodNames, ↵ | 1 | -6/+18 | ||
| gain a bit of performance by not clearing the cache endlessly in phase 2 | |||||
| 2018-07-24 | "make sure this is actually a field" properly | 1 | -1/+1 | ||
| 2018-07-24 | use a common metadata (no-retry) instance to decompile all the files, ↵ | 1 | -2/+37 | ||
| similar to the procyon standalone decompiler | |||||
| 2018-07-24 | match the keybind to what the UI says | 1 | -1/+1 | ||
| 2018-07-24 | more custom source transformers | 1 | -1/+7 | ||
| 2018-07-23 | missed a semicolon | 1 | -1/+1 | ||
| 2018-07-23 | add support for the extra loader | 1 | -0/+12 | ||
| 2018-07-23 | remove injected DUP + getClass() + POP instructions | 1 | -0/+28 | ||
| 2018-07-23 | fix source index tokens for inner classes that are not mapped | 1 | -0/+12 | ||
| 2018-07-22 | Make rebuildMethodNames use parallelStream's should improve the speed a lot | 1 | -10/+10 | ||
| let me know if it breaks anything | |||||
| 2018-07-22 | Fixed setBridged resetting the viability | 1 | -1/+1 | ||
| 2018-07-20 | recursively check ClassMapping dirty state | 1 | -1/+10 | ||
| (cherry picked from commit 4a8ee4303ca1ab82da9499181122bfd7e3214a05) | |||||
| 2018-07-20 | remove raw casts to Object | 1 | -1/+3 | ||
| (cherry picked from commit 268e8bd3a292162c215723638665e32415207c28) | |||||
| 2018-07-20 | recursively check ClassMapping dirty state | 1 | -1/+10 | ||
| 2018-07-20 | remove raw casts to Object | 1 | -1/+3 | ||
| 2018-07-17 | ASM Based Class Translator (#1) | 104 | -5173/+3527 | ||
| * Initial port to ASM * Package updates * Annotation + inner class translation * Fix inner class mapping * More bytecode translation * Signature refactoring * Fix highlighting of mapped names * Fix parameter name offset * Fix anonymous class generation * Fix issues with inner class signature transformation * Fix bridged method detection * Fix compile issues * Resolve all failed tests * Apply deobfuscated name to transformed classes * Fix class signatures not being translated * Fix frame array type translation * Fix frame array type translation * Fix array translation in method calls * Fix method reference and bridge detection * Fix handling of null deobf mappings * Parameter translation in interfaces * Fix enum parameter index offset * Fix parsed local variable indexing * Fix stackoverflow on rebuilding method names * Ignore invalid decompiled variable indices * basic source jar * Output directly to file on source export * Make decompile parallel * fix incorrect super calls * Use previous save state to delete old mapping files * Fix old mappings not properly being removed * Fix old mappings not properly being removed * make isMethodProvider public (cherry picked from commit ebad6a9) * speed up Deobfuscator's getSources by using a single TranslatingTypeloader and caching the ClassLoaderTypeloader * ignore .idea project folders * move SynchronizedTypeLoader to a non-inner * fix signature remap of inners for now * index & resolve method/field references for usages view * Allow reader/writer subclasses to provide the underlying file operations * fix giving obf classes a name not removing them from the panel * buffer the ParsedJar class entry inputstream, allow use with a jarinputstream * make CachingClasspathTypeLoader public * make CachingClasspathTypeLoader public * support enum switches with obfuscated SwitchMaps | |||||
| 2018-07-11 | support enum switches with obfuscated SwitchMaps | 1 | -0/+12 | ||
| 2018-07-10 | make CachingClasspathTypeLoader public | 1 | -1/+1 | ||
| 2018-07-10 | make CachingClasspathTypeLoader public | 1 | -1/+1 | ||
| 2018-07-10 | buffer the ParsedJar class entry inputstream, allow use with a jarinputstream | 1 | -1/+24 | ||
| 2018-07-10 | fix giving obf classes a name not removing them from the panel | 1 | -1/+5 | ||
| 2018-07-10 | Allow reader/writer subclasses to provide the underlying file operations | 3 | -10/+27 | ||
| 2018-07-10 | index & resolve method/field references for usages view | 2 | -0/+49 | ||