summaryrefslogtreecommitdiff
path: root/enigma/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Improve stats gen to show percentages (#272)Gravatar modmuss502020-07-062-2/+5
| | | | | | | | | * 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-061-15/+47
| | | | | | | * handle decompile failures * allow decompiling as stream * Use TRACE_AS_SOURCE in gui source export
* Make class loading more flexible (#277)Gravatar Runemoro2020-07-0632-525/+422
|
* Fix "Mark as Deobfuscated" menu entry not working... this time without ↵Gravatar 2xsaiko2020-07-0624-118/+311
| | | | | | | | | 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
* Fix inner class name validationGravatar 2xsaiko2020-06-242-2/+9
|
* Fix "Mark as Deobfuscated" menu entry not working (#265)Gravatar 2xsaiko2020-06-121-5/+1
|
* 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-082-7/+33
| | | | | * Top-level package option when generating stats * forgot to rename this
* Add remap crash handlerGravatar 2xsaiko2020-06-074-4/+16
|
* Move ServerAddress to enigma-serverGravatar 2xsaiko2020-06-042-107/+0
|
* Remove duplicate lang entryGravatar 2xsaiko2020-06-031-1/+0
|
* Improve CreateServerDialogGravatar 2xsaiko2020-06-031-8/+6
|
* Extend validation systemGravatar 2xsaiko2020-06-032-0/+2
|
* Improve connect dialogGravatar 2xsaiko2020-06-033-4/+113
|
* Editor tabs (#238)Gravatar 2xsaiko2020-06-0326-155/+1395
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Split into modules * Add validation utils from patch-1 branch * Tabs, iteration 1 * Delete RefreshMode * Load initial code asynchronously * Formatting * Don't do anything when close() gets called multiple times * Add scroll pane to editor * Fix getActiveEditor() * Rename components to more descriptive editorScrollPanes * Move ClassHandle and related types out of gui package * Fix tab title bar and other files not updating when changing mappings * Fix compilation errors * Start adding renaming functionality to new panel * Scale validation error marker * Make most user input validation use ValidationContext * Fix line numbers not displaying * Move CodeReader.navigateToToken into PanelEditor * Add close button on tabs * Remove TODO, it's fast enough * Remove JS script action for 2 seconds faster startup * Add comment on why the action is removed * ClassHandle/ClassHandleProvider documentation * Fix language file formatting * Bulk tab closing operations * Fix crash when renaming class and not connected to server * Fix caret jumping to the end of the file when opening * Increase identifier panel size * Make popup menu text translatable * Fix formatting * Fix compilation issues * CovertTextField -> ConvertingTextField * Retain formatting using spaces * Add de_de.json * Better decompilation error handling * Fix some caret related NPEs * Localization * Close editor on classhandle delete & fix onInvalidate not running on the Swing thread * Fix crash when trying to close a tab from onDeleted class handle listener Co-authored-by: Runemoro <runemoro1@gmail.com>
* Split GUI code to separate module (#242)Gravatar Runemoro2020-06-03201-0/+15472
* Split into modules * Post merge compile fixes Co-authored-by: modmuss50 <modmuss50@gmail.com>