-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into udpatejaxb
* upstream/main: (354 commits) Fix ScienceDirect fetcher (#7684) Refactor NoBibTexFieldCheckerTest to increase mutation coverage (#7697) Update Gradle from 6.8.3 to 7.0 (#7619) Fixes #7305: the RFC fetcher is not compatible with the draftFix for issue 7305 (#7674) Refactoring existing unit tests (#7693) cover boundary cases & add more unit tests (#7694) Bump classgraph from 4.8.104 to 4.8.105 (#7688) Bump java-diff-utils from 4.9 to 4.10 (#7692) Fix arXiv fetcher tests (#7686) Make key for ScienceDirect configurable (#7683) migration of timestamp (#7671) Fix CCSB and DOAJ (#7426) [Bot] Update CSL styles (#7680) MS Office XML: Export month name (#7677) linkfix (#7678) readd fix (#7675) Fix threading cleanup in performSearch (#7672) add missing changelog delete bug fix (#7580) Add more unit tests to three gui classes (#7636) ... # Conflicts: # build.gradle
- Loading branch information
Showing
10,953 changed files
with
46,794 additions
and
16,061 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Help | ||
url: https://discourse.jabref.org/c/help/ | ||
about: Questions and requests for help are handled at https://discourse.jabref.org | ||
- name: Feature requests | ||
url: https://discourse.jabref.org/c/features/ | ||
about: If you are missing an important feature? Let us know! |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
--- | ||
name: Suggestion for improvement | ||
about: Suggest an enhancement | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Gource | ||
|
||
on: | ||
push: | ||
branches: | ||
- gource | ||
schedule: | ||
- cron: '15 3 1 1,4,7,10 *' | ||
|
||
jobs: | ||
action: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 'Checkout' | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Determine dates | ||
id: dates | ||
run: | | ||
echo ::set-output name=start_date::`date -d "$(date +%Y-%m-01) -3 months" +%Y-%m-%d` | ||
echo ::set-output name=stop_date::`date -d "$(date +%Y-%m-01) -1 day" +%Y-%m-%d` | ||
echo ::set-output name=quarter::`date -d "$(date +%Y-%m-01) -1 day" +%Y`-Q$(( ((`date -d "$(date +%Y-%m-01) -1 day" +%m`)-1)/3+1 )) | ||
- name: 'Development history of last quarter' | ||
uses: nbprojekt/gource-action@v1 | ||
with: | ||
gource_title: 'JabRef | more information at contribute.jabref.org' | ||
logo_url: 'https://www.jabref.org/img/JabRef-icon-256.png' | ||
# 5s * 365 / 4 = 7.5min | ||
gource_seconds_per_day: 5 | ||
gource_start_date: ${{ steps.dates.outputs.start_date }} | ||
gource_stop_date: ${{ steps.dates.outputs.stop_date }} | ||
gource_file_filter: csl$ | ||
- name: 'Store video' | ||
run: | | ||
mkdir gource-videos | ||
mv ./gource/gource.mp4 ./gource-videos/jabref-${{ steps.dates.outputs.quarter }}.mp4 | ||
- name: 'Complete development history' | ||
uses: nbprojekt/gource-action@v1 | ||
with: | ||
gource_title: 'JabRef | more information at contribute.jabref.org' | ||
logo_url: 'https://www.jabref.org/img/JabRef-icon-256.png' | ||
# 0.01 leads to a 45 second video for the complete history until end of 2020 | ||
# 0.1 leads to a 8 minute video | ||
gource_seconds_per_day: 0.1 | ||
gource_file_filter: csl$ | ||
- name: 'Store video' | ||
run: | | ||
mv gource/gource.mp4 gource-videos/jabref-complete.mp4 | ||
- name: 'Upload gource video' | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Gource | ||
path: ./gource-videos/ | ||
retention-days: 80 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.