Skip to content

Commit

Permalink
1.0.8: basically a finale
Browse files Browse the repository at this point in the history
  • Loading branch information
TrashboxBobylev committed Oct 5, 2022
1 parent 567b7f6 commit 0e24944
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ allprojects {
appName = 'Shorter Pixel Dungeon'
appPackageName = 'com.trashboxbobylev.shorterpd'

appVersionCode = 622
appVersionName = 'Short-1.0.7'
appVersionCode = 641
appVersionName = 'Short-1.0.8'

appJavaCompatibility = JavaVersion.VERSION_1_8

Expand Down
Binary file modified core/src/main/assets/interfaces/icons.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class ShatteredPixelDungeon extends Game {
public static final int v1_1_2 = 588;
public static final int v1_2_3 = 621;
public static final int v1_3_0 = 622;
public static final int v1_4_0 = 660;
public static final int v1_4_0 = 661;

public ShatteredPixelDungeon( PlatformSupport platform ) {
super( sceneClass == null ? TitleScene.class : sceneClass, platform );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,15 @@
public class v1_X_Changes {

public static void addAllChanges( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("Short-1.0.7", true, "");
ChangeInfo changes = new ChangeInfo("Short-1.0.8", true, "");
changes.hardlight(0xCCCCCC);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHORTER_CHEST), "Developer Commentary",
"_-_ Released October 5th, 2022"));
changes.addButton(new ChangeButton(Icons.get(Icons.SHPX), "ShatteredPD",
"_-_ Ported everything from Shattered 1.4."));

changes = new ChangeInfo("Short-1.0.7", true, "");
changes.hardlight(0xCCCCCC);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHORTER_CHEST), "Developer Commentary",
Expand Down

0 comments on commit 0e24944

Please sign in to comment.