summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fixed package renamingGravatar Yanis482020-09-202-5/+3
|
* Merge pull request #310 from idwtd/patch-3Gravatar 2xsaiko2020-08-224-13/+7
|\ | | | | Revert "Bump gradle and use the `mainClass` property"
| * Revert "Bump gradle and use the `mainClass` property"Gravatar idwtd2020-08-214-13/+7
|/ | | This reverts commit 3dd11065699b39861d2db7522bb6f07c4ee94387
* Fix #303 (#308)Gravatar Runemoro2020-08-191-3/+4
|
* Add gradle run tasks (#306)Gravatar idwtd2020-08-194-6/+24
| | | | | * Add gradle run tasks * Bump gradle and use the `mainClass` property
* Merge pull request #305 from idwtd/patch-1Gravatar 2xsaiko2020-08-161-1/+1
|\ | | | | Set config path to Application Support on mac
| * Set config path to Application Support on macGravatar idwtd2020-08-151-1/+1
|/
* Configuration stuff (#301)Gravatar 2xsaiko2020-08-0444-522/+1985
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Begin writing new config system * Make config work * Save window size and position * Add editor font chooser * Use *.ini for windows and mac instead of *rc * Allow for changing language without having to restart the program * Save selected directory in file dialogs * Make dialog visible after moving it to the correct position * Don't change theme on the fly since it's broken * Remove unused gui parameter * Use xdg-open to open URLs on Linux since Desktop.browse doesn't work, at least not on my PC * Fix default proposed highlight color * Multi font selection dialog thingy * Remember network options * Make font selection dialog actually work * Collapse general actions ("OK", "Cancel", ..) into one translation * Localize font dialog * Use enum name when saving colors for consistency with currently selected theme * Save size of split panes * Import old config * Add test & fix some parts of the config serializer * TranslationChangeListener/TranslationUtil -> LanguageChangeListener/LanguageUtil
* Revamp About dialogGravatar 2xsaiko2020-07-235-52/+58
|
* Fix losing current cursor position when renaming entries (#297)Gravatar 2xsaiko2020-07-215-39/+146
| | | | | | | * Fix losing current cursor position when renaming entries * Set nextReference to null after applying it * Extract token map into wrapper type
* Bump versionGravatar 2xsaiko2020-07-181-1/+1
|
* Improve layout for ProgressDialogGravatar 2xsaiko2020-07-182-28/+54
|
* Make GridBagConstraintsBuilder.insets respect scaleGravatar 2xsaiko2020-07-185-9/+25
|
* Make frame visible after setting position to prevent seeing the window moveGravatar 2xsaiko2020-07-181-1/+1
|
* Make ProgressDialog use a JDialog instead of a JFrameGravatar 2xsaiko2020-07-181-16/+19
|
* Replace usages of GridBagConstraints with GridBagConstraintsBuilderGravatar 2xsaiko2020-07-184-119/+39
|
* Add GridBagConstraintsBuilder from feature/settings-dialog branchGravatar 2xsaiko2020-07-181-0/+105
|
* Fix name not being passedGravatar 2xsaiko2020-07-181-1/+1
|
* Allows setting the default editor font in the configuration file. (#295)Gravatar shartte2020-07-142-0/+6
|
* Mapping format fixes (#294)Gravatar Xander2020-07-133-10/+150
| | | | | | | | | * add test to ensure mapping formats can read/write properly * fix not baking last entries in TinyV2 reader * fix broken filter in Enigma File writer * Fix Enigma Zip writer ZipFS exception on non-matching filesystems
* Fix array classes not being translated correctly (#293)Gravatar Runemoro2020-07-111-0/+8
|
* Add menu entry to reload jar & mappings from disk (#263)Gravatar 2xsaiko2020-07-067-38/+91
| | | | | | | | | | * Add button to reload jar & mappings from disk * Disable menu entry when currently loading * Add menu entry that reloads mappings only * Remove duplicate user query code
* Fix crash on remapping [T (#261)Gravatar 2xsaiko2020-07-061-1/+1
|
* Add missing PrintWriter and StringWriter imports (#291)Gravatar Hunter Kvalevog2020-07-061-0/+2
|
* Improve stats gen to show percentages (#272)Gravatar modmuss502020-07-067-104/+217
| | | | | | | | | * Improve stats gen to show percentages * Improve stats dialog * Update stats dialog title and button text Co-authored-by: 2xsaiko <git@dblsaiko.net>
* Handle source export failures (#289)Gravatar Gegy2020-07-062-18/+55
| | | | | | | * handle decompile failures * allow decompiling as stream * Use TRACE_AS_SOURCE in gui source export
* Make class loading more flexible (#277)Gravatar Runemoro2020-07-0637-535/+440
|
* Fix "Mark as Deobfuscated" menu entry not working... this time without ↵Gravatar 2xsaiko2020-07-0626-120/+313
| | | | | | | | | breaking all the things hopefully (#284) * Fix "Mark as Deobfuscated" menu entry not working... this time hopefully without breaking all the things * Use ungrouped() for MappingDelta * Fix *DefEntry overriding the wrong translate() version
* Only try to set decompiler service on the class handle provider if it exists.Gravatar 2xsaiko2020-07-032-2/+4
| | | | Closes #288
* Fix inner classes getting the full path to the class filled in the rename fieldGravatar 2xsaiko2020-06-241-3/+12
|
* Fix inner class name validationGravatar 2xsaiko2020-06-242-2/+9
|
* Fix "Mark as Deobfuscated" menu entry not working (#265)Gravatar 2xsaiko2020-06-123-8/+3
|
* Fix decompile command (#278)Gravatar Nassim2020-06-121-2/+2
|
* Fix not being able to connect to serverGravatar 2xsaiko2020-06-101-1/+3
|
* Build fat jar for enigma-cliGravatar 2xsaiko2020-06-091-0/+13
|
* Fix crash on remapping >1 level of nested class (#262)Gravatar 2xsaiko2020-06-081-3/+5
|
* Top-level package option when generating stats (#264)Gravatar Yanis482020-06-085-26/+59
| | | | | * Top-level package option when generating stats * forgot to rename this
* Fix javadoc loss when renaming entry (#259)Gravatar 2xsaiko2020-06-082-3/+6
|
* Dont count synthetic fields in stats gen (#267)Gravatar modmuss502020-06-081-1/+3
|
* Bump versionGravatar 2xsaiko2020-06-081-1/+1
|
* Fix editor contents being changeable through certain key combinations (#258)Gravatar 2xsaiko2020-06-081-7/+33
| | | | | | | | | * Fix editor contents being changeable through certain key combinations * Clarify comment * Clarify comment even more * Please stop trying to insert tabs in a spaces formatted file, IDEA.
* Merge pull request #257 from 2xsaiko/classnamesGravatar 2xsaiko2020-06-0811-133/+120
|\ | | | | No more prefix naming
| * No more prefix namingGravatar 2xsaiko2020-06-0811-133/+120
|/
* Add remap crash handlerGravatar 2xsaiko2020-06-075-5/+29
|
* Fix yet another navigateToToken crashGravatar 2xsaiko2020-06-071-1/+5
|
* Use MacOS menu bar style (#255)Gravatar modmuss502020-06-061-0/+2
|
* Merge pull request #254 from 2xsaiko/patch-1Gravatar 2xsaiko2020-06-059-100/+351
|\ | | | | Improve connect/create server dialogs
| * Bump versionGravatar 2xsaiko2020-06-051-1/+1
| |
| * Move ServerAddress to enigma-serverGravatar 2xsaiko2020-06-043-4/+3
| |
| * Use StandardValidation.notBlank instead of manually checking field textGravatar 2xsaiko2020-06-041-3/+2
| |