Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit acfc3e0f authored by Joe Steele's avatar Joe Steele
Browse files

Fix settings versioning after merging autofitWidth branch.

Versioning on master was updated subsequent to the creation
of the branch.
parent cc62e533
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -223,7 +223,7 @@ public class GlobalSettings {
                new V(25, new BooleanSetting(true))
            ));
        s.put("autofitWidth", Settings.versions(
                new V(27, new BooleanSetting(true))
                new V(28, new BooleanSetting(true))
            ));

        SETTINGS = Collections.unmodifiableMap(s);
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ public class Settings {
     *
     * @see SettingsExporter
     */
    public static final int VERSION = 27;
    public static final int VERSION = 28;

    public static Map<String, Object> validate(int version, Map<String,
            TreeMap<Integer, SettingsDescription>> settings,