Skip to content

Commit 87e4c96

Browse files
committed
Increment version number
1 parent 0cfa63a commit 87e4c96

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/coreyd97/stepper/Globals.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
public class Globals {
44
public static final String EXTENSION_NAME = "Stepper";
5-
public static final double VERSION = 1.4;
5+
public static final String VERSION = "1.4.1";
66
public static final String PREF_STEP_SEQUENCES = "sequences";
77
public static final String PREF_PREV_VERSION = "previousVersion";
88
public static final String PREF_VARS_IN_ALL_TOOLS = "enableVarsInAll";

src/main/java/com/coreyd97/stepper/preferences/StepperPreferenceFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ protected void registerTypeAdapters() {
5353
@Override
5454
protected void registerSettings() {
5555
prefs.registerSetting(Globals.PREF_STEP_SEQUENCES, new TypeToken<ArrayList<StepSequence>>(){}.getType(), Preferences.Visibility.PROJECT);
56-
prefs.registerSetting(Globals.PREF_PREV_VERSION, Double.class, Globals.VERSION, Preferences.Visibility.GLOBAL);
56+
prefs.registerSetting(Globals.PREF_PREV_VERSION, String.class, Globals.VERSION, Preferences.Visibility.GLOBAL);
5757
prefs.registerSetting(Globals.PREF_VARS_IN_ALL_TOOLS, Boolean.class, true, Preferences.Visibility.GLOBAL);
5858
prefs.registerSetting(Globals.PREF_VARS_IN_EXTENDER, Boolean.class, true, Preferences.Visibility.GLOBAL);
5959
prefs.registerSetting(Globals.PREF_VARS_IN_SEQUENCER, Boolean.class, true, Preferences.Visibility.GLOBAL);

0 commit comments

Comments
 (0)