From 50875f9673aa445f0a158dbe15232bb65639b052 Mon Sep 17 00:00:00 2001 From: Linus Dietz Date: Sun, 11 Nov 2018 14:54:54 +0100 Subject: [PATCH 1/6] Update archunit from 0.9.1 -> 0.9.2 --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 24665d8c2be..c24ad34130e 100644 --- a/build.gradle +++ b/build.gradle @@ -174,8 +174,8 @@ dependencies { testCompile 'org.reflections:reflections:0.9.11' testCompile 'org.xmlunit:xmlunit-core:2.6.2' testCompile 'org.xmlunit:xmlunit-matchers:2.6.2' - testCompile 'com.tngtech.archunit:archunit-junit5-api:0.9.1' - testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.9.1' + testCompile 'com.tngtech.archunit:archunit-junit5-api:0.9.2' + testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.9.2' testCompile "org.testfx:testfx-core:4.0.+" testCompile "org.testfx:testfx-junit5:4.0.+" From 38a91e102e1fe8e2f7d26fbeff777b9f5f88ebdd Mon Sep 17 00:00:00 2001 From: Ali_Zhagparov Date: Thu, 15 Nov 2018 09:51:46 +0600 Subject: [PATCH 2/6] fix save button --- .../java/org/jabref/gui/exporter/SaveDatabaseAction.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/java/org/jabref/gui/exporter/SaveDatabaseAction.java b/src/main/java/org/jabref/gui/exporter/SaveDatabaseAction.java index 60d43a613cb..ecd1d7e6a2f 100644 --- a/src/main/java/org/jabref/gui/exporter/SaveDatabaseAction.java +++ b/src/main/java/org/jabref/gui/exporter/SaveDatabaseAction.java @@ -163,7 +163,14 @@ public boolean save() { panel.frame().output(Localization.lang("Saving library") + "..."); panel.setSaving(true); return doSave(); + } else { + Optional savePath = getSavePath(); + if (savePath.isPresent()) { + saveAs(savePath.get()); + return true; + } } + return false; } From 7412ee5baee876c5f2205f0e226122449f438b37 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Thu, 15 Nov 2018 09:26:39 +0100 Subject: [PATCH 3/6] Bump applicationinsights-logging-log4j2 from 2.2.0 to 2.2.1 (#4487) Bumps [applicationinsights-logging-log4j2](https://github.com/Microsoft/ApplicationInsights-Java) from 2.2.0 to 2.2.1. - [Release notes](https://github.com/Microsoft/ApplicationInsights-Java/releases) - [Changelog](https://github.com/Microsoft/ApplicationInsights-Java/blob/master/CHANGELOG.md) - [Commits](https://github.com/Microsoft/ApplicationInsights-Java/compare/2.2.0...2.2.1) Signed-off-by: dependabot[bot] --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index c24ad34130e..e4262ceb102 100644 --- a/build.gradle +++ b/build.gradle @@ -158,7 +158,7 @@ dependencies { errorproneJavac 'com.google.errorprone:javac:1.8.0-u20' compile group: 'com.microsoft.azure', name: 'applicationinsights-core', version: '2.2.0' - compile group: 'com.microsoft.azure', name: 'applicationinsights-logging-log4j2', version: '2.2.0' + compile group: 'com.microsoft.azure', name: 'applicationinsights-logging-log4j2', version: '2.2.1' testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1' testCompile 'org.junit.jupiter:junit-jupiter-params:5.3.1' From 544a2d55ad91bbadf854681d2a538d38b24a4fce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20S=C3=A1nchez?= <42875859+AndresSan6@users.noreply.github.com> Date: Thu, 15 Nov 2018 04:41:35 -0600 Subject: [PATCH 4/6] Added feature to add server timezone when connecting to shared database (#4483) * Added feature to add server timezone when connecting to shared database * Rolled back to previous version of AUTHORS. When I run the , it added previous users from the computer I am using. --- CHANGELOG.md | 1 + .../gui/shared/SharedDatabaseLoginDialog.fxml | 2 ++ .../gui/shared/SharedDatabaseLoginDialogView.java | 2 ++ .../SharedDatabaseLoginDialogViewModel.java | 5 +++++ .../logic/shared/DBMSConnectionProperties.java | 15 +++++++++++++-- .../shared/prefs/SharedDatabasePreferences.java | 10 ++++++++++ .../shared/DatabaseConnectionProperties.java | 2 ++ src/main/resources/l10n/JabRef_en.properties | 1 + .../jabref/logic/shared/DBMSConnectionTest.java | 2 +- .../org/jabref/logic/shared/TestConnector.java | 6 +++--- 10 files changed, 40 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ace7046089..8da79177b93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ We refer to [GitHub issues](https://github.com/JabRef/jabref/issues) by using `# ## [Unreleased] ### Changed +- Added server timezone parameter when connecting to a shared database. - We updated the dialog for setting up general fields. - URL field formatting is updated. All whitespace chars, located at the beginning/ending of the url, are trimmed automatically - We changed the behavior of the field formatting dialog such that the `bibtexkey` is not changed when formatting all fields or all text fields. diff --git a/src/main/java/org/jabref/gui/shared/SharedDatabaseLoginDialog.fxml b/src/main/java/org/jabref/gui/shared/SharedDatabaseLoginDialog.fxml index c8c3d49729c..30808026c50 100644 --- a/src/main/java/org/jabref/gui/shared/SharedDatabaseLoginDialog.fxml +++ b/src/main/java/org/jabref/gui/shared/SharedDatabaseLoginDialog.fxml @@ -52,6 +52,8 @@