-
-
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/master' into addInfoPlist
* upstream/master: (287 commits) Bump junit-vintage-engine from 5.6.1 to 5.6.2 (#6276) Number of items found in ImportEntriesDialog (#6248) Fix dependency label Bump flexmark-ext-gfm-strikethrough from 0.61.0 to 0.61.6 (#6273) Bump unirest-java from 3.7.01 to 3.7.02 (#6275) Bump junit-platform-launcher from 1.6.1 to 1.6.2 (#6279) Bump flexmark-ext-gfm-tasklist from 0.61.0 to 0.61.6 (#6278) Bump junit-jupiter from 5.6.1 to 5.6.2 (#6274) Bump flexmark from 0.61.0 to 0.61.6 (#6280) Bump classgraph from 4.8.68 to 4.8.69 (#6277) Bump org.beryx.jlink from 2.17.4 to 2.17.5 (#6281) Improve performance (#6270) Improve calculation of matched entries upon change (#6268) Fix sort by priority (#6222) (#6265) Squashed 'src/main/resources/csl-styles/' changes from 88726cb..db54e56 Use https everywhere Entry editor: Add more tooltips and wrap tooltips if necessary (#6239) JDK14 switch - and checkstyle skipping (#6250) Bump postgresql from 42.2.11 to 42.2.12 (#6254) Bump unirest-java from 3.7.00 to 3.7.01 (#6253) ...
- Loading branch information
Showing
568 changed files
with
29,471 additions
and
8,042 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
<!-- | ||
Describe the changes you have made here: what, why, ... | ||
Link issues by using the following pattern: #333. | ||
If you fixed a koppor issue, link it with following pattern: [koppor#47](https://github.com/koppor/jabref/issues/47). | ||
Link issues that are fixed, e.g. "Fixes #333". | ||
If you fixed a koppor issue, link it, e.g. "Fixes https://github.com/koppor/jabref/issues/47". | ||
The title of the PR must not reference an issue, because GitHub does not support autolinking there. | ||
--> | ||
|
||
|
||
<!-- | ||
- All items with `[ ]` are still a TODO. | ||
- All items checked with `[x]` are done. | ||
- Remove items not applicable | ||
- Go through the list below. If a task has been completed, mark it done by using `[x]`. | ||
- Please don't remove any items, just leave them unchecked if they are not applicable. | ||
--> | ||
|
||
- [ ] Change in CHANGELOG.md described (if applicable) | ||
- [ ] Tests created for changes (if applicable) | ||
- [ ] Manually tested changed features in running JabRef (always required) | ||
- [ ] Screenshots added in PR description (for bigger UI changes) | ||
- [ ] [Checked documentation](https://docs.jabref.org/): Is the information available and up to date? If not: Issue created at <https://github.com/JabRef/user-documentation/issues>. | ||
- [ ] Screenshots added in PR description (for UI changes) | ||
- [ ] [Checked documentation](https://docs.jabref.org/): Is the information available and up to date? If not created an issue at <https://github.com/JabRef/user-documentation/issues> or, even better, submitted a pull request to the documentation repository. |
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 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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Snap | ||
|
||
on: | ||
push: | ||
branches: | ||
- snapcraft | ||
schedule: | ||
# run on each day | ||
- cron: '33 4 * * *' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
name: Create snapcraft image | ||
|
||
steps: | ||
- name: Check secrets presence | ||
id: checksecrets | ||
shell: bash | ||
run: | | ||
if [ "SNAPCRAFT_LOGIN_FILE" == "" ]; then | ||
echo ::set-output name=secretspresent::false | ||
else | ||
echo ::set-output name=secretspresent::true | ||
fi | ||
env: | ||
SNAPCRAFT_LOGIN_FILE: ${{ secrets.SNAPCRAFT_LOGIN_FILE }} | ||
- name: Checkout source | ||
uses: actions/checkout@v2 | ||
# The image relies on https://builds.jabref.org/master/JabRef-5.0-portable_linux.tar.gz^ | ||
# See snap/snapcraft.yml for details | ||
- name: Build snap (1) Run build | ||
uses: jhenstridge/snapcraft-build-action@v1 | ||
id: snapcraft | ||
- name: Build snap (2) Upload snap | ||
if: ${{ steps.checksecrets.outputs.secretspresent }} | ||
uses: jhenstridge/snapcraft-publish-action@v1 | ||
with: | ||
store_login: ${{ secrets.SNAPCRAFT_LOGIN_FILE }} | ||
snap: ${{ steps.snapcraft.outputs.snap }} | ||
release: edge |
Oops, something went wrong.