Skip to content
Snippets Groups Projects
Commit 1567c1b9 authored by tobias's avatar tobias
Browse files

Merge branch 'dev-5-0-1'

parents 7a1c185b c5e8b67a
Branches
Tags
No related merge requests found
name: PlayWall
version: 5.0.1
build: 31
build: 32
identifier: de.tobias.playpad
main: de.tobias.playpad.PlayPadMain
author: Tobias Ullerich
......
......@@ -91,6 +91,11 @@ public class MappingList extends ArrayList<Mapping> {
if (activeMapping != null)
rootElement.addAttribute(ACTIVE_ATTR, activeMapping.toString());
if (Files.notExists(path)) {
Files.createDirectories(path.getParent());
Files.createFile(path);
}
XMLHandler<Mapping> handler = new XMLHandler<>(rootElement);
handler.saveElements(MAPPING, this, new MappingSerializer());
XMLHandler.save(path, document);
......
......@@ -24,12 +24,12 @@ public class ActionsPluginUpdater implements Updatable {
@Override
public int getCurrentBuild() {
return 3;
return 4;
}
@Override
public String getCurrentVersion() {
return "3.0";
return "3.1";
}
@Override
......
......@@ -24,12 +24,12 @@ public class AwakePluginUpdater implements Updatable {
@Override
public int getCurrentBuild() {
return 2;
return 3;
}
@Override
public String getCurrentVersion() {
return "2.0";
return "2.1";
}
@Override
......
......@@ -24,12 +24,12 @@ public class EqualizerPluginUpdater implements Updatable {
@Override
public int getCurrentBuild() {
return 4;
return 5;
}
@Override
public String getCurrentVersion() {
return "4.0";
return "4.1";
}
@Override
......
......@@ -24,12 +24,12 @@ public class LaunchPadPluginUpdater implements Updatable {
@Override
public int getCurrentBuild() {
return 3;
return 4;
}
@Override
public String getCurrentVersion() {
return "3.0";
return "3.1";
}
@Override
......
......@@ -24,12 +24,12 @@ public class MediaPluginUpdater implements Updatable {
@Override
public int getCurrentBuild() {
return 5;
return 6;
}
@Override
public String getCurrentVersion() {
return "4.1";
return "4.2";
}
@Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment