summaryrefslogtreecommitdiff
path: root/enigma-cli/src/main (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Do not abort decompile command on decompiler errorsGravatar AlexTMjugador2020-10-241-1/+2
| | | | | | | | | | | | | | | | | | | As explained in PR #289, the decompilers may fail decompiling some vanilla Minecraft classes. Although it is my opinion that these errors should be fixed in the decompilers themselves, currently they render the decompile CLI command useless, as no output is produced whatsoever. The PR that was mentioned previously addressed this situation for the GUI part of Enigma, but not for the CLI commands, which were left untouched. These changes modify the decompiler error strategy used by the aforementioned CLI command to trace the errors, but continue decompiling classes, so at least a partial output is generated. This way users will be happy that the Enigma decompile command works, and developers will still be motivated to fix the underlying issues. Signed-off-by: AlexTMjugador <AlexTMjugador@users.noreply.github.com>
* Make class loading more flexible (#277)Gravatar Runemoro2020-07-063-8/+14
|
* Fix decompile command (#278)Gravatar Nassim2020-06-121-2/+2
|
* Split GUI code to separate module (#242)Gravatar Runemoro2020-06-0310-0/+707
* Split into modules * Post merge compile fixes Co-authored-by: modmuss50 <modmuss50@gmail.com>