You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .github/ghprcomment.yml
+3-3
Original file line number
Diff line number
Diff line change
@@ -9,8 +9,8 @@
9
9
message: >
10
10
Your code does not compile.
11
11
Please ensure your changes compile successfully before pushing changes.
12
-
13
-
12
+
13
+
14
14
To verify compilation locally, run `./gradlew build` or try running JabRef.
15
15
- jobName: 'Conflicts with target branch'
16
16
message: >
@@ -64,7 +64,7 @@
64
64
Force pushing is a very bad practice when working together on a project (mainly because it is [not supported well by GitHub itself](https://github.com/orgs/community/discussions/3478)).
65
65
Commits are lost and comments on commits lose their context, thus making it harder to review changes.
66
66
At the end, all commits will be [squashed](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/about-pull-request-merges#squash-and-merge-your-commits) anyway before being merged into the `main` branch.
Copy file name to clipboardexpand all lines: CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,7 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv
82
82
- We fixed an issue where JabRef displayed an incorrect deletion notification when canceling entry deletion [#12645](https://github.com/JabRef/jabref/issues/12645)
83
83
- We fixed an issue where JabRef displayed an incorrect deletion notification when canceling entry deletion. [#12645](https://github.com/JabRef/jabref/issues/12645)
84
84
- We fixed an issue where an exception would occur when running abbreviate journals for multiple entries. [#12634](https://github.com/JabRef/jabref/issues/12634)
85
+
- We fixed an issue where JabRef displayed dropdown triangle in wrong place in "Search for unlinked local files" dialog [#12713](https://github.com/JabRef/jabref/issues/12713)
// Already imported files should not be re-added at a second click on "Import". Therefore, all imported files are unchecked.
274
276
unlinkedFilesList.getCheckModel().clearChecks();
277
+
278
+
// JavaFX does not re-render everything necessary after the file import, and hence it ends up with some misalignment (see https://github.com/JabRef/jabref/issues/12713). Thus, we remove and add the CSS property to force it to re-render.
0 commit comments