Skip to content

Commit 1ebe802

Browse files
rdsingh13Ramandeep SinghSiedlerchr
authored
improve notification toast when saving a file #9803 (#10828)
* improve notification toast * add 2000 entries check fix changelog for ms office export --------- Co-authored-by: Ramandeep Singh <[email protected]> Co-authored-by: Siedlerchr <[email protected]>
1 parent a69ddee commit 1ebe802

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv
2020

2121
### Changed
2222

23-
- We Added a test case MSBibExportFormatFilesTest to ensure proper functioning of the MSBib export format.[#10864] (`https://github.com/JabRef/jabref/pull/10864/commits`)
2423
- The "Automatically open folders of attached files" preference default status has been changed to enabled on Windows. [koppor#56](https://github.com/koppor/jabref/issues/56)
2524
- The Custom export format now uses the custom DOI base URI in the preferences for the `DOICheck`, if activated [forum#4084](https://discourse.jabref.org/t/export-html-disregards-custom-doi-base-uri/4084)
2625
- The index directories for full text search have now more readable names to increase debugging possibilities using Apache Lucense's Lurk. [#10193](https://github.com/JabRef/jabref/issues/10193)
@@ -29,6 +28,8 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv
2928
- Sub libraries based on `aux` file can now also be generated if some citations are not found library. [#10775](https://github.com/JabRef/jabref/pull/10775)
3029
- We rearranged the tab order in the entry editor and renamed the "Scite Tab" to "Citation information". [#10821](https://github.com/JabRef/jabref/issues/10821)
3130
- We made the command "Push to TexShop" more robust to allow cite commands with a character before the first slash [forum#2699](https://discourse.jabref.org/t/push-to-texshop-mac/2699/17?u=siedlerchr)
31+
- We only show the notification "Saving library..." if the library contains more than 2000 entries [#9803](https://github.com/JabRef/jabref/issues/9803)
32+
3233

3334
### Fixed
3435

@@ -40,6 +41,7 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv
4041
- We fixed an issue where the duplicate check did not take umlauts or other LaTeX-encoded characters into account. [#10744](https://github.com/JabRef/jabref/pull/10744)
4142
- We fixed the colors of the icon on hover for unset special fields. [#10431](https://github.com/JabRef/jabref/issues/10431)
4243
- We fixed an issue where the CrossRef field did not work if autocompletion was disabled [#8145](https://github.com/JabRef/jabref/issues/8145)
44+
- We fixed an issue where exporting`@electronic` and `@online` entry types to the Office XMl would duplicate the field `title` [#10807](https://github.com/JabRef/jabref/issues/10807)
4345

4446
### Removed
4547

src/main/java/org/jabref/gui/exporter/SaveDatabaseAction.java

+2-5
Original file line numberDiff line numberDiff line change
@@ -206,17 +206,14 @@ private boolean save(BibDatabaseContext bibDatabaseContext, SaveDatabaseMode mod
206206
Optional<Path> databasePath = bibDatabaseContext.getDatabasePath();
207207
if (databasePath.isEmpty()) {
208208
Optional<Path> savePath = askForSavePath();
209-
if (savePath.isEmpty()) {
210-
return false;
211-
}
212-
return saveAs(savePath.get(), mode);
209+
return savePath.filter(path -> saveAs(path, mode)).isPresent();
213210
}
214211

215212
return save(databasePath.get(), mode);
216213
}
217214

218215
private boolean save(Path targetPath, SaveDatabaseMode mode) {
219-
if (mode == SaveDatabaseMode.NORMAL) {
216+
if (mode == SaveDatabaseMode.NORMAL && libraryTab.getBibDatabaseContext().getEntries().size() > 2_000) {
220217
dialogService.notify("%s...".formatted(Localization.lang("Saving library")));
221218
}
222219

0 commit comments

Comments
 (0)