summaryrefslogtreecommitdiff
path: root/src/main/java (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix division by zero (#189)Gravatar howtonotwin2020-04-041-1/+2
| | | Resolves #181.
* Support java 9+ and gradle 6+ (#206)Gravatar liach2020-04-029-9/+19
| | | | | | | | | | | | | | | * 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>
* Fix CFR-related bugsGravatar Runemoro2020-03-192-2/+7
|
* Add support for reading/writing zipped mappings (#199)Gravatar Chocohead2020-03-178-6/+45
| | | | | | | | | | | | | | * Add support to read/write Enigma mappings from ZIP Takes any path which points to a ZIP as wanting to be read/written as a ZIP Paths from an existing ZIP file system will be correctly handled as directories * Fix deleting a path needing to be from the default file system * Allow calling MapSpecializedMethodsCommand directly * Fix indentation * Missing static
* Fix documenting constructors (#201)Gravatar Juuxel2020-03-171-1/+1
| | | | | EntryReference.getNameableEntry() specifically excludes constructors, so I switched it to always use the entry.
* CFR support (#192)Gravatar Runemoro2020-03-0950-691/+1246
| | | | | * Add decompiler API * Add CFR support
* Made Enigma gui translatable (#193)Gravatar modmuss502020-03-0524-108/+264
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* Fix drop mappings not checking localVarsGravatar modmuss502020-03-041-1/+2
|
* Dont check for #comments on a javadoc line in the mappings, not perfect but ↵Gravatar modmuss502020-02-141-0/+5
| | | | will make my life a lot easier when updating
* Fix comments (#187)Gravatar Fudge2019-12-051-1/+3
| | | | | | * fix comments * indent
* Allow attaching class, method, field, and parameter javadocs (#185)Gravatar Fudge2019-12-0234-828/+667
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * bring liach pr to modern enigma * bump version * fuck off vscode * switch to COMMENT and write comments before * it was already after, what do you want * oops * put inner classes at the end * remove indents and use all caps * add refreshmappings command * Update src/main/java/cuchaz/enigma/translation/mapping/serde/EnigmaMappingsWriter.java * Delete RefreshEnigmaMappingsCommand.java * Update CommandMain.java * ok
* Correctly decompile bridges, and add command to add bridges to mappings (#180)Gravatar Runemoro2019-11-225-7/+85
|
* Tweak runemoro's stats generator to be compatible with multiple services (#178)Gravatar liach2019-11-082-15/+27
| | | | | | | | | | * Tweak runemoro's stats generator to be compatible with multiple services Signed-off-by: liach <liach@users.noreply.github.com> * Names can have $ in java Signed-off-by: liach <liach@users.noreply.github.com>
* Add stats generation (#177)Gravatar Runemoro2019-11-085-4/+271
| | | | | | | | * Add stats generation * Parameters and inner classes too * Fixes
* Fix inner class renaming (#176)Gravatar liach2019-11-081-1/+1
| | | Signed-off-by: liach <liach@users.noreply.github.com>
* Fix compiling on Java 13 (#174)Gravatar Runemoro2019-11-081-1/+1
|
* Fix local variable fixer (#172)Gravatar Runemoro2019-11-083-93/+92
| | | | | | | | | | * Fix local variable fixer * LVT index -> LV index * Small fix * Use LocalNameGenerator
* Allow multiple services for enigma (#168)Gravatar liach2019-11-0810-74/+292
| | | | | | | | | | * Allow multiple services for enigma Signed-off-by: liach <liach@users.noreply.github.com> * Delete bad dummy Signed-off-by: liach <liach@users.noreply.github.com>
* Add tinyv2 save/loadGravatar liach2019-11-035-2/+500
|
* Check protected method/field target in visibility index (#157)Gravatar Runemoro2019-11-0212-55/+580
|
* Fix array class translation (#173)Gravatar Runemoro2019-11-021-0/+6
|
* Merge branch 'pull/163' and bump versionGravatar modmuss502019-09-122-1/+136
|\ | | | | | | | | # Conflicts: # src/main/java/cuchaz/enigma/translation/mapping/serde/MappingFormat.java
| * Update ProguardMappingsReader.javaGravatar Runemoro2019-09-051-3/+2
| |
| * Add Proguard formatGravatar Runemoro2019-09-042-1/+137
| |
* | missed this oneGravatar modmuss502019-09-081-1/+1
| |
* | Add a default TinyWriter, formatting/misc fixesGravatar modmuss502019-09-084-6/+9
| |
* | Cleanup the mappings menu items to use the mappings format enum, will be ↵Gravatar modmuss502019-09-083-69/+47
|/ | | | useful for when adding more formats
* Use name proposal service when exporting deobfuscated jar or decompiled ↵Gravatar Runemoro2019-08-262-8/+61
| | | | sources (#159)
* Put class opening brace on same line (#160)Gravatar Runemoro2019-08-111-0/+7
|
* Fix exception message (#156)Gravatar Runemoro2019-08-041-1/+1
|
* Fix compose translating in wrong direction (#155)Gravatar Runemoro2019-07-081-1/+2
|
* Fix compose-mappings not remapping descriptors of methods on the right side ↵Gravatar Runemoro2019-07-081-16/+2
| | | | | | | | only (#154) * Fix compose-mappings not remapping descriptors of methods on the right side only * Update version
* 1AM codingGravatar Adrian Siekierka2019-06-291-1/+1
|
* fix yet another lovely Gson NPEGravatar Adrian Siekierka2019-06-291-2/+4
|
* Profile option for mappings to be saved by-obf instead of by-deobfGravatar gegy10002019-06-2818-44/+119
|
* fix inner class handling in TinyMappingsReaderGravatar Adrian Siekierka2019-06-281-0/+4
|
* fix NPE in EnigmaProfile.getArgument when no args givenGravatar Adrian Siekierka2019-06-281-1/+1
|
* Remove test code accidentally left behind in #152 (#153)Gravatar Runemoro2019-06-261-8/+0
|
* Add compose, convert, and invert commands (#152)Gravatar Runemoro2019-06-257-39/+409
| | | | | | | | * Add compose and invert commands and add support for conversion to tiny mappings * Improvements suggested by liach * Use Translator to get right entries
* Ignore comments in tiny filesGravatar Runemoro2019-06-191-0/+4
|
* Only open mappings once jar is loadedGravatar gegy10002019-06-193-32/+37
|
* Merge pull request #150 from Runemoro/short-inner-class-namesGravatar Modmuss502019-06-191-1/+1
|\ | | | | Save unqualified inner class names
| * Save unqualified inner class namesGravatar Runemoro2019-06-181-1/+1
| |
* | Parse profile json from cli argsGravatar gegy10002019-06-185-28/+23
| |
* | Use jopt for cli parsingGravatar gegy10002019-06-182-28/+95
| |
* | Drop invalid mappings menuGravatar gegy10002019-06-184-5/+17
| |
* | Fix bad index order from enabled parallelismGravatar gegy10002019-06-182-2/+1
| |
* | Mostly resolve test failuresGravatar gegy10002019-06-185-11/+28
|\|
| * fix unwanted declaration navigation during Quick FindGravatar asie2019-06-153-7/+26
| |
* | Plugin rework along with API rework: Enigma split from EnigmaProject; ↵Gravatar gegy10002019-06-1635-820/+1097
| | | | | | | | plugins now provide services configurable via a profile