Skip to content

Commit

Permalink
v2.1.0-0.9 version update
Browse files Browse the repository at this point in the history
  • Loading branch information
QuasiStellar committed Jul 29, 2023
1 parent 63790a7 commit 0ab999c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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 = 'Custom Pixel Dungeon'
appPackageName = 'com.qsr.customspd'

appVersionCode = 8
appVersionName = '2.1.0-0.8'
appVersionCode = 9
appVersionName = '2.1.0-0.9'

appJavaCompatibility = JavaVersion.VERSION_1_8

Expand Down
2 changes: 1 addition & 1 deletion core/src/main/assets/messages/scenes/scenes.properties
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ scenes.titlescene$changesbutton.update=Go to Update Page
scenes.titlescene$changesbutton.changes=Current Changes Screen

scenes.welcomescene.update_intro=Custom Pixel Dungeon has been updated!
scenes.welcomescene.update_msg=This update transfers features and bugfixes from SPD 2.1 and fixes some minor bugs specific to Custom!
scenes.welcomescene.update_msg=This update introduces custom mob enchantment. Now your custom mobs can utilize weapon enchantments and curses (and even several at once!) for their attacks.
scenes.welcomescene.patch_intro=Custom Pixel Dungeon has been patched!
scenes.welcomescene.patch_bugfixes=This patch contains bugfixes.
scenes.welcomescene.patch_translations=This patch contains translation updates.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
public class ShatteredPixelDungeon extends Game {

public static final int LAST_SUPPORTED_SAVES_VERSION = 1;
public static final int v2_1_0_0_8 = 8;
public static final int v2_1_0_0_9 = 9;

public static TileMapCompiler tileMapCompiler;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@

public class WelcomeScene extends PixelScene {

private static final int LATEST_UPDATE = ShatteredPixelDungeon.v2_1_0_0_8;
private static final int LATEST_UPDATE = ShatteredPixelDungeon.v2_1_0_0_9;

//used so that the game does not keep showing the window forever if cleaning fails
private static boolean triedCleaningTemp = false;
Expand Down

0 comments on commit 0ab999c

Please sign in to comment.