summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* add support for the extra loaderGravatar Thiakil2018-07-231-0/+12
|
* add classloader for adding depsGravatar Thiakil2018-07-231-0/+59
|
* remove injected DUP + getClass() + POP instructionsGravatar Thiakil2018-07-231-0/+28
|
* fix source index tokens for inner classes that are not mappedGravatar Thiakil2018-07-231-0/+12
|
* Make rebuildMethodNames use parallelStream's should improve the speed a lotGravatar modmuss502018-07-221-10/+10
| | | | let me know if it breaks anything
* Fixed setBridged resetting the viabilityGravatar modmuss502018-07-221-1/+1
|
* recursively check ClassMapping dirty stateGravatar Thiakil2018-07-201-1/+10
|
* remove raw casts to ObjectGravatar Thiakil2018-07-202-1/+42
|
* Update version numberGravatar gegy10002018-07-181-1/+1
|
* Merge branch 'master' into asmGravatar gegy10002018-07-170-0/+0
|\
| * Recursively rebuild method namesGravatar modmuss502018-06-212-3/+9
| | | | | | | | Before it was only doing the first level of inner classes, this works on "inner inner classes"
* | support enum switches with obfuscated SwitchMapsGravatar Thiakil2018-07-112-0/+426
| |
* | make CachingClasspathTypeLoader publicGravatar Thiakil2018-07-101-1/+1
| |
* | sources jarGravatar Thiakil2018-07-101-0/+6
|\ \
| * | basic source jarGravatar Thiakil2018-06-301-0/+6
| |/
* | 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-108-35/+158
|\ \ | | | | | | 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
| | |
| * | ignore .idea project foldersGravatar Thiakil2018-07-061-0/+1
| | |
| * | speed up Deobfuscator's getSources by using a single TranslatingTypeloader ↵Gravatar Thiakil2018-07-065-35/+131
| | | | | | | | | | | | and caching the ClassLoaderTypeloader
* | | Merge pull request #7 from thiakil/method_field_handlesGravatar Modmuss502018-07-102-0/+49
|\ \ \ | |/ / |/| | index & resolve method/field references for usages view
| * | 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
| |
* | Merge pull request #5 from thiakil/param-annotation-fixGravatar gegy10002018-07-041-2/+2
|\ \ | | | | | | fix incorrect super calls
| * | 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-162-3/+1
| | | | | | | | | | | | invalid. This fixes intelij not reading the class successfully, thus preventing it from being used.