summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * recursively check ClassMapping dirty stateGravatar Thiakil2018-07-201-1/+10
| | | | | | | | (cherry picked from commit 4a8ee4303ca1ab82da9499181122bfd7e3214a05)
| * remove raw casts to ObjectGravatar Thiakil2018-07-202-1/+42
| | | | | | | | (cherry picked from commit 268e8bd3a292162c215723638665e32415207c28)
| * ASM Based Class Translator (#1)Gravatar gegy10002018-07-17120-5925/+4607
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* | support enum switches with obfuscated SwitchMapsGravatar Thiakil2018-07-112-0/+426
| |
* | make CachingClasspathTypeLoader publicGravatar Thiakil2018-07-101-1/+1
| |
* | make CachingClasspathTypeLoader publicGravatar Thiakil2018-07-101-1/+1
| |
* | buffer the ParsedJar class entry inputstream, allow use with a jarinputstreamGravatar Thiakil2018-07-101-1/+24
| |
* | fix giving obf classes a name not removing them from the panelGravatar Thiakil2018-07-101-1/+5
| |
* | Allow reader/writer subclasses to provide the underlying file operationsGravatar Thiakil2018-07-103-10/+27
| |
* | Merge pull request #6 from thiakil/speedy-getsourcesGravatar Modmuss502018-07-107-35/+157
|\ \ | | | | | | Speedy getsources + sig fix
| * | fix signature remap of inners for nowGravatar Thiakil2018-07-061-0/+15
| | |
| * | move SynchronizedTypeLoader to a non-innerGravatar Thiakil2018-07-062-28/+39
| | |
| * | speed up Deobfuscator's getSources by using a single TranslatingTypeloader ↵Gravatar Thiakil2018-07-065-35/+131
| | | | | | | | | | | | and caching the ClassLoaderTypeloader
* | | index & resolve method/field references for usages viewGravatar Thiakil2018-07-102-0/+49
|/ /
* | make isMethodProvider publicGravatar modmuss502018-07-051-1/+1
| | | | | | | | (cherry picked from commit ebad6a9)
* | Fix old mappings not properly being removedGravatar gegy10002018-07-053-78/+96
| |
* | Fix old mappings not properly being removedGravatar gegy10002018-07-052-10/+17
| |
* | Use previous save state to delete old mapping filesGravatar gegy10002018-07-053-54/+54
| |
* | fix incorrect super callsGravatar Thiakil2018-07-041-2/+2
| |
* | Make decompile parallelGravatar modmuss502018-07-031-6/+10
| |
* | Output directly to file on source exportGravatar gegy10002018-07-031-4/+4
| |
* | Ignore invalid decompiled variable indicesGravatar gegy10002018-06-301-9/+16
| |
* | Fix stackoverflow on rebuilding method namesGravatar gegy10002018-06-251-17/+13
| |
* | Fix parsed local variable indexingGravatar gegy10002018-06-245-55/+54
| |
* | Fix enum parameter index offsetGravatar gegy10002018-06-243-12/+18
| |
* | Parameter translation in interfacesGravatar gegy10002018-06-241-19/+48
| |
* | Fix handling of null deobf mappingsGravatar gegy10002018-06-244-32/+15
| |
* | Fix method reference and bridge detectionGravatar gegy10002018-06-247-49/+90
| |
* | Fix array translation in method callsGravatar gegy10002018-06-233-7/+17
| |
* | Fix frame array type translationGravatar gegy10002018-06-231-2/+2
| |
* | Fix frame array type translationGravatar gegy10002018-06-231-2/+6
| |
* | Fix class signatures not being translatedGravatar gegy10002018-06-231-1/+2
| |
* | Apply deobfuscated name to transformed classesGravatar gegy10002018-06-232-8/+15
| |
* | Resolve all failed testsGravatar gegy10002018-06-226-18/+15
| |
* | Fix compile issuesGravatar gegy10002018-06-223-6/+4
| |
* | Merge branch 'master' into asmGravatar gegy10002018-06-221-0/+4
|\| | | | | | | | | | | # Conflicts: # build.gradle # src/main/java/cuchaz/enigma/bytecode/MethodParametersAttribute.java
| * Fix method parameter info sometimes causing the exported class to become ↵Gravatar modmuss502018-05-161-2/+0
| | | | | | | | | | | | invalid. This fixes intelij not reading the class successfully, thus preventing it from being used.
| * Add support for MTH-ARG in tiny mappings readerGravatar modmuss502018-05-151-0/+4
| |
* | Fix bridged method detectionGravatar gegy10002018-06-211-1/+1
| |
* | Fix issues with inner class signature transformationGravatar gegy10002018-06-214-13/+11
| |
* | Fix anonymous class generationGravatar gegy10002018-05-203-4/+6
| |
* | Fix parameter name offsetGravatar gegy10002018-05-193-46/+40
| |
* | Fix highlighting of mapped namesGravatar gegy10002018-05-191-10/+14
| |
* | Signature refactoringGravatar gegy10002018-05-1916-96/+206
| |
* | More bytecode translationGravatar gegy10002018-05-197-50/+304
| |
* | Fix inner class mappingGravatar gegy10002018-05-192-18/+12
| |
* | Annotation + inner class translationGravatar gegy10002018-05-1911-27/+137
| |
* | Package updatesGravatar gegy10002018-05-1970-529/+119
| |
* | Initial port to ASMGravatar gegy10002018-05-1992-5151/+3027
|/
* Added theme switcher + dark theme (#60)Gravatar Modmuss502017-06-079-88/+226
| | | | | | | | | | | | | | | | | | | | | | * Initial work on the color config * Save and read config from file.+ * Allow changing the editor colors * Remove the right margin * Move config to the user's home dir * Use Guava instead of Apache commons * Add runtime theme switching, includes example "dark" theme. * Rename dark theme as requested * Small clean up * Include suggestions from @Thog