-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting Rid of Swing #4894
Merged
Merged
Getting Rid of Swing #4894
Changes from 22 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
7efd35f
Add Architecture Test for the usage of Swing and JGoodies
LinusDietz e47970a
Delete unused classes
LinusDietz 7681ac5
Fix test for matching sub-packages of Swing and JGoodies
LinusDietz 90a64e1
Merge branch 'master' of https://github.com/JabRef/jabref into swing-…
LinusDietz 176a4b9
remove iconset and obsolete key methods
Siedlerchr 3418ca6
remove some more keybindings
Siedlerchr a9fcb84
Remove FileListTableModel and associated class, improve opening file …
Siedlerchr 5551b60
remove showMessage
Siedlerchr 0f42801
remove swing from file type
Siedlerchr 807e9d0
remove whitespace
Siedlerchr d214b7f
fix loading of external file type edit dialog
Siedlerchr 69ec0a3
Merge remote-tracking branch 'upstream/master' into swing-test
Siedlerchr 63199fc
remove glazedlists, this time remove all dependencies
Siedlerchr 91e6572
Merge remote-tracking branch 'upstream/master' into swing-test
Siedlerchr 672ca79
remove emacs keybinding
Siedlerchr 47cac3e
remove emacs keybinding rest
Siedlerchr 2104788
Improve tests to exclude the UndoManager
LinusDietz 76b27a3
Deleted unused FieldSetComponent
LinusDietz 17d33c0
Merge branch 'master' into swing-test
LinusDietz f9997ed
Check for awt usages
tobiasdiez 0937d01
Merge remote-tracking branch 'upstream/master' into swing-test
Siedlerchr 70a5c67
Remove awt font and color methods
Siedlerchr c36af5e
enable backwards compatiblitiy with font size
Siedlerchr e89333c
Merge remote-tracking branch 'upstream/master' into swing-test
Siedlerchr 4985ca1
Fix remaining swing issues
Siedlerchr 9784798
fix l10n
Siedlerchr fa25c93
Merge branch 'master' into swing-test
LinusDietz 3e1270d
fix mods tests
LinusDietz a78f1be
Merge pull request #5189 from JabRef/fix-swing-test
LinusDietz 18ccbb4
Merge remote-tracking branch 'upstream/master' into swing-test
Siedlerchr File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
139 changes: 0 additions & 139 deletions
139
src/main/java/org/jabref/gui/customentrytypes/EntryTypeList.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess with this we will run into backwards compatibility issues similar to the ones we had with a different preference option.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, yeah will look if it makes sense to either convert to int or store in new settings
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Naive question: can't be stick to Int and just convert to Double during setting the stuff? I would assume that 14.5pt is currently not used --> future work ^^
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed it already to int again. Globals.prefs.putInt(JabRefPreferences.FONT_SIZE, size);
So it's fine