Skip to content

Commit

Permalink
Change default preferences: Remote server is started
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Nov 21, 2015
1 parent ddc721e commit ecd8c25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ to [sourceforge feature requests](https://sourceforge.net/p/jabref/features/) by
- Feature: New LabelPattern `[keywordsN]`, where N is optional. Returns the first N keywords. If no N is specified ("`[keywords]`"), all keywords are returned. Spaces are removed.
- Update supported LookAndFeels
- Show replaced journal abbreviations on console
- Default preferences: Remote server (port 6050) always started on first JabRef instance. This prevents JabRef loaded twice when opening a bib file.

### Fixed
- Fixed the bug that the file encoding was not correctly determined from the first (or second) line
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/sf/jabref/JabRefPreferences.java
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ private JabRefPreferences() {
defaults.put(WRITEFIELD_USERDEFINEDORDER, "author;title;journal;year;volume;number;pages;month;note;volume;pages;part;eid");
defaults.put(WRITEFIELD_WRAPFIELD, Boolean.FALSE);

defaults.put(RemotePreferences.USE_REMOTE_SERVER, Boolean.FALSE);
defaults.put(RemotePreferences.USE_REMOTE_SERVER, Boolean.TRUE);
defaults.put(RemotePreferences.REMOTE_SERVER_PORT, 6050);

defaults.put(PERSONAL_JOURNAL_LIST, null);
Expand Down

0 comments on commit ecd8c25

Please sign in to comment.