diff --git a/.github/workflows/cleanup_pr.yml b/.github/workflows/cleanup_pr.yml index 63090aba74a..20747030207 100644 --- a/.github/workflows/cleanup_pr.yml +++ b/.github/workflows/cleanup_pr.yml @@ -27,7 +27,7 @@ jobs: echo "##[set-output name=branch;]$(echo ${{ github.event.pull_request.head.ref }})" - name: Delete folder on builds.jabref.org if: ${{ steps.checksecrets.outputs.secretspresent }} - uses: appleboy/ssh-action@v0.1.4 + uses: appleboy/ssh-action@v0.1.5 with: script: rm -rf /var/www/builds.jabref.org/www/${{ steps.extract_branch.outputs.branch }} || true host: build-upload.jabref.org diff --git a/CHANGELOG.md b/CHANGELOG.md index 36ef36dedad..aa8854dcfe4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,8 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve - We added an extra option in the 'Find Unlinked Files' dialog view to ignore unnecessary files like Thumbs.db, DS_Store, etc. [koppor#373](https://github.com/koppor/jabref/issues/373) - JabRef now writes log files. Linux: `$home/.cache/jabref/logs/version`, Windows: `%APPDATA%\..\Local\harawata\jabref\version\logs`, Mac: `Users/.../Library/Logs/jabref/version` - We added an importer for Citavi backup files, support ".ctv5bak" and ".ctv6bak" file formats. [#8322](https://github.com/JabRef/jabref/issues/8322) +- We added a feature to drag selected entries and drop them to other opened inactive library tabs [koppor521](https://github.com/koppor/jabref/issues/521). +- We added support for the [biblatex-apa](https://github.com/plk/biblatex-apa) legal entry types `Legislation`, `Legadminmaterial`, `Jurisdiction`, `Constitution` and `Legal` [#8931](https://github.com/JabRef/jabref/issues/8931) ### Changed @@ -35,7 +37,9 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve - When configured SSL certificates changed, JabRef warns the user to restart to apply the configuration. - We improved the appearances and logic of the "Manage field names & content" dialog, and renamed it to "Automatic field editor". [#6536](https://github.com/JabRef/jabref/issues/6536) - We improved the message explaining the options when modifying an automatic keyword group [#8911](https://github.com/JabRef/jabref/issues/8911) -- We moved the preferences option "Warn about duplicates on import" option from the tab "File" to the tab "Import and Export". [kopper#570](https://github.com/koppor/jabref/issues/570) +- We moved the preferences option "Warn about duplicates on import" option from the tab "File" to the tab "Import and Export". [koppor#570](https://github.com/koppor/jabref/issues/570) +- When JabRef encounters `% Encoding: UTF-8` header, it is kept during writing (and not removed). [#8964](https://github.com/JabRef/jabref/pull/8964) +- We replace characters which cannot be decoded using the specified encoding by a (probably another) valid character. This happens if JabRef detects the wrong charset (e.g., UTF-8 instead of Windows 1252). One can use the [Integrity Check](https://docs.jabref.org/finding-sorting-and-cleaning-entries/checkintegrity) to find those characters. ### Fixed @@ -54,6 +58,11 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve - We fixed an issue where removing several groups deletes only one of them. [#8390](https://github.com/JabRef/jabref/issues/8390) - We fixed an issue where the Sidepane (groups, web search and open office) width is not remembered after restarting JabRef. [#8907](https://github.com/JabRef/jabref/issues/8907) - We fixed a bug where switching between themes will cause an error/exception. [#8939](https://github.com/JabRef/jabref/pull/8939) +- We fixed a bug where files that were deleted in the source bibtex file were kept in the index. [#8962](https://github.com/JabRef/jabref/pull/8962) +- We fixed "Error while sending to JabRef" when the browser extension interacts with JabRef. [JabRef-Browser-Extension#479](https://github.com/JabRef/JabRef-Browser-Extension/issues/479) +- We fixed a bug where updating group view mode (intersection or union) requires re-selecting groups to take effect. [#6998](https://github.com/JabRef/jabref/issues/6998) +- We fixed a bug that prevented external group metadata changes from being merged. [#8873](https://github.com/JabRef/jabref/issues/8873) +- We fixed the shared database opening dialog to remember autosave folder and tick. [#7516](https://github.com/JabRef/jabref/issues/7516) ### Removed diff --git a/build.gradle b/build.gradle index 0cd6ae0c26d..0fc50f10ed7 100644 --- a/build.gradle +++ b/build.gradle @@ -85,7 +85,6 @@ repositories { } configurations { - antlr3 antlr4 // TODO: Remove the following workaround for split error messages such as // error: module java.xml.bind reads package javax.annotation from both jsr305 and java.annotation @@ -100,7 +99,7 @@ dependencyLocking { } javafx { - version = "18" + version = "18.0.1" modules = [ 'javafx.controls', 'javafx.fxml', 'javafx.web', 'javafx.swing' ] } @@ -116,33 +115,29 @@ dependencies { implementation 'org.apache.pdfbox:fontbox:3.0.0-RC1' implementation 'org.apache.pdfbox:xmpbox:3.0.0-RC1' - implementation 'org.apache.lucene:lucene-core:9.2.0' - implementation 'org.apache.lucene:lucene-queryparser:9.2.0' - implementation 'org.apache.lucene:lucene-queries:9.2.0' - implementation 'org.apache.lucene:lucene-analysis-common:9.2.0' - implementation 'org.apache.lucene:lucene-highlighter:9.2.0' + implementation 'org.apache.lucene:lucene-core:9.3.0' + implementation 'org.apache.lucene:lucene-queryparser:9.3.0' + implementation 'org.apache.lucene:lucene-queries:9.3.0' + implementation 'org.apache.lucene:lucene-analysis-common:9.3.0' + implementation 'org.apache.lucene:lucene-highlighter:9.3.0' implementation group: 'org.apache.commons', name: 'commons-csv', version: '1.9.0' implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0' implementation 'com.h2database:h2-mvstore:2.1.214' implementation group: 'org.apache.tika', name: 'tika-core', version: '2.4.1' - implementation 'com.ibm.icu:icu4j-charset:71.1' // required for reading write-protected PDFs - see https://github.com/JabRef/jabref/pull/942#issuecomment-209252635 implementation 'org.bouncycastle:bcprov-jdk18on:1.71' implementation 'commons-cli:commons-cli:1.5.0' - implementation 'org.libreoffice:libreoffice:7.3.4' - implementation 'org.libreoffice:unoloader:7.3.4' + implementation 'org.libreoffice:libreoffice:7.3.5' + implementation 'org.libreoffice:unoloader:7.3.5' - implementation 'io.github.java-diff-utils:java-diff-utils:4.11' + implementation 'io.github.java-diff-utils:java-diff-utils:4.12' implementation 'info.debatty:java-string-similarity:2.0.0' - antlr3 'org.antlr:antlr:3.5.3' - implementation 'org.antlr:antlr-runtime:3.5.3' - antlr4 'org.antlr:antlr4:4.9.3' implementation 'org.antlr:antlr4-runtime:4.9.3' @@ -208,9 +203,9 @@ dependencies { implementation group: 'net.harawata', name: 'appdirs', version: '1.2.1' - testImplementation 'io.github.classgraph:classgraph:4.8.147' - testImplementation 'org.junit.jupiter:junit-jupiter:5.8.2' - testImplementation 'org.junit.platform:junit-platform-launcher:1.8.2' + testImplementation 'io.github.classgraph:classgraph:4.8.149' + testImplementation 'org.junit.jupiter:junit-jupiter:5.9.0' + testImplementation 'org.junit.platform:junit-platform-launcher:1.9.0' testImplementation 'org.mockito:mockito-core:4.6.1' testImplementation 'org.xmlunit:xmlunit-core:2.9.0' @@ -221,7 +216,7 @@ dependencies { testImplementation "org.testfx:testfx-junit5:4.0.16-alpha" testImplementation "org.hamcrest:hamcrest-library:2.2" - checkstyle 'com.puppycrawl.tools:checkstyle:10.3.1' + checkstyle 'com.puppycrawl.tools:checkstyle:10.3.2' // xjc needs the runtime as well for the ant task, otherwise it fails xjc group: 'org.glassfish.jaxb', name: 'jaxb-xjc', version: '3.0.2' xjc group: 'org.glassfish.jaxb', name: 'jaxb-runtime', version: '3.0.2' @@ -274,14 +269,14 @@ task generateSource(dependsOn: ["generateBstGrammarSource", } tasks.register("generateBstGrammarSource", JavaExec) { - main = "org.antlr.Tool" - classpath = configurations.antlr3 + main = "org.antlr.v4.Tool" + classpath = configurations.antlr4 group = "JabRef" - description = 'Generates BstLexer.java and BstParser.java from the Bst.g grammar file using antlr3.' + description = 'Generates BstLexer.java and BstParser.java from the Bst.g grammar file using antlr4.' - inputs.dir('src/main/antlr3/org/jabref/bst/') + inputs.dir('src/main/antlr4/org/jabref/bst/') outputs.dir("src-gen/main/java/org/jabref/logic/bst/") - args = ["-o", "src-gen/main/java/org/jabref/logic/bst/" , "$projectDir/src/main/antlr3/org/jabref/bst/Bst.g" ] + args = ["-o", "src-gen/main/java/org/jabref/logic/bst/", "-visitor", "-no-listener", "-package", "org.jabref.logic.bst", "$projectDir/src/main/antlr4/org/jabref/bst/Bst.g4"] } tasks.register("generateSearchGrammarSource", JavaExec) { diff --git a/buildres/csl/csl-locales/.github/workflows/merge.yaml b/buildres/csl/csl-locales/.github/workflows/merge.yaml index 0a0d9db955e..7e5736cc960 100644 --- a/buildres/csl/csl-locales/.github/workflows/merge.yaml +++ b/buildres/csl/csl-locales/.github/workflows/merge.yaml @@ -48,6 +48,10 @@ jobs: - deleted: [ '*.csl', 'dependent/*.csl', '*.xml' ] workflows: - added|modified: .github/workflows/*.yaml + updated_composer: + - added|modified: composer.json + deleted_composer: + - deleted: composer.json - name: Changed files if: github.event_name == 'push' @@ -87,11 +91,24 @@ jobs: run: cd release && git rm ${{ steps.update.outputs.deleted_files }} if: github.event_name == 'push' && steps.update.outputs.deleted == 'true' + - name: Update composer.json + if: steps.update.outputs.updated_composer == 'true' + run: | + cp composer.json release/composer.json + cd release + git add composer.json + + - name: Delete composer.json + if: steps.update.outputs.deleted_composer == 'true' + run: | + cd release + git rm composer.json + - uses: stefanzweifel/git-auto-commit-action@v4 with: repository: 'release' - commit_message: Releasing ${{ steps.update.outputs.updated_files }} ${{ steps.update.outputs.deleted_files }} - if: github.event_name == 'push' && (steps.update.outputs.updated == 'true' || steps.update.outputs.deleted == 'true') + commit_message: Releasing ${{ steps.update.outputs.updated_files }} ${{ steps.update.outputs.deleted_files }} ${{ steps.update.outputs.updated_composer_files }} ${{ steps.update.outputs.deleted_composer_files }} + if: github.event_name == 'push' && (steps.update.outputs.updated == 'true' || steps.update.outputs.deleted == 'true' || steps.update.outputs.updated_composer == 'true' || steps.update.outputs.deleted_composer == 'true') - uses: stefanzweifel/git-auto-commit-action@v4 with: @@ -116,3 +133,21 @@ jobs: git-user: "csl-bot" git-user-email: github@citationstyles.org git-commit-message: copied ${{ steps.update.outputs.workflows_files }} from styles + + - name: Bump version and push tag + id: tag_version + uses: mathieudutour/github-tag-action@v5.6 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + default_bump: patch + if: github.event_name == 'push' && hashFiles('composer.json') != '' && (steps.update.outputs.updated == 'true' || steps.update.outputs.deleted == 'true') + + - name: Create a GitHub release + uses: softprops/action-gh-release@v0.1.14 + env: + github_token: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ steps.tag_version.outputs.new_tag }} + name: Release ${{ steps.tag_version.outputs.new_tag }} + body: Released ${{ steps.update.outputs.updated_files }} ${{ steps.update.outputs.deleted_files }} ${{ steps.update.outputs.updated_composer_files }} ${{ steps.update.outputs.deleted_composer_files }} + if: github.event_name == 'push' && hashFiles('composer.json') != '' && (steps.update.outputs.updated == 'true' || steps.update.outputs.deleted == 'true') diff --git a/buildres/csl/csl-styles/.github/workflows/merge.yaml b/buildres/csl/csl-styles/.github/workflows/merge.yaml index 0a0d9db955e..7e5736cc960 100644 --- a/buildres/csl/csl-styles/.github/workflows/merge.yaml +++ b/buildres/csl/csl-styles/.github/workflows/merge.yaml @@ -48,6 +48,10 @@ jobs: - deleted: [ '*.csl', 'dependent/*.csl', '*.xml' ] workflows: - added|modified: .github/workflows/*.yaml + updated_composer: + - added|modified: composer.json + deleted_composer: + - deleted: composer.json - name: Changed files if: github.event_name == 'push' @@ -87,11 +91,24 @@ jobs: run: cd release && git rm ${{ steps.update.outputs.deleted_files }} if: github.event_name == 'push' && steps.update.outputs.deleted == 'true' + - name: Update composer.json + if: steps.update.outputs.updated_composer == 'true' + run: | + cp composer.json release/composer.json + cd release + git add composer.json + + - name: Delete composer.json + if: steps.update.outputs.deleted_composer == 'true' + run: | + cd release + git rm composer.json + - uses: stefanzweifel/git-auto-commit-action@v4 with: repository: 'release' - commit_message: Releasing ${{ steps.update.outputs.updated_files }} ${{ steps.update.outputs.deleted_files }} - if: github.event_name == 'push' && (steps.update.outputs.updated == 'true' || steps.update.outputs.deleted == 'true') + commit_message: Releasing ${{ steps.update.outputs.updated_files }} ${{ steps.update.outputs.deleted_files }} ${{ steps.update.outputs.updated_composer_files }} ${{ steps.update.outputs.deleted_composer_files }} + if: github.event_name == 'push' && (steps.update.outputs.updated == 'true' || steps.update.outputs.deleted == 'true' || steps.update.outputs.updated_composer == 'true' || steps.update.outputs.deleted_composer == 'true') - uses: stefanzweifel/git-auto-commit-action@v4 with: @@ -116,3 +133,21 @@ jobs: git-user: "csl-bot" git-user-email: github@citationstyles.org git-commit-message: copied ${{ steps.update.outputs.workflows_files }} from styles + + - name: Bump version and push tag + id: tag_version + uses: mathieudutour/github-tag-action@v5.6 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + default_bump: patch + if: github.event_name == 'push' && hashFiles('composer.json') != '' && (steps.update.outputs.updated == 'true' || steps.update.outputs.deleted == 'true') + + - name: Create a GitHub release + uses: softprops/action-gh-release@v0.1.14 + env: + github_token: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ steps.tag_version.outputs.new_tag }} + name: Release ${{ steps.tag_version.outputs.new_tag }} + body: Released ${{ steps.update.outputs.updated_files }} ${{ steps.update.outputs.deleted_files }} ${{ steps.update.outputs.updated_composer_files }} ${{ steps.update.outputs.deleted_composer_files }} + if: github.event_name == 'push' && hashFiles('composer.json') != '' && (steps.update.outputs.updated == 'true' || steps.update.outputs.deleted == 'true') diff --git a/buildres/csl/csl-styles/annals-of-allergy-asthma-and-immunology.csl b/buildres/csl/csl-styles/annals-of-allergy-asthma-and-immunology.csl new file mode 100644 index 00000000000..b612c5ff55f --- /dev/null +++ b/buildres/csl/csl-styles/annals-of-allergy-asthma-and-immunology.csl @@ -0,0 +1,267 @@ + + diff --git a/buildres/csl/csl-styles/apa-5th-edition.csl b/buildres/csl/csl-styles/apa-5th-edition.csl index a2784ca4b5b..87cc83196a3 100644 --- a/buildres/csl/csl-styles/apa-5th-edition.csl +++ b/buildres/csl/csl-styles/apa-5th-edition.csl @@ -183,7 +183,7 @@ - + @@ -196,23 +196,37 @@ - + - + - + + + + + + + + + + + + diff --git a/buildres/csl/csl-styles/apa-6th-edition-no-ampersand.csl b/buildres/csl/csl-styles/apa-6th-edition-no-ampersand.csl index b0f618ec31f..ff55b46b98d 100644 --- a/buildres/csl/csl-styles/apa-6th-edition-no-ampersand.csl +++ b/buildres/csl/csl-styles/apa-6th-edition-no-ampersand.csl @@ -897,32 +897,52 @@ - + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + @@ -1401,7 +1421,7 @@ - diff --git a/buildres/csl/csl-styles/apa-6th-edition.csl b/buildres/csl/csl-styles/apa-6th-edition.csl index 775857accbe..851a3096ab0 100644 --- a/buildres/csl/csl-styles/apa-6th-edition.csl +++ b/buildres/csl/csl-styles/apa-6th-edition.csl @@ -896,32 +896,52 @@ - + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + @@ -1400,7 +1420,7 @@ - diff --git a/buildres/csl/csl-styles/apa-annotated-bibliography.csl b/buildres/csl/csl-styles/apa-annotated-bibliography.csl index 014ae44f162..0636d93db58 100644 --- a/buildres/csl/csl-styles/apa-annotated-bibliography.csl +++ b/buildres/csl/csl-styles/apa-annotated-bibliography.csl @@ -320,8 +320,8 @@ @@ -389,7 +389,7 @@ - @@ -470,7 +470,7 @@ - @@ -529,7 +529,7 @@ - @@ -1294,7 +1294,7 @@ - @@ -1559,7 +1559,7 @@ - + @@ -1567,6 +1567,20 @@ + + + + + + + + + + + @@ -1574,7 +1588,7 @@ - diff --git a/buildres/csl/csl-styles/apa-cv.csl b/buildres/csl/csl-styles/apa-cv.csl index 5a766c3dc61..228ad3ee882 100644 --- a/buildres/csl/csl-styles/apa-cv.csl +++ b/buildres/csl/csl-styles/apa-cv.csl @@ -320,8 +320,8 @@ @@ -415,7 +415,7 @@ - @@ -1085,7 +1085,7 @@ - @@ -1301,12 +1301,12 @@ + both publisher-place and event-place. Remove this 'choose' when that is changed. --> - + @@ -1314,6 +1314,20 @@ + + + + + + + + + + + @@ -1321,7 +1335,7 @@ - diff --git a/buildres/csl/csl-styles/apa-fr-provost.csl b/buildres/csl/csl-styles/apa-fr-provost.csl index 4b068cf752d..9e7928dca71 100644 --- a/buildres/csl/csl-styles/apa-fr-provost.csl +++ b/buildres/csl/csl-styles/apa-fr-provost.csl @@ -245,7 +245,7 @@ - + @@ -298,17 +298,17 @@ - + - + - + @@ -317,6 +317,20 @@ + + + + + + + + + + + diff --git a/buildres/csl/csl-styles/apa-no-ampersand.csl b/buildres/csl/csl-styles/apa-no-ampersand.csl index 446103abb69..5759e34ec4a 100644 --- a/buildres/csl/csl-styles/apa-no-ampersand.csl +++ b/buildres/csl/csl-styles/apa-no-ampersand.csl @@ -320,8 +320,8 @@ @@ -389,7 +389,7 @@ - @@ -470,7 +470,7 @@ - @@ -529,7 +529,7 @@ - @@ -1294,7 +1294,7 @@ - @@ -1554,12 +1554,12 @@ + both publisher-place and event-place. Remove this 'choose' when that is changed. --> - + @@ -1567,6 +1567,20 @@ + + + + + + + + + + + @@ -1574,7 +1588,7 @@ - diff --git a/buildres/csl/csl-styles/apa-no-doi-no-issue.csl b/buildres/csl/csl-styles/apa-no-doi-no-issue.csl index 08306362d76..c72c8bdf126 100644 --- a/buildres/csl/csl-styles/apa-no-doi-no-issue.csl +++ b/buildres/csl/csl-styles/apa-no-doi-no-issue.csl @@ -903,32 +903,52 @@ - + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + @@ -1414,7 +1434,7 @@ - diff --git a/buildres/csl/csl-styles/apa-no-initials.csl b/buildres/csl/csl-styles/apa-no-initials.csl index b8bcab11e79..4695cd9b6fb 100644 --- a/buildres/csl/csl-styles/apa-no-initials.csl +++ b/buildres/csl/csl-styles/apa-no-initials.csl @@ -320,8 +320,8 @@ @@ -389,7 +389,7 @@ - @@ -470,7 +470,7 @@ - @@ -529,7 +529,7 @@ - @@ -1294,7 +1294,7 @@ - @@ -1559,7 +1559,7 @@ - + @@ -1567,6 +1567,20 @@ + + + + + + + + + + + @@ -1574,7 +1588,7 @@ - diff --git a/buildres/csl/csl-styles/apa-numeric-superscript-brackets.csl b/buildres/csl/csl-styles/apa-numeric-superscript-brackets.csl index c6d3de36f82..ba3dadf6d20 100644 --- a/buildres/csl/csl-styles/apa-numeric-superscript-brackets.csl +++ b/buildres/csl/csl-styles/apa-numeric-superscript-brackets.csl @@ -123,8 +123,8 @@ @@ -192,7 +192,7 @@ - @@ -273,7 +273,7 @@ - @@ -332,7 +332,7 @@ - @@ -1097,7 +1097,7 @@ - @@ -1362,7 +1362,7 @@ - + @@ -1370,6 +1370,20 @@ + + + + + + + + + + + @@ -1377,7 +1391,7 @@ - diff --git a/buildres/csl/csl-styles/apa-numeric-superscript.csl b/buildres/csl/csl-styles/apa-numeric-superscript.csl index 0a6af38540b..1ed0ae88b7c 100644 --- a/buildres/csl/csl-styles/apa-numeric-superscript.csl +++ b/buildres/csl/csl-styles/apa-numeric-superscript.csl @@ -123,8 +123,8 @@ @@ -192,7 +192,7 @@ - @@ -273,7 +273,7 @@ - @@ -332,7 +332,7 @@ - @@ -1097,7 +1097,7 @@ - @@ -1362,7 +1362,7 @@ - + @@ -1370,6 +1370,20 @@ + + + + + + + + + + + @@ -1377,7 +1391,7 @@ - diff --git a/buildres/csl/csl-styles/apa-old-doi-prefix.csl b/buildres/csl/csl-styles/apa-old-doi-prefix.csl index 02ecfc75fac..cdfaa73a451 100644 --- a/buildres/csl/csl-styles/apa-old-doi-prefix.csl +++ b/buildres/csl/csl-styles/apa-old-doi-prefix.csl @@ -897,32 +897,52 @@ - + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + @@ -1401,7 +1421,7 @@ - diff --git a/buildres/csl/csl-styles/apa-single-spaced.csl b/buildres/csl/csl-styles/apa-single-spaced.csl index c2157cb296a..ff224f6a405 100644 --- a/buildres/csl/csl-styles/apa-single-spaced.csl +++ b/buildres/csl/csl-styles/apa-single-spaced.csl @@ -320,8 +320,8 @@ @@ -389,7 +389,7 @@ - @@ -470,7 +470,7 @@ - @@ -529,7 +529,7 @@ - @@ -1294,7 +1294,7 @@ - @@ -1554,12 +1554,12 @@ + both publisher-place and event-place. Remove this 'choose' when that is changed. --> - + @@ -1567,6 +1567,20 @@ + + + + + + + + + + + @@ -1574,7 +1588,7 @@ - diff --git a/buildres/csl/csl-styles/apa-tr.csl b/buildres/csl/csl-styles/apa-tr.csl index 557066dafd8..d17be770985 100644 --- a/buildres/csl/csl-styles/apa-tr.csl +++ b/buildres/csl/csl-styles/apa-tr.csl @@ -223,7 +223,7 @@ - + @@ -241,15 +241,15 @@ - + - + - + @@ -257,6 +257,20 @@ + + + + + + + + + + + diff --git a/buildres/csl/csl-styles/apa-with-abstract.csl b/buildres/csl/csl-styles/apa-with-abstract.csl index ddff715c9d6..25d185866bf 100644 --- a/buildres/csl/csl-styles/apa-with-abstract.csl +++ b/buildres/csl/csl-styles/apa-with-abstract.csl @@ -320,8 +320,8 @@ @@ -389,7 +389,7 @@ - @@ -470,7 +470,7 @@ - @@ -529,7 +529,7 @@ - @@ -1294,7 +1294,7 @@ - @@ -1559,7 +1559,7 @@ - + @@ -1567,6 +1567,20 @@ + + + + + + + + + + + @@ -1574,7 +1588,7 @@ - diff --git a/buildres/csl/csl-styles/apa.csl b/buildres/csl/csl-styles/apa.csl index 09f4635a505..0fd6bd71a5e 100644 --- a/buildres/csl/csl-styles/apa.csl +++ b/buildres/csl/csl-styles/apa.csl @@ -320,8 +320,8 @@ @@ -389,7 +389,7 @@ - @@ -470,7 +470,7 @@ - @@ -530,7 +530,7 @@ - @@ -1295,7 +1295,7 @@ - @@ -1560,7 +1560,7 @@ - + @@ -1568,6 +1568,20 @@ + + + + + + + + + + + @@ -1575,7 +1589,7 @@ - diff --git a/buildres/csl/csl-styles/associacao-brasileira-de-normas-tecnicas.csl b/buildres/csl/csl-styles/associacao-brasileira-de-normas-tecnicas.csl index 2b769703f27..cc8975fa8c2 100644 --- a/buildres/csl/csl-styles/associacao-brasileira-de-normas-tecnicas.csl +++ b/buildres/csl/csl-styles/associacao-brasileira-de-normas-tecnicas.csl @@ -82,7 +82,7 @@ tendo as inicias separadas por ponto.--> - - - - - - @@ -199,7 +194,6 @@ - @@ -212,7 +206,6 @@ - @@ -236,7 +229,6 @@ - @@ -244,7 +236,6 @@ - @@ -262,18 +253,10 @@ - - - - - - - - - + @@ -282,7 +265,6 @@ - @@ -293,13 +275,11 @@ - - diff --git a/buildres/csl/csl-styles/australasian-journal-of-philosophy.csl b/buildres/csl/csl-styles/australasian-journal-of-philosophy.csl new file mode 100644 index 00000000000..ed846706972 --- /dev/null +++ b/buildres/csl/csl-styles/australasian-journal-of-philosophy.csl @@ -0,0 +1,317 @@ + + diff --git a/buildres/csl/csl-styles/beilstein-journal-of-organic-chemistry.csl b/buildres/csl/csl-styles/beilstein-journal-of-organic-chemistry.csl index 8487b04c1ee..2ab0fe83caf 100644 --- a/buildres/csl/csl-styles/beilstein-journal-of-organic-chemistry.csl +++ b/buildres/csl/csl-styles/beilstein-journal-of-organic-chemistry.csl @@ -3,7 +3,7 @@ Beilstein Journal of Organic Chemistry - Beilstein + BJOC http://www.zotero.org/styles/beilstein-journal-of-organic-chemistry @@ -154,7 +154,6 @@ - diff --git a/buildres/csl/csl-styles/bibliothek-forschung-und-praxis.csl b/buildres/csl/csl-styles/bibliothek-forschung-und-praxis.csl new file mode 100644 index 00000000000..5e85189c238 --- /dev/null +++ b/buildres/csl/csl-styles/bibliothek-forschung-und-praxis.csl @@ -0,0 +1,623 @@ + + diff --git a/buildres/csl/csl-styles/chaucer-review.csl b/buildres/csl/csl-styles/chaucer-review.csl new file mode 100644 index 00000000000..123910b954a --- /dev/null +++ b/buildres/csl/csl-styles/chaucer-review.csl @@ -0,0 +1,775 @@ + + diff --git a/buildres/csl/csl-styles/chemical-engineering-technology.csl b/buildres/csl/csl-styles/chemical-engineering-technology.csl new file mode 100644 index 00000000000..8497a7049e3 --- /dev/null +++ b/buildres/csl/csl-styles/chemical-engineering-technology.csl @@ -0,0 +1,173 @@ + + diff --git a/buildres/csl/csl-styles/composer.json b/buildres/csl/csl-styles/composer.json new file mode 100644 index 00000000000..7906f93ba75 --- /dev/null +++ b/buildres/csl/csl-styles/composer.json @@ -0,0 +1,13 @@ +{ + "name": "citation-style-language/styles", + "description": "Citation Style Language (CSL) Styless", + "type": "library", + "license": "CC-BY-SA-3.0", + "homepage": "http://citationstyles.org/", + "authors": [ + { + "name": "Citation Style Language (CSL) Team", + "homepage": "http://citationstyles.org/about/#Credits" + } + ] +} diff --git a/buildres/csl/csl-styles/copernicus-publications.csl b/buildres/csl/csl-styles/copernicus-publications.csl index 1745d371a3f..018ec7cb15c 100644 --- a/buildres/csl/csl-styles/copernicus-publications.csl +++ b/buildres/csl/csl-styles/copernicus-publications.csl @@ -255,7 +255,7 @@ - + diff --git a/buildres/csl/csl-styles/dependent/annals-of-allergy-asthma-and-immunology.csl b/buildres/csl/csl-styles/dependent/annals-of-allergy-asthma-and-immunology.csl deleted file mode 100644 index 12086db4e67..00000000000 --- a/buildres/csl/csl-styles/dependent/annals-of-allergy-asthma-and-immunology.csl +++ /dev/null @@ -1,14 +0,0 @@ - - diff --git a/buildres/csl/csl-styles/deutsche-gesellschaft-fur-psychologie.csl b/buildres/csl/csl-styles/deutsche-gesellschaft-fur-psychologie.csl index e6795a3b3e4..2f7e4e8243e 100644 --- a/buildres/csl/csl-styles/deutsche-gesellschaft-fur-psychologie.csl +++ b/buildres/csl/csl-styles/deutsche-gesellschaft-fur-psychologie.csl @@ -33,6 +33,7 @@ et al. Zugriff am Original erschienen + n. d. diff --git a/buildres/csl/csl-styles/entomological-review.csl b/buildres/csl/csl-styles/entomological-review.csl new file mode 100644 index 00000000000..7b078499259 --- /dev/null +++ b/buildres/csl/csl-styles/entomological-review.csl @@ -0,0 +1,231 @@ + + diff --git a/buildres/csl/csl-styles/haffner-style-manual.csl b/buildres/csl/csl-styles/haffner-style-manual.csl new file mode 100644 index 00000000000..279bbd8156a --- /dev/null +++ b/buildres/csl/csl-styles/haffner-style-manual.csl @@ -0,0 +1,512 @@ + + diff --git a/buildres/csl/csl-styles/health-physics.csl b/buildres/csl/csl-styles/health-physics.csl new file mode 100644 index 00000000000..dc69ba1cefe --- /dev/null +++ b/buildres/csl/csl-styles/health-physics.csl @@ -0,0 +1,161 @@ + + diff --git a/buildres/csl/csl-styles/journal-on-efficiency-and-responsibility-in-education-and-science.csl b/buildres/csl/csl-styles/journal-on-efficiency-and-responsibility-in-education-and-science.csl index 43ac15cd67d..e3387113c32 100644 --- a/buildres/csl/csl-styles/journal-on-efficiency-and-responsibility-in-education-and-science.csl +++ b/buildres/csl/csl-styles/journal-on-efficiency-and-responsibility-in-education-and-science.csl @@ -10,7 +10,7 @@ Dominik Bláha - blahad@sic.czu.cz + blahad@lib.czu.cz Igor Krejčí @@ -20,7 +20,7 @@ 2336-2375 1803-1617 - 2019-04-20T15:03:39+00:00 + 2022-07-10T17:58:51+00:00 This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License @@ -618,8 +618,8 @@ - - + + diff --git a/buildres/csl/csl-styles/nature-no-et-al.csl b/buildres/csl/csl-styles/nature-no-et-al.csl index 60dbfb6c761..115b680cb44 100644 --- a/buildres/csl/csl-styles/nature-no-et-al.csl +++ b/buildres/csl/csl-styles/nature-no-et-al.csl @@ -12,7 +12,7 @@ - 2014-06-22T12:00:00+00:00 + 2014-06-23T03:22:15+00:00 This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License @@ -35,7 +35,7 @@ - + @@ -55,6 +55,28 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/buildres/csl/csl-styles/nature-no-superscript.csl b/buildres/csl/csl-styles/nature-no-superscript.csl index 225eaf50c59..6c04d8139b3 100644 --- a/buildres/csl/csl-styles/nature-no-superscript.csl +++ b/buildres/csl/csl-styles/nature-no-superscript.csl @@ -12,7 +12,7 @@ - 2014-06-03T22:14:43+00:00 + 2022-07-02T11:44:17+00:00 This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License @@ -35,7 +35,7 @@ - + @@ -55,6 +55,28 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/buildres/csl/csl-styles/nature.csl b/buildres/csl/csl-styles/nature.csl index 2646cfe922c..a2253b8b817 100644 --- a/buildres/csl/csl-styles/nature.csl +++ b/buildres/csl/csl-styles/nature.csl @@ -15,7 +15,7 @@ 0028-0836 1476-4687 - 2019-10-08T13:18:12+00:00 + 2022-07-01T16:03:34+00:00 This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License @@ -37,7 +37,7 @@ - + @@ -55,6 +55,28 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/buildres/csl/csl-styles/renamed-styles.json b/buildres/csl/csl-styles/renamed-styles.json index d5396d84489..e30246291be 100644 --- a/buildres/csl/csl-styles/renamed-styles.json +++ b/buildres/csl/csl-styles/renamed-styles.json @@ -529,5 +529,6 @@ "investigaciones-de-historia-economica-economic-history-research": "investigaciones-de-historia-economica", "reach-reviews-in-human-space-exploration": "reach", "journal-of-oncological-science": "journal-of-oncological-sciences", - "harvard-dublin-city-university": "harvard-cite-them-right" + "harvard-dublin-city-university": "harvard-cite-them-right", + "technische-universitat-dresden-medizin": "apa" } diff --git a/buildres/csl/csl-styles/science.csl b/buildres/csl/csl-styles/science.csl index 641de8f592d..06ee7b70359 100644 --- a/buildres/csl/csl-styles/science.csl +++ b/buildres/csl/csl-styles/science.csl @@ -144,6 +144,7 @@ + diff --git a/buildres/csl/csl-styles/sciences-po-ecole-doctorale-author-date.csl b/buildres/csl/csl-styles/sciences-po-ecole-doctorale-author-date.csl index 8b570113983..3fe5189cd70 100644 --- a/buildres/csl/csl-styles/sciences-po-ecole-doctorale-author-date.csl +++ b/buildres/csl/csl-styles/sciences-po-ecole-doctorale-author-date.csl @@ -1,7 +1,7 @@ - diff --git a/buildres/csl/csl-styles/university-of-pretoria-harvard-theology-religion.csl b/buildres/csl/csl-styles/university-of-pretoria-harvard-theology-religion.csl new file mode 100644 index 00000000000..f59a9edfa0a --- /dev/null +++ b/buildres/csl/csl-styles/university-of-pretoria-harvard-theology-religion.csl @@ -0,0 +1,347 @@ + + diff --git a/buildres/csl/csl-styles/vancouver-author-date.csl b/buildres/csl/csl-styles/vancouver-author-date.csl index 13b1bc2d023..4bd51dd6b9d 100644 --- a/buildres/csl/csl-styles/vancouver-author-date.csl +++ b/buildres/csl/csl-styles/vancouver-author-date.csl @@ -7,6 +7,7 @@ + Charles Parnot charles.parnot@gmail.com @@ -15,7 +16,7 @@ Vancouver style as outlined by International Committee of Medical Journal Editors Uniform Requirements for Manuscripts Submitted to Biomedical Journals: Sample References - 2012-11-09T12:00:00+00:00 + 2022-07-18T16:49:43+00:00 This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License @@ -47,6 +48,16 @@ + + + + + + @@ -253,25 +264,29 @@ - - - - - + + + + - - - + + + + + + diff --git a/buildres/windows/JabRefHost.bat b/buildres/windows/JabRefHost.bat index 8561a8dedd1..1da03167e39 100644 --- a/buildres/windows/JabRefHost.bat +++ b/buildres/windows/JabRefHost.bat @@ -2,13 +2,14 @@ pushd %~dp0 :: Test if pwsh exists +setlocal enabledelayedexpansion where /q pwsh.exe -if %errorlevel%==0 ( +if !ERRORLEVEL!==0 ( @pwsh.exe -ExecutionPolicy Bypass -NoLogo -NonInteractive -NoProfile -WindowStyle Hidden -File ".\JabRefHost.ps1" ) else ( :: If not, test if powershell exists where /q powershell.exe - if %errorlevel%==0 ( + if !ERRORLEVEL!==0 ( @powershell.exe -ExecutionPolicy Bypass -NoLogo -NonInteractive -NoProfile -WindowStyle Hidden -File ".\JabRefHost.ps1" ) else ( echo "Could not find pwsh.exe or powershell.exe" 1>&2 @@ -16,3 +17,4 @@ if %errorlevel%==0 ( exit /b 1 ) ) +endlocal diff --git a/external-libraries.md b/external-libraries.md index a59bbaee1f9..e207b994cf5 100644 --- a/external-libraries.md +++ b/external-libraries.md @@ -398,6 +398,9 @@ Id: com.ibm.icu:* Project: International Components for Unicode URL: https://icu.unicode.org/ License: Unicode License (https://www.unicode.org/copyright.html) +Note: Our own fork https://github.com/JabRef/icu. Upstream PR: https://github.com/unicode-org/icu/pull/2127 +Path: lib/icu4j.jar +SourcePath: lib/ic4j-src.jar ``` ```yaml @@ -519,13 +522,14 @@ License: Apache-2.0 3. (on WSL) `sed 's/[^a-z]*//' < build/dependencies.txt | sed "s/\(.*\) .*/\1/" | grep -v "\->" | sort | uniq > build/dependencies-for-external-libraries.txt` ```text -com.fasterxml.jackson.core:jackson-annotations:2.13.2 -com.fasterxml.jackson.core:jackson-core:2.13.2 -com.fasterxml.jackson.core:jackson-databind:2.13.2 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.2 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.2 -com.fasterxml.jackson:jackson-bom:2.13.2 -com.github.tomtung:latex2unicode_2.12:0.2.6 +com.fasterxml.jackson.core:jackson-annotations:2.13.3 +com.fasterxml.jackson.core:jackson-core:2.13.3 +com.fasterxml.jackson.core:jackson-databind:2.13.3 +com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 +com.fasterxml.jackson:jackson-bom:2.13.3 +com.github.sialcasa.mvvmFX:mvvmfx-validation:f195849ca9 +com.github.tomtung:latex2unicode_2.13:0.3.2 com.google.code.gson:gson:2.9.0 com.google.errorprone:error_prone_annotations:2.11.0 com.google.guava:failureaccess:1.0.1 @@ -533,11 +537,9 @@ com.google.guava:guava:31.1-jre com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava com.google.j2objc:j2objc-annotations:1.3 com.googlecode.javaewah:JavaEWAH:1.1.13 -com.h2database:h2-mvstore:2.1.212 -com.ibm.icu:icu4j-charset:70.1 -com.ibm.icu:icu4j:70.1 +com.h2database:h2-mvstore:2.1.214 com.jfoenix:jfoenix:9.0.10 -com.konghq:unirest-java:3.13.8 +com.konghq:unirest-java:3.13.10 com.microsoft.azure:applicationinsights-core:2.4.1 com.microsoft.azure:applicationinsights-logging-log4j2:2.4.1 com.oracle.ojdbc:ojdbc10:19.3.0.0 @@ -565,10 +567,9 @@ com.vladsch.flexmark:flexmark-util-visitor:0.64.0 com.vladsch.flexmark:flexmark-util:0.64.0 com.vladsch.flexmark:flexmark:0.64.0 commons-cli:commons-cli:1.5.0 -commons-codec:commons-codec:1.11 +commons-codec:commons-codec:1.15 commons-io:commons-io:2.11.0 commons-logging:commons-logging:1.2 -de.saxsys:mvvmfx-validation:1.9.0-SNAPSHOT de.saxsys:mvvmfx:1.8.0 de.undercouch:citeproc-java:3.0.0-alpha.6 eu.lestard:doc-annotations:0.2 @@ -581,7 +582,7 @@ net.java.dev.jna:jna-platform:5.6.0 net.java.dev.jna:jna:5.6.0 net.jcip:jcip-annotations:1.0 net.jodah:typetools:0.6.1 -org.antlr:antlr-runtime:3.5.2 +org.antlr:antlr-runtime:3.5.3 org.antlr:antlr4-runtime:4.9.3 org.apache.commons:commons-csv:1.9.0 org.apache.commons:commons-lang3:3.12.0 @@ -590,23 +591,22 @@ org.apache.httpcomponents:httpclient:4.5.13 org.apache.httpcomponents:httpcore-nio:4.4.13 org.apache.httpcomponents:httpcore:4.4.13 org.apache.httpcomponents:httpmime:4.5.13 -org.apache.lucene:lucene-analysis-common:9.1.0 -org.apache.lucene:lucene-backward-codecs:9.1.0 -org.apache.lucene:lucene-core:9.1.0 -org.apache.lucene:lucene-highlighter:9.1.0 -org.apache.lucene:lucene-queries:9.1.0 -org.apache.lucene:lucene-queryparser:9.1.0 -org.apache.lucene:lucene-sandbox:9.1.0 +org.apache.lucene:lucene-analysis-common:9.2.0 +org.apache.lucene:lucene-core:9.2.0 +org.apache.lucene:lucene-highlighter:9.2.0 +org.apache.lucene:lucene-queries:9.2.0 +org.apache.lucene:lucene-queryparser:9.2.0 +org.apache.lucene:lucene-sandbox:9.2.0 org.apache.pdfbox:fontbox:3.0.0-RC1 org.apache.pdfbox:pdfbox:3.0.0-RC1 org.apache.pdfbox:xmpbox:3.0.0-RC1 -org.apache.tika:tika-core:2.3.0 -org.bouncycastle:bcprov-jdk15on:1.70 +org.apache.tika:tika-core:2.4.1 +org.bouncycastle:bcprov-jdk18on:1.71 org.checkerframework:checker-qual:3.12.0 org.codehaus.mojo:animal-sniffer-annotations:1.18 org.controlsfx:controlsfx:11.1.1 -org.eclipse.jgit:org.eclipse.jgit:6.1.0.202203080745-r -org.fxmisc.flowless:flowless:0.6.9 +org.eclipse.jgit:org.eclipse.jgit:6.2.0.202206071550-r +org.fxmisc.flowless:flowless:0.6.10 org.fxmisc.richtext:richtextfx:0.10.9 org.fxmisc.undo:undofx:2.1.1 org.fxmisc.wellbehaved:wellbehavedfx:0.3.3 @@ -616,23 +616,23 @@ org.glassfish.jaxb:jaxb-runtime:3.0.2 org.glassfish.jaxb:txw2:3.0.2 org.jbibtex:jbibtex:1.0.19 org.jetbrains:annotations:15.0 -org.jsoup:jsoup:1.14.3 +org.jsoup:jsoup:1.15.1 org.kordamp.ikonli:ikonli-core:12.3.1 org.kordamp.ikonli:ikonli-javafx:12.3.1 org.kordamp.ikonli:ikonli-materialdesign2-pack:12.3.1 -org.libreoffice:libreoffice:7.3.2 -org.libreoffice:unoloader:7.3.2 -org.mariadb.jdbc:mariadb-java-client:2.7.5 -org.openjfx:javafx-base:18 -org.openjfx:javafx-controls:18 -org.openjfx:javafx-fxml:18 -org.openjfx:javafx-graphics:18 -org.openjfx:javafx-media:18 -org.openjfx:javafx-swing:18 -org.openjfx:javafx-web:18 -org.postgresql:postgresql:42.3.3 +org.libreoffice:libreoffice:7.3.4 +org.libreoffice:unoloader:7.3.4 +org.mariadb.jdbc:mariadb-java-client:2.7.6 +org.openjfx:javafx-base:18.0.1 +org.openjfx:javafx-controls:18.0.1 +org.openjfx:javafx-fxml:18.0.1 +org.openjfx:javafx-graphics:18.0.1 +org.openjfx:javafx-media:18.0.1 +org.openjfx:javafx-swing:18.0.1 +org.openjfx:javafx-web:18.0.1 +org.postgresql:postgresql:42.4.0 org.reactfx:reactfx:2.0-M5 -org.scala-lang:scala-library:2.12.8 +org.scala-lang:scala-library:2.13.8 org.slf4j:slf4j-api:2.0.0-alpha7 org.tinylog:slf4j-tinylog:2.4.1 org.tinylog:tinylog-api:2.4.1 diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 41d9927a4d4..249e5832f09 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 5c51a4acc9d..012d6d90445 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionSha256Sum=29e49b10984e585d8118b7d0bc452f944e386458df27371b49b4ac1dec4b7fda -distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip +distributionSha256Sum=cb87f222c5585bd46838ad4db78463a5c5f3d336e5e2b98dc7c0c586527351c2 +distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew index 1b6c787337f..a69d9cb6c20 100755 --- a/gradlew +++ b/gradlew @@ -205,6 +205,12 @@ set -- \ org.gradle.wrapper.GradleWrapperMain \ "$@" +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + # Use "xargs" to parse quoted args. # # With -n1 it outputs one arg per line, with the quotes and backslashes removed. diff --git a/gradlew.bat b/gradlew.bat index 107acd32c4e..f127cfd49d4 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -14,7 +14,7 @@ @rem limitations under the License. @rem -@if "%DEBUG%" == "" @echo off +@if "%DEBUG%"=="" @echo off @rem ########################################################################## @rem @rem Gradle startup script for Windows @@ -25,7 +25,7 @@ if "%OS%"=="Windows_NT" setlocal set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. +if "%DIRNAME%"=="" set DIRNAME=. set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% @@ -40,7 +40,7 @@ if defined JAVA_HOME goto findJavaFromJavaHome set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto execute +if %ERRORLEVEL% equ 0 goto execute echo. echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. @@ -75,13 +75,15 @@ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar :end @rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd +if %ERRORLEVEL% equ 0 goto mainEnd :fail rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% :mainEnd if "%OS%"=="Windows_NT" endlocal diff --git a/lib/icu4j-src.jar b/lib/icu4j-src.jar new file mode 100644 index 00000000000..032936efdbd Binary files /dev/null and b/lib/icu4j-src.jar differ diff --git a/lib/icu4j.jar b/lib/icu4j.jar new file mode 100644 index 00000000000..207c4a6afc7 Binary files /dev/null and b/lib/icu4j.jar differ diff --git a/src/main/antlr3/org/jabref/bst/Bst.g b/src/main/antlr3/org/jabref/bst/Bst.g deleted file mode 100644 index 498621ad1a1..00000000000 --- a/src/main/antlr3/org/jabref/bst/Bst.g +++ /dev/null @@ -1,96 +0,0 @@ -grammar Bst; - -options { - output=AST; -} - -tokens { - IDLIST; - STACK; - ENTRY; - COMMANDS; -} - -// applies only to the parser: -@header {// Generated by ANTLR -package org.jabref.logic.bst;} - -// applies only to the lexer: -@lexer::header {// Generated by ANTLR -package org.jabref.logic.bst;} - -program : commands+ -> ^(COMMANDS commands+); - -commands - : STRINGS^ idList - | INTEGERS^ idList - | FUNCTION^ id stack - | MACRO^ id '{'! STRING '}'! - | READ^ - | EXECUTE^ '{'! function '}'! - | ITERATE^ '{'! function '}'! - | REVERSE^ '{'! function '}'! - | ENTRY^ idList0 idList0 idList0 - | SORT^; - -identifier - : IDENTIFIER; - -id - : '{'! identifier '}'!; - -idList - : '{' identifier+ '}' -> ^(IDLIST identifier+); - -idList0 - : '{' identifier* '}' -> ^(IDLIST identifier*); - -function - : '<' | '>' | '=' | '+' | '-' | ':=' | '*' | identifier; - -stack - : '{' stackitem+ '}' -> ^(STACK stackitem+); - -stackitem - : function - | STRING - | INTEGER - | QUOTED - | stack; - -STRINGS : 'STRINGS'; -INTEGERS : 'INTEGERS'; -FUNCTION : 'FUNCTION'; -EXECUTE : 'EXECUTE'; -SORT : 'SORT'; -ITERATE : 'ITERATE'; -REVERSE : 'REVERSE'; -ENTRY : 'ENTRY'; -READ : 'READ'; -MACRO : 'MACRO'; - -QUOTED - : '\'' IDENTIFIER; - -IDENTIFIER - : LETTER (LETTER|NUMERAL|'_')* ; - -fragment LETTER - : ('a'..'z'|'A'..'Z'|'.'|'$'); - -STRING - : '"' (~('"'))* '"'; - -INTEGER - : '#' ('+'|'-')? NUMERAL+ ; - -fragment NUMERAL - : ('0'..'9'); - -WS - : (' '|'\t'|'\n'|'\r')+ {_channel=99;} ; - -LINE_COMMENT - : '%' ~('\n'|'\r')* '\r'? '\n' {_channel=99;} - ; - diff --git a/src/main/antlr4/org/jabref/bst/Bst.g4 b/src/main/antlr4/org/jabref/bst/Bst.g4 new file mode 100644 index 00000000000..92b96ce18df --- /dev/null +++ b/src/main/antlr4/org/jabref/bst/Bst.g4 @@ -0,0 +1,85 @@ +grammar Bst; + +// Lexer + +STRINGS : 'STRINGS'; +INTEGERS : 'INTEGERS'; +FUNCTION : 'FUNCTION'; +EXECUTE : 'EXECUTE'; +SORT : 'SORT'; +ITERATE : 'ITERATE'; +REVERSE : 'REVERSE'; +ENTRY : 'ENTRY'; +READ : 'READ'; +MACRO : 'MACRO'; + +GT : '>'; +LT : '<'; +EQUAL : '='; +ASSIGN : ':='; +ADD : '+'; +SUB : '-'; +CONCAT : '*'; +LBRACE : '{'; +RBRACE : '}'; + +fragment LETTER : ('a'..'z'|'A'..'Z'|'.'|'$'); +fragment NUMERAL : ('0'..'9'); + +IDENTIFIER : LETTER (LETTER|NUMERAL|'_')*; +INTEGER : '#' ('+'|'-')? NUMERAL+; +QUOTED : '\'' IDENTIFIER; +STRING : '"' (~('"'))* '"'; + +WS: [ \r\n\t]+ -> skip; +LINE_COMMENT : '%' ~('\n'|'\r')* '\r'? '\n' -> skip; + +// Parser + +bstFile + : commands+ EOF + ; + +commands + : STRINGS ids=idListObl #stringsCommand + | INTEGERS ids=idListObl #integersCommand + | FUNCTION LBRACE id=identifier RBRACE function=stack #functionCommand + | MACRO LBRACE id=identifier RBRACE LBRACE repl=STRING RBRACE #macroCommand + | READ #readCommand + | EXECUTE LBRACE bstFunction RBRACE #executeCommand + | ITERATE LBRACE bstFunction RBRACE #iterateCommand + | REVERSE LBRACE bstFunction RBRACE #reverseCommand + | ENTRY idListOpt idListOpt idListOpt #entryCommand + | SORT #sortCommand + ; + +identifier + : IDENTIFIER + ; + +// Obligatory identifier list +idListObl + : LBRACE identifier+ RBRACE + ; + +// Optional identifier list +idListOpt + : LBRACE identifier* RBRACE + ; + +bstFunction + : LT | GT | EQUAL | ADD | SUB | ASSIGN | CONCAT + | identifier + ; + +stack + : LBRACE stackitem+ RBRACE + ; + +stackitem + : bstFunction + | STRING + | INTEGER + | QUOTED + | stack + ; diff --git a/src/main/java/module-info.java b/src/main/java/module-info.java index 751863df3e1..c05e10bda2b 100644 --- a/src/main/java/module-info.java +++ b/src/main/java/module-info.java @@ -85,7 +85,6 @@ requires org.mariadb.jdbc; uses org.mariadb.jdbc.credential.CredentialPlugin; requires org.apache.commons.lang3; - requires antlr.runtime; requires org.antlr.antlr4.runtime; requires org.fxmisc.flowless; requires org.apache.tika.core; diff --git a/src/main/java/org/jabref/gui/EntryTypeView.java b/src/main/java/org/jabref/gui/EntryTypeView.java index 10a95f3a5d0..165e1d7a380 100644 --- a/src/main/java/org/jabref/gui/EntryTypeView.java +++ b/src/main/java/org/jabref/gui/EntryTypeView.java @@ -28,6 +28,7 @@ import org.jabref.logic.l10n.Localization; import org.jabref.model.database.BibDatabaseMode; import org.jabref.model.entry.BibEntryType; +import org.jabref.model.entry.types.BiblatexAPAEntryTypeDefinitions; import org.jabref.model.entry.types.BiblatexEntryTypeDefinitions; import org.jabref.model.entry.types.BiblatexSoftwareEntryTypeDefinitions; import org.jabref.model.entry.types.BibtexEntryTypeDefinitions; @@ -157,6 +158,7 @@ public void initialize() { .filter(e -> !recommendedEntries.contains(e)) .collect(Collectors.toList()); otherEntries.addAll(BiblatexSoftwareEntryTypeDefinitions.ALL); + otherEntries.addAll(BiblatexAPAEntryTypeDefinitions.ALL); } else { recommendedEntries = BibtexEntryTypeDefinitions.RECOMMENDED; otherEntries = BibtexEntryTypeDefinitions.ALL diff --git a/src/main/java/org/jabref/gui/JabRefFrame.java b/src/main/java/org/jabref/gui/JabRefFrame.java index 91d074e7e7c..834f7beb325 100644 --- a/src/main/java/org/jabref/gui/JabRefFrame.java +++ b/src/main/java/org/jabref/gui/JabRefFrame.java @@ -222,6 +222,54 @@ private void initDragAndDrop() { } else { tabbedPane.getTabs().remove(dndIndicator); } + // Accept drag entries from MainTable + if (event.getDragboard().hasContent(DragAndDropDataFormats.ENTRIES)) { + event.acceptTransferModes(TransferMode.COPY); + event.consume(); + } + }); + + this.getScene().setOnDragEntered(event -> { + // It is necessary to setOnDragOver for newly opened tabs + // drag'n'drop on tabs covered dnd on tabbedPane, so dnd on tabs should contain all dnds on tabbedPane + tabbedPane.lookupAll(".tab").forEach(tab -> { + tab.setOnDragOver(tabDragEvent -> { + if (DragAndDropHelper.hasBibFiles(tabDragEvent.getDragboard())) { + tabDragEvent.acceptTransferModes(TransferMode.ANY); + if (!tabbedPane.getTabs().contains(dndIndicator)) { + tabbedPane.getTabs().add(dndIndicator); + } + event.consume(); + } else { + tabbedPane.getTabs().remove(dndIndicator); + } + + if (tabDragEvent.getDragboard().hasContent(DragAndDropDataFormats.ENTRIES)) { + tabDragEvent.acceptTransferModes(TransferMode.COPY); + tabDragEvent.consume(); + } + }); + tab.setOnDragExited(event1 -> tabbedPane.getTabs().remove(dndIndicator)); + tab.setOnDragDropped(tabDragEvent -> { + if (DragAndDropHelper.hasBibFiles(tabDragEvent.getDragboard())) { + tabbedPane.getTabs().remove(dndIndicator); + List bibFiles = DragAndDropHelper.getBibFiles(tabDragEvent.getDragboard()); + OpenDatabaseAction openDatabaseAction = this.getOpenDatabaseAction(); + openDatabaseAction.openFiles(bibFiles, true); + tabDragEvent.setDropCompleted(true); + tabDragEvent.consume(); + } else { + for (Tab libraryTab : tabbedPane.getTabs()) { + if (libraryTab.getId().equals(tab.getId()) && + !tabbedPane.getSelectionModel().getSelectedItem().equals(libraryTab)) { + ((LibraryTab) libraryTab).dropEntry(stateManager.getLocalDragboard().getBibEntries()); + } + } + tabDragEvent.consume(); + } + }); + }); + event.consume(); }); this.getScene().setOnDragExited(event -> tabbedPane.getTabs().remove(dndIndicator)); diff --git a/src/main/java/org/jabref/gui/LibraryTab.java b/src/main/java/org/jabref/gui/LibraryTab.java index c62741b37c1..139cdf31fd0 100644 --- a/src/main/java/org/jabref/gui/LibraryTab.java +++ b/src/main/java/org/jabref/gui/LibraryTab.java @@ -7,6 +7,7 @@ import java.util.List; import java.util.Objects; import java.util.Optional; +import java.util.Random; import javafx.animation.PauseTransition; import javafx.application.Platform; @@ -153,6 +154,10 @@ public LibraryTab(JabRefFrame frame, this.entryEditor = new EntryEditor(this, externalFileTypes); + // set LibraryTab ID for drag'n'drop + // ID content doesn't matter, we only need different tabs to have different ID + this.setId(Long.valueOf(new Random().nextLong()).toString()); + Platform.runLater(() -> { EasyBind.subscribe(changedProperty, this::updateTabTitle); stateManager.getOpenDatabases().addListener((ListChangeListener) c -> @@ -758,6 +763,10 @@ public void paste() { mainTable.paste(); } + public void dropEntry(List entriesToAdd) { + mainTable.dropEntry(entriesToAdd); + } + public void cut() { mainTable.cut(); } @@ -857,7 +866,7 @@ private class IndexUpdateListener { public IndexUpdateListener() { if (preferencesService.getFilePreferences().shouldFulltextIndexLinkedFiles()) { try { - indexingTaskManager.addToIndex(PdfIndexer.of(bibDatabaseContext, preferencesService.getFilePreferences()), bibDatabaseContext); + indexingTaskManager.updateIndex(PdfIndexer.of(bibDatabaseContext, preferencesService.getFilePreferences()), bibDatabaseContext); } catch (IOException e) { LOGGER.error("Cannot access lucene index", e); } diff --git a/src/main/java/org/jabref/gui/StateManager.java b/src/main/java/org/jabref/gui/StateManager.java index a8d93152de9..cc6ab8ae8bd 100644 --- a/src/main/java/org/jabref/gui/StateManager.java +++ b/src/main/java/org/jabref/gui/StateManager.java @@ -8,9 +8,11 @@ import javafx.beans.Observable; import javafx.beans.binding.Bindings; import javafx.beans.property.IntegerProperty; +import javafx.beans.property.ObjectProperty; import javafx.beans.property.ReadOnlyListProperty; import javafx.beans.property.ReadOnlyListWrapper; import javafx.beans.property.SimpleIntegerProperty; +import javafx.beans.property.SimpleObjectProperty; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.collections.ObservableMap; @@ -18,6 +20,7 @@ import javafx.scene.Node; import javafx.util.Pair; +import org.jabref.gui.edit.automaticfiededitor.LastAutomaticFieldEditorEdit; import org.jabref.gui.sidepane.SidePaneType; import org.jabref.gui.util.BackgroundTask; import org.jabref.gui.util.CustomLocalDragboard; @@ -62,6 +65,8 @@ public class StateManager { private final ObservableMap dialogWindowStates = FXCollections.observableHashMap(); private final ObservableList visibleSidePanes = FXCollections.observableArrayList(); + private final ObjectProperty lastAutomaticFieldEditorEdit = new SimpleObjectProperty<>(); + public StateManager() { activeGroups.bind(Bindings.valueAt(selectedGroups, activeDatabase.orElse(null))); } @@ -172,4 +177,16 @@ public DialogWindowState getDialogWindowState(String className) { public void setDialogWindowState(String className, DialogWindowState state) { dialogWindowStates.put(className, state); } + + public ObjectProperty lastAutomaticFieldEditorEditProperty() { + return lastAutomaticFieldEditorEdit; + } + + public LastAutomaticFieldEditorEdit getLastAutomaticFieldEditorEdit() { + return lastAutomaticFieldEditorEditProperty().get(); + } + + public void setLastAutomaticFieldEditorEdit(LastAutomaticFieldEditorEdit automaticFieldEditorEdit) { + lastAutomaticFieldEditorEditProperty().set(automaticFieldEditorEdit); + } } diff --git a/src/main/java/org/jabref/gui/collab/ChangeDisplayDialog.java b/src/main/java/org/jabref/gui/collab/ChangeDisplayDialog.java deleted file mode 100644 index e9f0751cc07..00000000000 --- a/src/main/java/org/jabref/gui/collab/ChangeDisplayDialog.java +++ /dev/null @@ -1,114 +0,0 @@ -package org.jabref.gui.collab; - -import java.util.List; - -import javafx.collections.FXCollections; -import javafx.scene.control.Button; -import javafx.scene.control.ButtonBar; -import javafx.scene.control.ButtonBar.ButtonData; -import javafx.scene.control.ButtonType; -import javafx.scene.control.CheckBox; -import javafx.scene.control.Label; -import javafx.scene.control.ListView; -import javafx.scene.control.ScrollPane; -import javafx.scene.control.SplitPane; -import javafx.scene.layout.BorderPane; -import javafx.scene.layout.Region; -import javafx.scene.layout.VBox; - -import org.jabref.gui.undo.NamedCompound; -import org.jabref.gui.util.BaseDialog; -import org.jabref.logic.l10n.Localization; -import org.jabref.model.database.BibDatabaseContext; - -import com.tobiasdiez.easybind.EasyBind; - -class ChangeDisplayDialog extends BaseDialog { - - private final ListView changesList; - private final BorderPane infoPanel = new BorderPane(); - private final CheckBox cb = new CheckBox(Localization.lang("Accept change")); - - public ChangeDisplayDialog(BibDatabaseContext database, List changes) { - this.setTitle(Localization.lang("External changes")); - this.getDialogPane().setPrefSize(800, 600); - - changesList = new ListView<>(FXCollections.observableArrayList(changes)); - changesList.setPrefWidth(200); - EasyBind.subscribe(changesList.getSelectionModel().selectedItemProperty(), this::selectedChangeChanged); - - SplitPane pane = new SplitPane(); - pane.setDividerPositions(0.2); - - Button selectAllChangesFromDisk = new Button(Localization.lang("Mark all changes as accepted")); - selectAllChangesFromDisk.setMinWidth(Region.USE_PREF_SIZE); - selectAllChangesFromDisk.setOnAction(evt -> { - for (DatabaseChangeViewModel change : changes) { - change.setAccepted(true); - } - }); - Button unselectAllAcceptChanges = new Button(Localization.lang("Unmark all changes")); - unselectAllAcceptChanges.setOnAction(evt -> { - for (DatabaseChangeViewModel change : changes) { - change.setAccepted(false); - } - }); - - VBox leftContent = new VBox(changesList, - selectAllChangesFromDisk, - unselectAllAcceptChanges); - - ScrollPane leftScroll = new ScrollPane(leftContent); - leftScroll.setFitToHeight(true); - leftScroll.setFitToWidth(true); - - pane.getItems().addAll(leftScroll, infoPanel); - SplitPane.setResizableWithParent(leftScroll, false); - - getDialogPane().setContent(pane); - - Label rootInfo = new Label(Localization.lang("Select the tree nodes to view and accept or reject changes") + '.'); - infoPanel.setCenter(rootInfo); - changesList.getSelectionModel().selectFirst(); - - ButtonType dismissChanges = new ButtonType(Localization.lang("Dismiss"), ButtonData.CANCEL_CLOSE); - - getDialogPane().getButtonTypes().setAll(new ButtonType(Localization.lang("Accept changes"), ButtonBar.ButtonData.APPLY), - dismissChanges); - - setResultConverter(button -> { - if (button == dismissChanges) { - return false; - } else { - // Perform all accepted changes - NamedCompound ce = new NamedCompound(Localization.lang("Merged external changes")); - for (DatabaseChangeViewModel change : changes) { - if (change instanceof EntryChangeViewModel) { - // We don't have a checkbox for accept and always get the correct merged entry, the accept property in this special case only controls the radio buttons selection - change.makeChange(database, ce); - } else if (change.isAccepted()) { - change.makeChange(database, ce); - } - } - ce.end(); - // TODO: panel.getUndoManager().addEdit(ce); - - return true; - } - }); - } - - private void selectedChangeChanged(DatabaseChangeViewModel currentChange) { - if (currentChange != null) { - infoPanel.setCenter(currentChange.description()); - - if (!(currentChange instanceof EntryChangeViewModel)) { - cb.setManaged(true); - infoPanel.setBottom(cb); - cb.selectedProperty().bindBidirectional(currentChange.acceptedProperty()); - } else { - cb.setManaged(false); - } - } - } -} diff --git a/src/main/java/org/jabref/gui/collab/ChangeScanner.java b/src/main/java/org/jabref/gui/collab/ChangeScanner.java index f19f406e18f..61e44c9116e 100644 --- a/src/main/java/org/jabref/gui/collab/ChangeScanner.java +++ b/src/main/java/org/jabref/gui/collab/ChangeScanner.java @@ -99,6 +99,6 @@ private DatabaseChangeViewModel createBibEntryDiff(BibEntryDiff diff) { return new EntryDeleteChangeViewModel(diff.getOriginalEntry()); } - return new EntryChangeViewModel(diff.getOriginalEntry(), diff.getNewEntry()); + return new EntryChangeViewModel(diff.getOriginalEntry(), diff.getNewEntry(), dialogService); } } diff --git a/src/main/java/org/jabref/gui/collab/DatabaseChangeMonitor.java b/src/main/java/org/jabref/gui/collab/DatabaseChangeMonitor.java index 575307bcda8..20263b36ab6 100644 --- a/src/main/java/org/jabref/gui/collab/DatabaseChangeMonitor.java +++ b/src/main/java/org/jabref/gui/collab/DatabaseChangeMonitor.java @@ -67,7 +67,7 @@ public DatabaseChangeMonitor(BibDatabaseContext database, Localization.lang("The library has been modified by another program."), List.of(new Action(Localization.lang("Dismiss changes"), event -> notificationPane.hide()), new Action(Localization.lang("Review changes"), event -> { - dialogService.showCustomDialogAndWait(new ChangeDisplayDialog(database, changes)); + dialogService.showCustomDialogAndWait(new ExternalChangesResolverDialog(database, changes)); notificationPane.hide(); })), Duration.ZERO)); diff --git a/src/main/java/org/jabref/gui/collab/DatabaseChangeViewModel.java b/src/main/java/org/jabref/gui/collab/DatabaseChangeViewModel.java index bdc7dead217..d1302c39cc7 100644 --- a/src/main/java/org/jabref/gui/collab/DatabaseChangeViewModel.java +++ b/src/main/java/org/jabref/gui/collab/DatabaseChangeViewModel.java @@ -1,28 +1,29 @@ package org.jabref.gui.collab; +import java.util.Optional; + import javafx.beans.property.BooleanProperty; +import javafx.beans.property.ReadOnlyStringProperty; import javafx.beans.property.SimpleBooleanProperty; +import javafx.beans.property.SimpleStringProperty; +import javafx.beans.property.StringProperty; import javafx.scene.Node; +import org.jabref.gui.actions.SimpleCommand; import org.jabref.gui.undo.NamedCompound; import org.jabref.model.database.BibDatabaseContext; abstract class DatabaseChangeViewModel { - - protected String name; + private final StringProperty name = new SimpleStringProperty(""); private BooleanProperty acceptedProperty = new SimpleBooleanProperty(true); - DatabaseChangeViewModel() { - name = ""; - } - DatabaseChangeViewModel(String name) { - this.name = name; + setName(name); } @Override public String toString() { - return name; + return getName(); } public boolean isAccepted() { @@ -37,6 +38,18 @@ public void setAccepted(boolean accepted) { this.acceptedProperty.setValue(accepted); } + public ReadOnlyStringProperty nameProperty() { + return name; + } + + public String getName() { + return nameProperty().get(); + } + + private void setName(String str) { + name.set(str); + } + /** * This method returns a {@link Node} detailing the nature and look of the change, e.g. how it is displayed * @@ -51,4 +64,12 @@ public void setAccepted(boolean accepted) { * @param undoEdit NamedCompound The compound to hold the undo edits. */ public abstract void makeChange(BibDatabaseContext database, NamedCompound undoEdit); + + public boolean hasAdvancedMergeDialog() { + return false; + } + + public Optional openAdvancedMergeDialog() { + return Optional.empty(); + } } diff --git a/src/main/java/org/jabref/gui/collab/EntryAddChangeViewModel.java b/src/main/java/org/jabref/gui/collab/EntryAddChangeViewModel.java index 56d763be3c6..3f7be35d198 100644 --- a/src/main/java/org/jabref/gui/collab/EntryAddChangeViewModel.java +++ b/src/main/java/org/jabref/gui/collab/EntryAddChangeViewModel.java @@ -26,14 +26,13 @@ public EntryAddChangeViewModel(BibEntry entry, DialogService dialogService, StateManager stateManager, ThemeManager themeManager) { - super(); + super(entry.getCitationKey() + .map(key -> Localization.lang("Added entry") + ": '" + key + '\'') + .orElse(Localization.lang("Added entry"))); this.dialogService = dialogService; this.preferencesService = preferencesService; this.themeManager = themeManager; this.stateManager = stateManager; - this.name = entry.getCitationKey() - .map(key -> Localization.lang("Added entry") + ": '" + key + '\'') - .orElse(Localization.lang("Added entry")); this.entry = entry; } diff --git a/src/main/java/org/jabref/gui/collab/EntryChangeViewModel.java b/src/main/java/org/jabref/gui/collab/EntryChangeViewModel.java index 421e4c1fcd9..042a4636a61 100644 --- a/src/main/java/org/jabref/gui/collab/EntryChangeViewModel.java +++ b/src/main/java/org/jabref/gui/collab/EntryChangeViewModel.java @@ -1,10 +1,16 @@ package org.jabref.gui.collab; +import java.util.Optional; + import javafx.geometry.Insets; import javafx.scene.Node; import javafx.scene.control.Label; import javafx.scene.layout.VBox; +import org.jabref.gui.DialogService; +import org.jabref.gui.actions.SimpleCommand; +import org.jabref.gui.mergeentries.MergeEntriesDialog; +import org.jabref.gui.mergeentries.MergeTwoEntriesAction; import org.jabref.gui.mergeentries.newmergedialog.ShowDiffConfig; import org.jabref.gui.mergeentries.newmergedialog.ThreeWayMergeView; import org.jabref.gui.mergeentries.newmergedialog.diffhighlighter.DiffHighlighter; @@ -21,15 +27,15 @@ class EntryChangeViewModel extends DatabaseChangeViewModel { private final BibEntry newEntry; private ThreeWayMergeView threeWayMergeView; - public EntryChangeViewModel(BibEntry entry, BibEntry newEntry) { - super(); + private final DialogService dialogService; + + public EntryChangeViewModel(BibEntry entry, BibEntry newEntry, DialogService dialogService) { + super(entry.getCitationKey().map(key -> Localization.lang("Modified entry") + ": '" + key + '\'') + .orElse(Localization.lang("Modified entry"))); this.oldEntry = entry; this.newEntry = newEntry; - - name = entry.getCitationKey() - .map(key -> Localization.lang("Modified entry") + ": '" + key + '\'') - .orElse(Localization.lang("Modified entry")); + this.dialogService = dialogService; } /** @@ -47,13 +53,10 @@ public void setAccepted(boolean accepted) { @Override public void makeChange(BibDatabaseContext database, NamedCompound undoEdit) { - this.description(); // Init dialog to prevent NPE database.getDatabase().removeEntry(oldEntry); - BibEntry mergedEntry = threeWayMergeView.getMergedEntry(); - mergedEntry.setId(oldEntry.getId()); // Keep ID - database.getDatabase().insertEntry(mergedEntry); + database.getDatabase().insertEntry(newEntry); undoEdit.addEdit(new UndoableInsertEntries(database.getDatabase(), oldEntry)); - undoEdit.addEdit(new UndoableInsertEntries(database.getDatabase(), mergedEntry)); + undoEdit.addEdit(new UndoableInsertEntries(database.getDatabase(), newEntry)); } @Override @@ -62,11 +65,23 @@ public Node description() { threeWayMergeView.selectLeftEntryValues(); threeWayMergeView.showDiff(new ShowDiffConfig(ThreeWayMergeToolbar.DiffView.SPLIT, DiffHighlighter.DiffMethod.WORDS)); VBox container = new VBox(10); - Label header = new Label(name); + Label header = new Label(getName()); header.getStyleClass().add("sectionHeader"); container.getChildren().add(header); container.getChildren().add(threeWayMergeView); VBox.setMargin(threeWayMergeView, new Insets(5, 5, 5, 5)); return container; } + + @Override + public boolean hasAdvancedMergeDialog() { + return true; + } + + @Override + public Optional openAdvancedMergeDialog() { + MergeEntriesDialog mergeEntriesDialog = new MergeEntriesDialog(oldEntry, newEntry); + return dialogService.showCustomDialogAndWait(mergeEntriesDialog) + .map(res -> new MergeTwoEntriesAction(res, null, null)); + } } diff --git a/src/main/java/org/jabref/gui/collab/EntryDeleteChangeViewModel.java b/src/main/java/org/jabref/gui/collab/EntryDeleteChangeViewModel.java index f30b6bda14a..3ccf47f8fc8 100644 --- a/src/main/java/org/jabref/gui/collab/EntryDeleteChangeViewModel.java +++ b/src/main/java/org/jabref/gui/collab/EntryDeleteChangeViewModel.java @@ -20,11 +20,9 @@ class EntryDeleteChangeViewModel extends DatabaseChangeViewModel { private final BibEntry entry; public EntryDeleteChangeViewModel(BibEntry entry) { - super(Localization.lang("Deleted entry")); - - this.name = entry.getCitationKey() - .map(key -> Localization.lang("Deleted entry") + ": '" + key + '\'') - .orElse(Localization.lang("Deleted entry")); + super(entry.getCitationKey() + .map(key -> Localization.lang("Deleted entry") + ": '" + key + '\'') + .orElse(Localization.lang("Deleted entry"))); this.entry = entry; } @@ -37,6 +35,7 @@ public void makeChange(BibDatabaseContext database, NamedCompound undoEdit) { @Override public Node description() { PreviewViewer previewViewer = new PreviewViewer(new BibDatabaseContext(), JabRefGUI.getMainFrame().getDialogService(), Globals.stateManager, Globals.getThemeManager()); + previewViewer.setLayout(Globals.prefs.getPreviewPreferences().getSelectedPreviewLayout()); previewViewer.setEntry(entry); return previewViewer; } diff --git a/src/main/java/org/jabref/gui/collab/ExternalChangesResolverDialog.fxml b/src/main/java/org/jabref/gui/collab/ExternalChangesResolverDialog.fxml new file mode 100644 index 00000000000..20e9f334412 --- /dev/null +++ b/src/main/java/org/jabref/gui/collab/ExternalChangesResolverDialog.fxml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + +