Skip to content

Commit 064b1bf

Browse files
authored
Merge branch 'JabRef:main' into fix-for-issue-14082
2 parents 198ea35 + 14f9867 commit 064b1bf

File tree

184 files changed

+263
-218
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+263
-218
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv
159159
- We fixed an issue where the "Applications to push entries to" list in the preferences was not sorted alphabetically. [#14058](https://github.com/JabRef/jabref/issues/14058)
160160
- We fixed an issue where notice text in AI chat was not automatically refreshed when the user changed preferences.[#13855](https://github.com/JabRef/jabref/issues/13855)
161161
- We fixed an issue where the user could add custom entry types with spaces in their names. [#14088](https://github.com/JabRef/jabref/issues/14088)
162+
- We fixed various issues that triggered `IndexOutOfBoundsException`s, when editing entries. [#8012](https://github.com/JabRef/jabref/issues/8012), [#8826](https://github.com/JabRef/jabref/issues/8826), [#8217](https://github.com/JabRef/jabref/issues/8217), [#8281](https://github.com/JabRef/jabref/issues/8281)
162163

163164
### Removed
164165

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
// This is the behavior when applied in the root project (https://docs.openrewrite.org/reference/gradle-plugin-configuration#multi-module-gradle-projects)
1111

1212
dependencies {
13-
rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:3.16.0"))
13+
rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:3.17.0"))
1414
rewrite("org.openrewrite.recipe:rewrite-static-analysis")
1515
rewrite("org.openrewrite.recipe:rewrite-logging-frameworks")
1616
rewrite("org.openrewrite.recipe:rewrite-testing-frameworks")

jabgui/src/main/java/org/jabref/cli/ArgumentProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import org.jabref.logic.l10n.Localization;
1010
import org.jabref.logic.shared.prefs.SharedDatabasePreferences;
1111
import org.jabref.logic.util.BuildInfo;
12-
import org.jabref.model.strings.StringUtil;
12+
import org.jabref.logic.util.strings.StringUtil;
1313

1414
import org.slf4j.Logger;
1515
import org.slf4j.LoggerFactory;

jabgui/src/main/java/org/jabref/gui/JabRefGUI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@
5252
import org.jabref.logic.util.FallbackExceptionHandler;
5353
import org.jabref.logic.util.HeadlessExecutorService;
5454
import org.jabref.logic.util.TaskExecutor;
55+
import org.jabref.logic.util.strings.StringUtil;
5556
import org.jabref.model.entry.BibEntryTypesManager;
56-
import org.jabref.model.strings.StringUtil;
5757
import org.jabref.model.util.FileUpdateMonitor;
5858

5959
import com.airhacks.afterburner.injection.Injector;

jabgui/src/main/java/org/jabref/gui/actions/ActionFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import javafx.scene.control.Tooltip;
1515

1616
import org.jabref.gui.keyboard.KeyBindingRepository;
17-
import org.jabref.model.strings.StringUtil;
17+
import org.jabref.logic.util.strings.StringUtil;
1818

1919
import com.airhacks.afterburner.injection.Injector;
2020
import com.sun.javafx.scene.control.ContextMenuContent;

jabgui/src/main/java/org/jabref/gui/autocompleter/BibEntrySuggestionProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
import java.util.stream.Stream;
55

66
import org.jabref.logic.bibtex.comparator.EntryComparator;
7+
import org.jabref.logic.util.strings.StringUtil;
78
import org.jabref.model.database.BibDatabase;
89
import org.jabref.model.entry.BibEntry;
910
import org.jabref.model.entry.field.InternalField;
10-
import org.jabref.model.strings.StringUtil;
1111

1212
import com.google.common.base.Equivalence;
1313
import org.controlsfx.control.textfield.AutoCompletionBinding;

jabgui/src/main/java/org/jabref/gui/autocompleter/PersonNameSuggestionProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
import java.util.Map;
77
import java.util.stream.Stream;
88

9+
import org.jabref.logic.util.strings.StringUtil;
910
import org.jabref.model.database.BibDatabase;
1011
import org.jabref.model.entry.Author;
1112
import org.jabref.model.entry.AuthorList;
1213
import org.jabref.model.entry.BibEntry;
1314
import org.jabref.model.entry.field.Field;
14-
import org.jabref.model.strings.StringUtil;
1515

1616
import com.google.common.base.Equivalence;
1717
import org.controlsfx.control.textfield.AutoCompletionBinding;

jabgui/src/main/java/org/jabref/gui/autocompleter/StringSuggestionProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import java.util.Comparator;
44
import java.util.stream.Stream;
55

6-
import org.jabref.model.strings.StringUtil;
6+
import org.jabref.logic.util.strings.StringUtil;
77

88
import com.google.common.base.Equivalence;
99
import org.controlsfx.control.textfield.AutoCompletionBinding;

jabgui/src/main/java/org/jabref/gui/collab/entrychange/PreviewWithSourceTab.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
import org.jabref.logic.exporter.BibWriter;
1515
import org.jabref.logic.l10n.Localization;
1616
import org.jabref.logic.os.OS;
17+
import org.jabref.logic.util.strings.StringUtil;
1718
import org.jabref.model.database.BibDatabaseContext;
1819
import org.jabref.model.database.BibDatabaseMode;
1920
import org.jabref.model.entry.BibEntry;
2021
import org.jabref.model.entry.BibEntryTypesManager;
21-
import org.jabref.model.strings.StringUtil;
2222

2323
import org.fxmisc.richtext.CodeArea;
2424
import org.slf4j.Logger;

jabgui/src/main/java/org/jabref/gui/collab/preamblechange/PreambleChangeDetailsView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import org.jabref.gui.collab.DatabaseChangeDetailsView;
77
import org.jabref.logic.bibtex.comparator.PreambleDiff;
88
import org.jabref.logic.l10n.Localization;
9-
import org.jabref.model.strings.StringUtil;
9+
import org.jabref.logic.util.strings.StringUtil;
1010

1111
public final class PreambleChangeDetailsView extends DatabaseChangeDetailsView {
1212

0 commit comments

Comments
 (0)