| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | fixed issue with decompiling inner classes | 2014-10-02 | 1 | -3/+5 | |
| | | |||||
| * | fixed inner class renaming bug | 2014-10-01 | 1 | -1/+1 | |
| | | | | | also added smarter sorting to class mappings | ||||
| * | fixed nasty issue with renaming inner classes, but alas, more bugs remain | 2014-09-30 | 1 | -2/+1 | |
| | | |||||
| * | fixed recognition of static initializer tokens | 2014-09-28 | 1 | -0/+1 | |
| | | |||||
| * | added jar export | 2014-09-28 | 1 | -6/+61 | |
| | | |||||
| * | added proper support for renaming constructors | 2014-09-28 | 1 | -27/+43 | |
| | | |||||
| * | implemented mark-as-deobfuscated and reset-to-obfuscated | 2014-09-26 | 1 | -8/+60 | |
| | | |||||
| * | fixed in-jar detection for bridge-related methods | 2014-09-24 | 1 | -26/+13 | |
| | | |||||
| * | HOW DO I WRITE SO MANY BUGS?!? | 2014-09-24 | 1 | -22/+80 | |
| | | |||||
| * | trying to figure out why some mappings to correspond to anything in the jar ↵ | 2014-09-23 | 1 | -17/+85 | |
| | | | | | file... | ||||
| * | fixed bugs with anonymous/inner classes | 2014-09-21 | 1 | -14/+2 | |
| | | |||||
| * | cleaned up imports. I have no idea why Eclipse likes importing jcommander ↵ | 2014-09-20 | 1 | -1/+1 | |
| | | | | | classes instead of guava classes, but it's annoyong! | ||||
| * | added better error handling for source export | 2014-09-18 | 1 | -8/+21 | |
| | | | | | added checks to make sure we don't try to decopmile classes outside of the jar | ||||
| * | removed hack to avoid procyon loop | 2014-09-04 | 1 | -6/+0 | |
| | | |||||
| * | removed deobfuscated method signatures from mappings | 2014-09-03 | 1 | -1/+4 | |
| | | | | | They're too much work to maintain, and they're totally unnecessary! | ||||
| * | big refactor to better model class/method mappings with no deobf name | 2014-09-03 | 1 | -1/+1 | |
| | | |||||
| * | fixed bug with export progress bar | 2014-09-02 | 1 | -11/+19 | |
| | | |||||
| * | refactored jar,translation index. fixed bug with field renaming when fields ↵ | 2014-09-01 | 1 | -16/+27 | |
| | | | | | are shadowed by subclasses | ||||
| * | made obfuscated/deobfuscated class selector a bit easier to use | 2014-09-01 | 1 | -5/+5 | |
| | | |||||
| * | debugging class matcher... almost got it! | 2014-08-30 | 1 | -1/+1 | |
| | | |||||
| * | added checks to find buggy mappings | 2014-08-28 | 1 | -0/+32 | |
| | | |||||
| * | fixed issue with bridge methods so source export has fewer compile errors. =) | 2014-08-25 | 1 | -0/+6 | |
| | | |||||
| * | minor bug fixes | 2014-08-24 | 1 | -0/+1 | |
| | | |||||
| * | duh! We can't put classes in a package called "default" | 2014-08-24 | 1 | -3/+3 | |
| | | | | | | "default" is a java reserved word use "none" instead | ||||
| * | moved all classes from the default package into a package called "default" ↵ | 2014-08-23 | 1 | -24/+25 | |
| | | | | | so they can be properly imported by other classes | ||||
| * | added export command with progress bar | 2014-08-23 | 1 | -11/+67 | |
| | | |||||
| * | fixed constructor references in call graph searches | 2014-08-22 | 1 | -2/+1 | |
| | | | | | clear reference list when opening single reference (instead of list of references) | ||||
| * | fixed call graph searching | 2014-08-21 | 1 | -10/+8 | |
| | | | | | added system to navigate multiple tokens for the same entry in a behavior | ||||
| * | finished reference navigation system. Still need to debug and polish it, but ↵ | 2014-08-20 | 1 | -55/+50 | |
| | | | | | the basic idea seems to work. =) | ||||
| * | fixed type caching after rename | 2014-08-18 | 1 | -3/+10 | |
| | | | | | allowed enums constants to be renamable | ||||
| * | crap-ton of bug fixes for inner classes | 2014-08-18 | 1 | -0/+2 | |
| | | |||||
| * | added support for automatic reconstruction of inner and anonymous classes | 2014-08-17 | 1 | -24/+27 | |
| | | | | | also added class to restore bridge method flags taken out by the obfuscator | ||||
| * | trying to get inner/anonymous classes working... I have a working heuristic ↵ | 2014-08-15 | 1 | -14/+4 | |
| | | | | | in place to detect anonymous classes, but I can't seem to get Procyon to decompile them correctly. I'm writing the InnerClasses attribute and translating all the inner class names, but there must be something else I'm missing... | ||||
| * | added support for field access searches | 2014-08-13 | 1 | -4/+26 | |
| | | | | | added proper detection/handling for constructors | ||||
| * | got simple method call graph working! | 2014-08-12 | 1 | -29/+5 | |
| | | |||||
| * | refactor Ancestries into Ancestries and JarIndex | 2014-08-11 | 1 | -8/+8 | |
| | | |||||
| * | added method inheritance browsing | 2014-08-11 | 1 | -2/+2 | |
| | | | | | also finally fixed method renamer to rename all method implementations in the inheritance hierarchy. | ||||
| * | refactored to remove ClassFile class to prep for upcoming stack navigation. ↵ | 2014-08-10 | 1 | -14/+11 | |
| | | | | | It wasn't really necessary anymore. | ||||
| * | filter out tokens that are not obfuscated | 2014-08-10 | 1 | -61/+16 | |
| | | |||||
| * | completely re-wrote token recognizer to bootstrap from Procyon's AST | 2014-08-10 | 1 | -34/+80 | |
| | | | | | changed imports to guava instead of whatever collections library happened to be on my classpath | ||||
| * | started working on recognition of non-class member identifiers in the source | 2014-08-07 | 1 | -14/+73 | |
| | | | | | | | got class extends,implements working and argument,field types added filtering to make sure highlighted class names are actually classes in the jar | ||||
| * | added un-obfuscated classes to the deobfuscated classes list | 2014-08-06 | 1 | -0/+4 | |
| | | |||||
| * | show deobfuscated names in class inheritance | 2014-08-06 | 1 | -5/+10 | |
| | | |||||
| * | added simple class inheritance browsing | 2014-08-06 | 1 | -0/+5 | |
| | | |||||
| * | added stable save order for mappings to hopefully help with merging | 2014-08-04 | 1 | -39/+80 | |
| | | | | | | | | | added color-coding for source identifiers redesigned rename GUI customized editor pane, added popup menu finished name validation added last-chance save on window close | ||||
| * | started working on method parameter renaming | 2014-08-02 | 1 | -2/+2 | |
| | | |||||
| * | fixed bug with save mappings menu | 2014-07-31 | 1 | -45/+15 | |
| | | | | | | gui shows deobfuscated classes list now working on name validation/sanitization | ||||
| * | switched to line-by-line mergable, human-readable file format for mappings | 2014-07-30 | 1 | -14/+17 | |
| | | |||||
| * | added gui/cli loading of jars/mappings | 2014-07-29 | 1 | -8/+23 | |
| | | | | | gui can save mappings too | ||||
| * | added identifier renaming capability | 2014-07-27 | 1 | -2/+113 | |
| | | | | | | | copied some code over from M3L to handle the heavy bytecode magic. It's ok... M3L will eventually depend on Enigma. Completely restructured the mappings though. This way is better. =) | ||||