Skip to content

Commit 84a2d78

Browse files
committed
Merge remote-tracking branch 'upstream/main' into jdk17
* upstream/main: (24 commits) Support CrossRef in CSL styles (#8454) Update FUNDING.yml (#8473) Update to Javafx 17.02 (#8470) Made search button in Web search wider. Also skewed side panel titles to the left (#8463) Bump h2-mvstore from 2.0.206 to 2.1.210 in /buildSrc (#8458) Bump mariadb-java-client from 2.7.4 to 2.7.5 (#8457) Bump com.github.andygoossens.modernizer from 1.6.1 to 1.6.2 (#8459) Bump mockito-core from 4.2.0 to 4.3.0 (#8460) Bump xmlunit-matchers from 2.8.3 to 2.8.4 (#8461) Improve error handling for browser extension (#8432) New Crowdin updates (#8451) Fix library tab exception when saving prefs (#8450) Rename Groups interface into Groups (#8449) New Crowdin updates (#8445) update snap url Update bug_report.yml for 5.5 Show development information\n\n+semver: minor Release v5.5 Update journal abbrev list New Crowdin updates (#8439) ...
2 parents b3c1119 + b16160e commit 84a2d78

File tree

71 files changed

+2431
-884
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+2431
-884
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# These are supported funding model platforms
22

3-
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
3+
github: JabRef
44
patreon: # Patreon user account
55
open_collective: # Replace with a single Open Collective username
66
ko_fi: # Replace with a single Ko-fi username

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ body:
1212
attributes:
1313
label: JabRef version
1414
options:
15-
- "5.4 (latest release)"
15+
- "5.5 (latest release)"
1616
- "3.8.2"
1717
- Latest development branch build (please note build date below)
1818
- Other (please describe below)

CHANGELOG.md

Lines changed: 30 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,35 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve
1313

1414
### Changed
1515

16+
- The CSL preview styles now also support displaying data from cross references entries that are linked via the `crossref` field [#7378](https://github.com/JabRef/jabref/issues/7378)
17+
- We made the Search button in Web Search wider. We also skewed the panel titles to the left [#8397](https://github.com/JabRef/jabref/issues/8397)
18+
19+
### Fixed
20+
21+
- We fixed an issue where an exception could occur when saving the preferences [#7614](https://github.com/JabRef/jabref/issues/7614)
22+
23+
### Removed
24+
25+
- We removed the option to copy CSL Citation styles data as `XSL_FO`, `ASCIIDOC`, and `RTF` as these haven not been working since a long time and are no longe rsupported in the external library used for processing the styles [#7378](https://github.com/JabRef/jabref/issues/7378)
26+
27+
28+
29+
30+
31+
32+
33+
34+
35+
36+
37+
38+
39+
## [5.5] - 2022-01-17
40+
41+
### Changed
42+
1643
- We integrated the external file types dialog directly inside the preferences. [#8341](https://github.com/JabRef/jabref/pull/8341)
44+
- We disabled the add group button color change after adding 10 new groups. [#8051](https://github.com/JabRef/jabref/issues/8051)
1745
- We inverted the logic for resolving [BibTeX strings](https://docs.jabref.org/advanced/strings). This helps to keep `#` chars. By default String resolving is only activated for a couple of standard fields. The list of fields can be modified in the preferences. [#7010](https://github.com/JabRef/jabref/issues/7010), [#7102](https://github.com/JabRef/jabref/issues/7012), [#8303](https://github.com/JabRef/jabref/issues/8303)
1846
- We moved the search box in preview preferences closer to the available citation styles list. [#8370](https://github.com/JabRef/jabref/pull/8370)
1947
- Changing the preference to show the preview panel as a separate tab now has effect without restarting JabRef. [#8370](https://github.com/JabRef/jabref/pull/8370)
@@ -32,20 +60,6 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve
3260
- We fixed a typo in the library properties tab: "String constants". There, one can configure [BibTeX string constants](https://docs.jabref.org/advanced/strings).
3361
- We fixed an issue when writing a non-UTF-8 encoded file: The header is written again. [#8417](https://github.com/JabRef/jabref/issues/8417)
3462

35-
### Removed
36-
37-
38-
39-
40-
41-
42-
43-
44-
45-
46-
47-
48-
4963
## [5.4] - 2021-12-20
5064

5165
### Added
@@ -731,7 +745,8 @@ The changelog of JabRef 4.x is available at the [v4.3.1 tag](https://github.com/
731745
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).
732746
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).
733747

734-
[Unreleased]: https://github.com/JabRef/jabref/compare/v5.4...HEAD
748+
[Unreleased]: https://github.com/JabRef/jabref/compare/v5.5...HEAD
749+
[5.5]: https://github.com/JabRef/jabref/compare/v5.4...v5.5
735750
[5.4]: https://github.com/JabRef/jabref/compare/v5.3...v5.4
736751
[5.3]: https://github.com/JabRef/jabref/compare/v5.2...v5.3
737752
[5.2]: https://github.com/JabRef/jabref/compare/v5.1...v5.2

build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import org.jabref.build.xjc.XjcTask
1010
plugins {
1111
id 'application'
1212

13-
id 'com.github.andygoossens.modernizer' version '1.6.1'
13+
id 'com.github.andygoossens.modernizer' version '1.6.2'
1414

1515
id 'me.champeau.gradle.jmh' version '0.5.3'
1616

@@ -106,7 +106,7 @@ configurations {
106106
}
107107

108108
javafx {
109-
version = "17.0.1"
109+
version = "17.0.2"
110110
modules = [ 'javafx.controls', 'javafx.fxml', 'javafx.web', 'javafx.swing' ]
111111
}
112112

@@ -119,7 +119,7 @@ dependencies {
119119
implementation 'org.apache.pdfbox:xmpbox:2.0.25'
120120

121121
implementation group: 'org.apache.commons', name: 'commons-csv', version: '1.9.0'
122-
implementation 'com.h2database:h2-mvstore:2.0.206'
122+
implementation 'com.h2database:h2-mvstore:2.1.210'
123123

124124
implementation group: 'org.apache.tika', name: 'tika-core', version: '2.2.1'
125125

@@ -145,7 +145,7 @@ dependencies {
145145
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.13.1'
146146
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: '2.13.1'
147147

148-
implementation group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '2.7.4'
148+
implementation group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '2.7.5'
149149

150150
implementation 'org.postgresql:postgresql:42.3.1'
151151

@@ -176,7 +176,7 @@ dependencies {
176176
implementation 'org.jsoup:jsoup:1.14.3'
177177
implementation 'com.konghq:unirest-java:3.13.6'
178178

179-
implementation 'org.slf4j:slf4j-api:2.0.0-alpha5'
179+
implementation 'org.slf4j:slf4j-api:2.0.0-alpha6'
180180
implementation "org.tinylog:tinylog-api:2.4.1"
181181
implementation "org.tinylog:slf4j-tinylog:2.4.1"
182182
implementation "org.tinylog:tinylog-impl:2.4.1"
@@ -208,9 +208,9 @@ dependencies {
208208

209209
testRuntimeOnly group: 'org.apache.logging.log4j', name: 'log4j-core', version: '3.0.0-SNAPSHOT'
210210
testRuntimeOnly group: 'org.apache.logging.log4j', name: 'log4j-jul', version: '3.0.0-SNAPSHOT'
211-
testImplementation 'org.mockito:mockito-core:4.2.0'
211+
testImplementation 'org.mockito:mockito-core:4.3.0'
212212
testImplementation 'org.xmlunit:xmlunit-core:2.8.4'
213-
testImplementation 'org.xmlunit:xmlunit-matchers:2.8.3'
213+
testImplementation 'org.xmlunit:xmlunit-matchers:2.8.4'
214214
testRuntimeOnly 'com.tngtech.archunit:archunit-junit5-engine:0.22.0'
215215
testImplementation 'com.tngtech.archunit:archunit-junit5-api:0.22.0'
216216
testImplementation "org.testfx:testfx-core:4.0.17-alpha-SNAPSHOT"

buildSrc/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ repositories {
66
}
77

88
dependencies {
9-
implementation 'com.h2database:h2-mvstore:2.0.206'
9+
implementation 'com.h2database:h2-mvstore:2.1.210'
1010
implementation 'org.apache.commons:commons-csv:1.9.0'
11-
implementation 'org.slf4j:slf4j-api:2.0.0-alpha5'
11+
implementation 'org.slf4j:slf4j-api:2.0.0-alpha6'
1212
}
1313

1414
sourceSets{

buildres/csl/csl-styles/chicago-annotated-bibliography.csl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185
<text macro="editor"/>
186186
<text macro="translator"/>
187187
<choose>
188-
<if type="webpage post-weblog" match="any">
188+
<if type="article-magazine article-newspaper webpage post-weblog" match="any">
189189
<text variable="container-title"/>
190190
</if>
191191
</choose>

buildres/csl/csl-styles/chicago-fullnote-bibliography-16th-edition.csl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,11 @@
181181
<substitute>
182182
<text macro="editor"/>
183183
<text macro="translator"/>
184+
<choose>
185+
<if type="article-magazine article-newspaper webpage post-weblog" match="any">
186+
<text variable="container-title"/>
187+
</if>
188+
</choose>
184189
</substitute>
185190
</names>
186191
<text macro="recipient"/>

buildres/csl/csl-styles/chicago-fullnote-bibliography-short-title-subsequent.csl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<category citation-format="note"/>
3636
<category field="generic-base"/>
3737
<summary>Chicago format with full notes and bibliography</summary>
38-
<updated>2020-01-12T12:00:00+00:00</updated>
38+
<updated>2017-10-12T12:00:00+00:00</updated>
3939
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
4040
</info>
4141
<locale xml:lang="en">
@@ -186,7 +186,7 @@
186186
<text macro="editor"/>
187187
<text macro="translator"/>
188188
<choose>
189-
<if type="webpage post-weblog" match="any">
189+
<if type="article-magazine article-newspaper webpage post-weblog" match="any">
190190
<text variable="container-title"/>
191191
</if>
192192
</choose>

buildres/csl/csl-styles/chicago-fullnote-bibliography-with-ibid.csl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185
<text macro="editor"/>
186186
<text macro="translator"/>
187187
<choose>
188-
<if type="webpage post-weblog" match="any">
188+
<if type="article-magazine article-newspaper webpage post-weblog" match="any">
189189
<text variable="container-title"/>
190190
</if>
191191
</choose>

buildres/csl/csl-styles/chicago-fullnote-bibliography.csl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185
<text macro="editor"/>
186186
<text macro="translator"/>
187187
<choose>
188-
<if type="webpage post-weblog" match="any">
188+
<if type="article-magazine article-newspaper webpage post-weblog" match="any">
189189
<text variable="container-title"/>
190190
</if>
191191
</choose>

0 commit comments

Comments
 (0)