summaryrefslogtreecommitdiff
path: root/enigma-swing/src/main/java (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-04-29Fix scroll speed being dependent on the line count in the file.Gravatar Marco Rebhan1-0/+4
Closes #383.
2021-04-07Update translationsGravatar Yanis481-1/+0
2021-04-07New ways to searchGravatar Yanis482-31/+93
2021-04-07Allow only one selected entry in treesGravatar Yanis483-4/+17
Didn't cause any issue, but who knows
2021-04-06Fix visual inconsistencies after changing theme settings.Gravatar Marco Rebhan4-18/+27
Closes #376.
2021-04-06Fix progress bar being very tall.Gravatar Marco Rebhan1-11/+28
Closes #366.
2021-04-06Make progress dialog thread-safe.Gravatar Marco Rebhan1-26/+28
Closes #377.
2021-04-03Fix warning/error formatting in editorGravatar Yanis481-0/+2
2021-04-02Copy method/field descriptor on clickGravatar Yanis482-2/+40
2021-03-30Show scrollbar buttons when using FlatLaf.Gravatar Marco Rebhan1-0/+1
Closes #370.
2021-03-30Set null javadoc instead of empty/blank string when clearing the text in the ↵Gravatar Marco Rebhan1-1/+1
javadoc editor. Closes #369.
2021-03-30Fix text field always selecting everything when using FlatLaf.Gravatar Marco Rebhan1-0/+3
Closes #365.
2021-03-30Fix method nameGravatar Marco Rebhan1-2/+2
2021-03-25Fix using runtime changed configuration for parts of the UI that don't ↵Gravatar Marco Rebhan9-35/+64
support it yet Closes #346.
2021-03-20Fix missing icon checkGravatar Juuxel1-1/+1
2021-03-20Add a check for missing SVG icon filesGravatar Juuxel1-1/+9
Improves debugging if the icon is missing as FlatLaf's own error is thrown at render time.
2021-03-20Switch to SVG icons instead of PNGs and add icon for recordsGravatar Juuxel2-13/+8
The PNG icons scaled horribly on FlatLaf but these ones look smooth on any scaling level. Note: even though the icons are FlatSVGIcons from FlatLaf, they work properly on all LaFs if the FlatLaf UI scale property is set to the correct value (which LookAndFeel.setGlobalLAF does).
2021-03-19WIP full record supportGravatar modmuss501-1/+9
2021-03-18Switch to FlatDarkLaf instead of FlatDarculaLafGravatar Juuxel1-2/+2
Same colours, but the focus borders are nicer.
2021-03-18Don't use custom editor fonts when they aren't enabledGravatar Juuxel3-3/+20
2021-03-18Use FlatLaf's own DPI scaling instead of swing-dpiGravatar Juuxel2-8/+24
2021-03-17Icons everywhereGravatar Yanis488-19/+131
2021-03-16Remove unused LookAndFeel display name field and getterGravatar Juuxel1-14/+5
2021-03-16Disable FlatLaf's custom HiDPI scalingGravatar Juuxel1-0/+4
2021-03-15Make the javadoc dialog use the editor font as it is an editorGravatar Juuxel1-0/+2
2021-03-15Migrate to FlatLafGravatar Juuxel1-3/+8
Fixes #355. - Replaces the Darcula look and feel with FlatLaf Darcula, which does not have the same rendering bugs with CJK characters (at least on Windows 10). - Replaces Metal with FlatLaf Light as the default look and feel. Metal is provided as a new, separate theme option.
2021-03-06easier fix and document UiConfig.getLayout()Gravatar Yanis482-3/+14
2021-03-06Fix right panel width being reset on ui updateGravatar Yanis481-0/+4
2021-01-23Fix the structure panel not updating if switching to an existing tabGravatar Juuxel1-2/+1
2021-01-23Fixed Javadoc not updating in certain cases (close/open mappings)Gravatar 2xsaiko2-4/+4
Closes #210.
2021-01-23Fixes open declaration not opening declarationGravatar liach1-2/+2
Signed-off-by: liach <liach@users.noreply.github.com>
2021-01-23Add interface/enum/annotation icons and modifier displaysGravatar Juuxel3-5/+49
- Adds icons in the sidebar and structure panel for interfaces, enums and annotations. - Adds some modifiers (final, default, abstract, static) to the structure panel.
2021-01-17Attempt fixing rare CME when loading a jar while tabs are openGravatar 2xsaiko1-3/+8
2020-12-19fix invisible root toggleGravatar Yanis482-0/+4
2020-12-19fix nodes not displayed as selectedGravatar Yanis481-16/+11
2020-12-19ensure it's left mouse button being usedGravatar Yanis482-4/+4
2020-12-16isConstructor() from method entryGravatar Yanis481-5/+1
2020-12-15avoid duplicate logicGravatar Yanis481-37/+6
2020-12-15Add separate constructor icon (#3)Gravatar Juuxel2-1/+6
2020-12-15Refresh structure panel on rename/mark as deobf/reset to obfGravatar Yanis481-0/+3
2020-12-15Fix automapped entriesGravatar Yanis481-3/+2
Automatically deobfuscated names (like in enums) were displayed with their obfuscated name, and were not considered as deobf when selecting "hide deobf members"
2020-12-14Use class icon in class tree (ClassSelector) (#2)Gravatar Juuxel1-2/+6
2020-12-14Structure panel!Gravatar Yanis484-24/+177
2020-10-31move enable to showGravatar Yanis482-9/+5
2020-10-31Improvements to deobf panel popup menuGravatar Yanis482-5/+32
2020-10-27Add "include synthetic parameters" to mapping stats & save options (#309)Gravatar YanisBft4-11/+39
* Add "include synthetic members" to mapping stats & save options * bump version * include synthetic parameters * capitalization
2020-10-11Add popup menu to deobf panel to quickly rename a package/classGravatar Yanis482-4/+50
2020-10-02Add retranslate support to editor context menuGravatar 2xsaiko3-38/+41
2020-10-02Refactor PopupMenuBar -> EditorPopupMenuGravatar 2xsaiko3-206/+208
2020-10-02Focus editor after renameGravatar 2xsaiko1-4/+10
Closes #318