Skip to content

Commit 0c342bd

Browse files
authored
Prepare 5.0 beta (#5227)
* chore: release 5.0-alpha 🎉
1 parent b5002e0 commit 0c342bd

File tree

4 files changed

+5
-52
lines changed

4 files changed

+5
-52
lines changed

CHANGELOG.md

Lines changed: 4 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Here, the categories "Changed" for added and changed functionality,
88

99
We refer to [GitHub issues](https://github.com/JabRef/jabref/issues) by using `#NUM`.
1010

11-
## [Unreleased]
11+
## [5.0-alpha] 2019-08-25
1212

1313
### Changed
1414
- All fields are now properly sorted alphabetically (in the subgroups of required/optional fields) when the entry is written to the bib file.
@@ -27,7 +27,7 @@ We refer to [GitHub issues](https://github.com/JabRef/jabref/issues) by using `#
2727
- Use integrated graphics card instead of discrete on macOS [#4070](https://github.com/JabRef/jabref/issues/4070)
2828
- We added a cleanup operation that detects an arXiv identifier in the note, journal or url field and moves it to the `eprint` field.
2929
Because of this change, the last-used cleanup operations were reset.
30-
- We changed the minimum required version of Java to 1.8.0_171, as this is the latest release for which the automatic Java update works. [4093](https://github.com/JabRef/jabref/issues/4093)
30+
- We changed the minimum required version of Java to 1.8.0_171, as this is the latest release for which the automatic Java update works. [#4093](https://github.com/JabRef/jabref/issues/4093)
3131
- The special fields like `Printed` and `Read status` now show gray icons when the row is hovered.
3232
- We added a button in the tab header which allows you to close the database with one click. https://github.com/JabRef/jabref/issues/494
3333
- Sorting in the main table now takes information from cross-referenced entries into account. https://github.com/JabRef/jabref/issues/2808
@@ -136,7 +136,6 @@ We refer to [GitHub issues](https://github.com/JabRef/jabref/issues) by using `#
136136
- We fixed an issue where the JabRef Icon in the macOS launchpad was not displayed correctly [#5003](https://github.com/JabRef/jabref/issues/5003)
137137
- We fixed an issue where the "Search for unlinked local files" would throw an exception when parsing the content of a PDF-file with missing "series" information [#5128](https://github.com/JabRef/jabref/issues/5128)
138138

139-
140139
### Removed
141140
- The feature to "mark entries" was removed and merged with the groups functionality. For migration, a group is created for every value of the `__markedentry` field and the entry is added to this group.
142141
- The number column was removed.
@@ -152,48 +151,11 @@ We refer to [GitHub issues](https://github.com/JabRef/jabref/issues) by using `#
152151
- Add/move/remove from group: removed completely (functionality still available through group interface)
153152
- We removed the option to change the column widths in the preferences dialog. [#4546](https://github.com/JabRef/jabref/issues/4546)
154153

155-
156-
157-
158-
159-
160-
161-
162-
163-
164-
165-
166-
167-
168-
169-
170-
171-
172-
173-
174-
175-
176-
177-
178-
179-
180-
181-
182-
183154
## Older versions
184155

185156
The changelog of JabRef 4.x is available at the [v4.x branch](https://github.com/JabRef/jabref/blob/v4.x/CHANGELOG.md).
186157
The changelog of JabRef 3.x is available at the [v3.8.2 tag](https://github.com/JabRef/jabref/blob/v3.8.2/CHANGELOG.md).
187158
The changelog of JabRef 2.11 and all previous versions is available as [text file in the v2.11.1 tag](https://github.com/JabRef/jabref/blob/v2.11.1/CHANGELOG).
188159

189-
[Unreleased]: https://github.com/JabRef/jabref/compare/v4.3...HEAD
190-
[4.3]: https://github.com/JabRef/jabref/compare/v4.2...v4.3
191-
[4.2]: https://github.com/JabRef/jabref/compare/v4.1...v4.2
192-
[4.1]: https://github.com/JabRef/jabref/compare/v4.0...v4.1
193-
[4.0]: https://github.com/JabRef/jabref/compare/v4.0-beta3...v4.0
194-
[4.0-beta3]: https://github.com/JabRef/jabref/compare/v4.0-beta2...v4.0-beta3
195-
[4.0-beta2]: https://github.com/JabRef/jabref/compare/v4.0-beta...v4.0-beta2
196-
[4.0-beta]: https://github.com/JabRef/jabref/compare/v3.8.2...v4.0-beta
197-
[2.11.1]: https://github.com/JabRef/jabref/compare/v2.11...v2.11.1
198-
[JavaFX]: https://en.wikipedia.org/wiki/JavaFX
199-
160+
[Unreleased]: https://github.com/JabRef/jabref/compare/v5.0-beta...HEAD
161+
[5.0-alpha]: https://github.com/JabRef/jabref/compare/v4.3...v5.0-beta

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ apply plugin: org.jabref.build.localization.LocalizationPlugin
4343
apply from: 'eclipse.gradle'
4444

4545
group = "org.jabref"
46-
version = "5.0-dev"
46+
version = "5.0-alpha"
4747
project.ext.threeDotVersion = "5.0.0.0"
4848
project.ext.install4jDir = hasProperty("install4jDir") ? getProperty("install4jDir") : (OperatingSystem.current().isWindows() ? 'C:/Program Files/install4j7' : 'install4j7')
4949
sourceCompatibility = 1.8

src/main/java/org/jabref/gui/maintable/MainTablePreferences.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ public ColumnPreferences getColumnPreferences() {
1414
}
1515

1616
public boolean resizeColumnsToFit() {
17-
1817
return resizeColumnsToFit;
1918
}
2019
}

src/main/java/org/jabref/gui/preferences/TablePrefsTab.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,6 @@ class TablePrefsTab extends Pane implements PreferencesTab {
3838
*/
3939
public TablePrefsTab(JabRefPreferences prefs) {
4040
this.prefs = prefs;
41-
/**
42-
* Added Bibtexkey to combobox.
43-
*
44-
* [ 1540646 ] default sort order: bibtexkey
45-
*
46-
* http://sourceforge.net/tracker/index.php?func=detail&aid=1540646&group_id=92314&atid=600306
47-
*/
48-
4941
autoResizeMode = new CheckBox(Localization.lang("Fit table horizontally on screen"));
5042
namesAsIs = new RadioButton(Localization.lang("Show names unchanged"));
5143
namesFf = new RadioButton(Localization.lang("Show 'Firstname Lastname'"));

0 commit comments

Comments
 (0)