Skip to content

Commit

Permalink
1.0.7: finale
Browse files Browse the repository at this point in the history
  • Loading branch information
TrashboxBobylev committed Sep 13, 2022
1 parent e15de6e commit 5692d55
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ allprojects {
appPackageName = 'com.trashboxbobylev.shorterpd'

appVersionCode = 622
appVersionName = 'Short-1.0.6'
appVersionName = 'Short-1.0.7'

appJavaCompatibility = JavaVersion.VERSION_1_8

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ public class ShatteredPixelDungeon extends Game {

public static final int v1_0_3 = 574;
public static final int v1_1_2 = 588;
public static final int v1_2_3 = 628;
public static final int v1_3_0 = 642;
public static final int v1_2_3 = 621;
public static final int v1_3_0 = 622;

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.6", true, "");
ChangeInfo 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",
"_-_ Released September 13th, 2022"));
changes.addButton(new ChangeButton(Icons.get(Icons.SHPX), "ShatteredPD",
"_-_ Ported everything from Shattered 1.3.2."));

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

0 comments on commit 5692d55

Please sign in to comment.