summaryrefslogtreecommitdiff
path: root/src/main/java/cuchaz/enigma/gui (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Split GUI code to separate module (#242)Gravatar Runemoro2020-06-0345-5451/+0
| | | | | | | * Split into modules * Post merge compile fixes Co-authored-by: modmuss50 <modmuss50@gmail.com>
* Fix search dialog hanging for a short time sometimes (#250)Gravatar 2xsaiko2020-05-251-4/+6
|
* Add tags to javadoc dialog (#248)Gravatar Yanis482020-05-251-0/+69
| | | | | * Add tags to javadoc dialog * improvements when you have a text selected
* Async search (#245)Gravatar 2xsaiko2020-05-191-5/+8
| | | | | * Async search * Define index when it's used
* QOL fixes - Volume 2 (#239)Gravatar Yanis482020-05-194-84/+177
|
* Multiplayer support (#221)Gravatar Joseph Burton2020-05-039-53/+613
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * First pass on multiplayer * Apply review suggestions * Dedicated Enigma server * Don't jump to references when other users do stuff * Better UI + translations * french translation * Apply review suggestions * Document the protocol * Fix most issues with scrolling. * Apply review suggestions * Fix zip hash issues + add a bit more logging * Optimize zip hash * Fix a couple of login bugs * Add message log and user list * Make Message an abstract class * Make status bar work, add chat box * Hide message log/users list when not connected * Fix status bar not resetting entirely * Run stop server task on server thread to prevent multithreading race conditions * Add c2s message to packet id list * Fix message scroll bar not scrolling to the end * Formatting * User list size -> ushort * Combine contains and remove check * Check removal before sending packet * Add password to login packet * Fix the GUI closing the rename text field when someone else renames something * Update fr_fr.json * oups * Make connection/server create dialogs not useless if it fails once * Refactor UI state updating * Fix imports * Fix Collab menu * Fix NPE when rename not allowed * Make the log file a configurable option * Don't use modified UTF * Update fr_fr.json * Bump version to 0.15.4 * Apparently I can't spell neither words nor semantic versions Co-authored-by: Yanis48 <doublecraft.official@gmail.com> Co-authored-by: 2xsaiko <git@dblsaiko.net>
* Rewrite search dialog (#233)Gravatar 2xsaiko2020-04-297-122/+336
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix searching * Make buttons use localization * Fix rename field opening when pressing shift+space * Tweak search algorithm * Add a bit of documentation * Remove duplicate example line * Use max() when building the inner map instead of overwriting the old value * Keep search dialog state * Formatting * Fix cursor key selection not scrolling to selected item * Don't set font size * Rename close0 to exit * Fix wrong scrolling when selecting search dialog entry
* Add a configurable scale factor (#230)Gravatar 2xsaiko2020-04-2411-54/+224
| | | | | | | | | | | | | | | * Add swing-dpi dependency * Implement scale factor * Improve custom scale dialog, fix crash * Remove use of $ in identifiers * Use custom functional interface for scale listeners * Bump version Co-authored-by: modmuss50 <modmuss50@gmail.com>
* QOL fixes (#222)Gravatar Yanis482020-04-188-28/+43
| | | | | | | * qol fixes * ctrl_mask -> ctrl_down_mask * reverted deobfuscation change
* Added zoom for PanelEditor (#209)Gravatar Samir Mokiem2020-04-142-1/+45
| | | | | * Added zoom for PanelEditor * Updated french zoom translations. Renamed zoom function, Integer to int
* Added export functionality to CrashDialog.java (#208)Gravatar Samir Mokiem2020-04-041-3/+21
| | | | | | | | | * Added export functionality to CrashDialog.java * Update french crash.export translation Co-Authored-By: Yanis48 <doublecraft.official@gmail.com> Co-authored-by: Yanis48 <doublecraft.official@gmail.com>
* Support java 9+ and gradle 6+ (#206)Gravatar liach2020-04-021-1/+1
| | | | | | | | | | | | | | | * 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 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-094-36/+85
| | | | | * Add decompiler API * Add CFR support
* Made Enigma gui translatable (#193)Gravatar modmuss502020-03-0513-84/+125
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* Allow attaching class, method, field, and parameter javadocs (#185)Gravatar Fudge2019-12-026-4/+179
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* Tweak runemoro's stats generator to be compatible with multiple services (#178)Gravatar liach2019-11-081-8/+16
| | | | | | | | | | * 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>
* Allow multiple services for enigma (#168)Gravatar liach2019-11-083-11/+9
| | | | | | | | | | * 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 a default TinyWriter, formatting/misc fixesGravatar modmuss502019-09-081-4/+4
|
* Cleanup the mappings menu items to use the mappings format enum, will be ↵Gravatar modmuss502019-09-082-69/+37
| | | | useful for when adding more formats
* Profile option for mappings to be saved by-obf instead of by-deobfGravatar gegy10002019-06-281-3/+6
|
* Only open mappings once jar is loadedGravatar gegy10002019-06-192-22/+26
|
* Parse profile json from cli argsGravatar gegy10002019-06-182-9/+8
|
* Drop invalid mappings menuGravatar gegy10002019-06-182-0/+13
|
* Mostly resolve test failuresGravatar gegy10002019-06-183-8/+26
|\
| * 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-168-191/+283
| | | | | | | | plugins now provide services configurable via a profile
* | Separate JarProcessor and EntryNameProposerGravatar gegy10002019-05-121-1/+1
| |
* | Simplify Plugin API and support all entry typesGravatar gegy10002019-05-121-17/+11
|/
* Resolve root when navigating to declarationGravatar gegy10002019-05-121-1/+8
|
* Write package name in text field on rename-in-placeGravatar gegy10002019-05-121-1/+24
|
* Rename in place functionality (#131)Gravatar Gegy2019-05-123-57/+70
| | | | | | | | * Rename in place functionality * Don't allow rename if renaming is not allowed for the token * Remove redundant 'R' hotkey
* Quick find fixes (#133)Gravatar Gegy2019-05-123-0/+132
| | | | | | * Correctly offset quick find dialog, select all text on Ctrl+F, and set text to highlighted on open * Support quick find navigation with enter & shift+enter
* Add forward and backward reference history with mouse navigation (#132)Gravatar Erlend Åmdal2019-05-128-78/+178
| | | | | | | | | | | | * Add History * Add forward and backward reference history * Update PopupMenuBar text for history * Fix indentation * Fix more indentation
* Support navigation to declaration on ctrl+clickGravatar gegy10002019-05-112-9/+24
|
* Don't remap specialized methods to their bridge partner in bytecodeGravatar gegy10002019-05-101-4/+10
|
* Catch all decompilation Throwables instead of just ExceptionsGravatar gegy10002019-05-061-2/+2
|
* Few minor render tweaks (#127)Gravatar liach2019-05-033-4/+20
| | | | | | Now inheritance tree bleak color no longer affects other trees Also add a github link Signed-off-by: liach <liach@users.noreply.github.com>
* Fix "Export JAR" file chooser title (#122)Gravatar Runemoro2019-04-251-3/+3
|
* Adds a red highlight for overridden methods in method inheritance tree gui ↵Gravatar liach2019-02-242-7/+47
| | | | | | | | | | | | | | | | | (#112) * Make implemented method nodes in inheritance ui more obvious Signed-off-by: liach <liach@users.noreply.github.com> * Make the text green and italic instead Signed-off-by: liach <liach@users.noreply.github.com> * Update again for the new tree gen Also tweaked new tree gen to show only useful branch nodes Signed-off-by: liach <liach@users.noreply.github.com>
* Fix #81 -- validate renames across related classesGravatar gegy10002019-02-241-1/+5
|
* Fix #110 and remap indices with matched bridge method namesGravatar gegy10002019-02-232-25/+19
|
* Drop final modifiers from displayed source ast for easier readabilityGravatar gegy10002019-02-231-0/+1
|
* Added Basic Search (#102)Gravatar Modmuss502019-02-193-0/+169
| | | | | | | | | | * 3am code for a basic search box, needs some cleanup * Cleanup the code a bit * Add missing header * Fix indentation, + unneeded check
* Track loaded mapping path when opening mappings and not just when savingGravatar gegy10002019-02-191-0/+1
|
* Write stacktrace to editor when decompilation throws an exceptionGravatar gegy10002019-02-192-21/+32
|
* Match token navigation reference resolution to match source indexGravatar gegy10002019-02-181-2/+2
|
* Disable remapping of local variables until proper support is implementedGravatar gegy10002019-02-111-8/+8
|