Skip to content
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

Removes legacy options to sync files in the "pdf" or "ps" field #251

Merged
merged 2 commits into from
Oct 23, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[master]
- Fixes bug when having added and then removed a personal journal list, an exception is always shown on startup
- Removes legacy options to sync files in the "pdf" or "ps" field
- Removes button to merge entries and keep the old ones.
- Removes non-compact rank symbols in favor of compact rank
- All duplicate whitespaces / tabs / newlines are now removed from non-multiline fields
Expand Down

This file was deleted.

2 changes: 0 additions & 2 deletions src/main/java/net/sf/jabref/gui/BasePanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -1352,8 +1352,6 @@ public void action() {
actions.put(Actions.ABBREVIATE_ISO, new AbbreviateAction(this, true));
actions.put(Actions.ABBREVIATE_MEDLINE, new AbbreviateAction(this, false));
actions.put(Actions.UNABBREVIATE, new UnabbreviateAction(this));
actions.put(Actions.AUTO_SET_PDF, new AutoSetExternalFileForEntries(this, "pdf"));
actions.put(Actions.AUTO_SET_PS, new AutoSetExternalFileForEntries(this, "ps"));
actions.put(Actions.AUTO_SET_FILE, new SynchronizeFileField(this));

actions.put(Actions.BACK, (BaseAction) BasePanel.this::back);
Expand Down
10 changes: 1 addition & 9 deletions src/main/java/net/sf/jabref/gui/JabRefFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -364,12 +364,6 @@ public void actionPerformed(ActionEvent e) {
private final AbstractAction customFileTypesAction = ExternalFileTypeEditor.getAction(this);
AbstractAction exportToClipboard = new GeneralAction("exportToClipboard",
Localization.menuTitle("Export selected entries to clipboard"));
private final AbstractAction autoSetPdf = new GeneralAction(Actions.AUTO_SET_PDF,
Localization.menuTitle("Synchronize PDF links"),
prefs.getKey(KeyBinds.SYNCHRONIZE_PDF));
private final AbstractAction autoSetPs = new GeneralAction(Actions.AUTO_SET_PS,
Localization.menuTitle("Synchronize PS links"),
prefs.getKey(KeyBinds.SYNCHRONIZE_PS));
private final AbstractAction autoSetFile = new GeneralAction(Actions.AUTO_SET_FILE,
Localization.lang("Synchronize file links"),
Globals.prefs.getKey(KeyBinds.SYNCHRONIZE_FILES));
Expand Down Expand Up @@ -1320,8 +1314,6 @@ private void fillMenu() {
tools.add(abbreviateMedline);
tools.add(unabbreviate);
tools.addSeparator();
checkAndFix.add(autoSetPdf);
checkAndFix.add(autoSetPs);
checkAndFix.add(integrityCheckAction);
tools.add(checkAndFix);

Expand Down Expand Up @@ -1535,7 +1527,7 @@ private void initActions() {
* openInspire */
openPdf, openUrl, openFolder, openFile, openSpires, /*openInspire,*/togglePreview, dupliCheck, /*strictDupliCheck,*/highlightAll,
highlightAny, newEntryAction, plainTextImport, massSetField, manageKeywords,
closeDatabaseAction, switchPreview, integrityCheckAction, autoSetPdf, autoSetPs,
closeDatabaseAction, switchPreview, integrityCheckAction,
toggleHighlightAny, toggleHighlightAll, databaseProperties, abbreviateIso,
abbreviateMedline, unabbreviate, exportAll, exportSelected,
importCurrent, saveAll, dbConnect, dbExport, focusTable));
Expand Down
Loading