diff --git a/build.gradle b/build.gradle index 48b2db06..4d84fe53 100644 --- a/build.gradle +++ b/build.gradle @@ -15,9 +15,9 @@ allprojects { apply plugin: "eclipse" apply plugin: "idea" - version = '0.3.3b' + version = '0.3.5a' ext { - versionCode = 74 + versionCode = 99 appName = 'shattered-pixel-dungeon' appTitle = 'Shattered Pixel Dungeon' appId = 'com.shatteredpixel.shatteredpixeldungeon' diff --git a/desktop/src/com/watabou/pd/desktop/DesktopLauncher.java b/desktop/src/com/watabou/pd/desktop/DesktopLauncher.java index a22206ad..5438bc0b 100644 --- a/desktop/src/com/watabou/pd/desktop/DesktopLauncher.java +++ b/desktop/src/com/watabou/pd/desktop/DesktopLauncher.java @@ -25,25 +25,23 @@ import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration; import com.badlogic.gdx.backends.lwjgl.LwjglPreferences; import com.badlogic.gdx.utils.SharedLibraryLoader; -import com.watabou.input.NoosaInputProcessor; -import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon; import com.shatteredpixel.shatteredpixeldungeon.Preferences; +import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon; +import com.watabou.input.NoosaInputProcessor; import com.watabou.utils.PDPlatformSupport; -import org.lwjgl.opengl.Display; - public class DesktopLauncher { public static void main (String[] arg) { String version = DesktopLauncher.class.getPackage().getSpecificationVersion(); if (version == null) { - version = "0.3.3b"; + version = "0.3.5a"; } int versionCode; try { versionCode = Integer.parseInt(DesktopLauncher.class.getPackage().getImplementationVersion()); } catch (NumberFormatException e) { - versionCode = 74; + versionCode = 99; } LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();