Skip to content

Commit 8078ff8

Browse files
committed
Release version update
1 parent 9cd0db0 commit 8078ff8

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

src/main/java/com/flop/resttester/state/RestTesterStateService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ public void loadState(@NotNull RestTesterGlobalState state) {
7575

7676
if (state.version == SAVE_STATE_VERSION) {
7777
this.loadEnvFromStateVersion2(state.environmentState, state.selectedEnvironment);
78-
} else if (state.version == 1) {
78+
} else if (state.version == 1 || state.version == -1) {
7979
this.loadEnvFromStateVersion1(state.authState, state.requestState, state.variablesState);
8080
} else {
81-
RestTesterNotifier.notifyError(null, "Incompatible rest tester state version: Expected version 2 or 1 and got " + state.version);
81+
RestTesterNotifier.notifyError(null, "Incompatible rest tester state version: Expected version 2, 1 or -1 and got " + state.version);
8282
}
8383

8484
this.validateSSL = state.validateSSL;

src/main/resources/META-INF/plugin.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@
4040
<h3>2.0.0 New Features</h3>
4141
<ul>
4242
<li>Added support for multiple environments.</li>
43+
<li>Added support for base url.</li>
44+
<li>Added support for default authentication profile.</li>
4345
<li>Added basic <a href="https://github.com/ChargeIn/RestTester">documentation</a></li>
4446
</ul>
4547
@@ -56,7 +58,7 @@
5658
<h3>1.4.1 - 1.4.4 Bug Fixes</h3>
5759
<ul>
5860
<li>Added support for Intellij 24.3</li>
59-
<li>Fix start up error for Intellij versions 2023 and lower</li>
61+
<li>Fix start up error for Intellij versions 2023 and lower.</li>
6062
<li>Fix background color of main input for Intellij 24.x.</li>
6163
<li>Fix incorrect tooltips.</li>
6264
<li>Dangling slashes are no longer removed from the url.</li>

0 commit comments

Comments
 (0)