diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v3_X_Changes.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v3_X_Changes.java index 277d6a410..bc8c5fc25 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v3_X_Changes.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v3_X_Changes.java @@ -86,6 +86,10 @@ public class v3_X_Changes { changes.hardlight(Window.TITLE_COLOR); changeInfos.add(changes); + changes = new ChangeInfo("", false, null); + changes.hardlight(Window.TITLE_COLOR); + changeInfos.add(changes); + changes = new ChangeInfo("BETA-1.1", false, null); changes.hardlight(Window.TITLE_COLOR); changeInfos.add(changes); diff --git a/services/updates/githubUpdates/src/main/java/com/shatteredpixel/shatteredpixeldungeon/services/updates/GitHubUpdates.java b/services/updates/githubUpdates/src/main/java/com/shatteredpixel/shatteredpixeldungeon/services/updates/GitHubUpdates.java index 0951e6269..d99a68513 100644 --- a/services/updates/githubUpdates/src/main/java/com/shatteredpixel/shatteredpixeldungeon/services/updates/GitHubUpdates.java +++ b/services/updates/githubUpdates/src/main/java/com/shatteredpixel/shatteredpixeldungeon/services/updates/GitHubUpdates.java @@ -68,7 +68,7 @@ public class GitHubUpdates extends UpdateService { public void handleHttpResponse(Net.HttpResponse httpResponse) { try { Bundle latestRelease = null; - int latestVersionCode = Game.versionCode-10; + int latestVersionCode = Game.versionCode; for (Bundle b : Bundle.read( httpResponse.getResultAsStream() ).getBundleArray()){ Matcher m = versionCodePattern.matcher(b.getString("body"));