Skip to content

Commit

Permalink
v0.4.14
Browse files Browse the repository at this point in the history
  • Loading branch information
Smujb committed Feb 12, 2021
1 parent c08b07b commit bac3615
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ allprojects {
appName = 'Cursed Pixel Dungeon'
appPackageName = 'com.smujamesb.cursedpixeldungeon'

appVersionCode = 52
appVersionName = '0.4.13b'
appVersionCode = 53
appVersionName = '0.4.14'
appJavaCompatibility = JavaVersion.VERSION_1_8

appAndroidCompileSDK = 29
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 @@ -100,7 +100,7 @@ scenes.titlescene.discord_button=JOIN

scenes.welcomescene.welcome_msg=Cursed Pixel Dungeon is a mod of Shattered Pixel Dungeon, heavily inspired by Sprouted Pixel Dungeon and the Zelda games. Has a focus on story and grinding.\n\nHappy Dungeoneering!
scenes.welcomescene.update_intro=Cursed Pixel Dungeon has been updated!
scenes.welcomescene.update_msg=v0.4.13 - Many new weapons, boss refights
scenes.welcomescene.update_msg=v0.4.14 - New weapon, NPC dialog, bugfixes
scenes.welcomescene.patch_intro=Cursed Pixel Dungeon has been patched!
scenes.welcomescene.patch=v0.4.13b - Fixes to progression-related bugs
scenes.welcomescene.patch_translations=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ public class CPDGame extends Game {
public static final int v0_4_11 = 48;
public static final int v0_4_12 = 49;
public static final int v0_4_13 = 50;
public static final int v0_4_14 = 53;

public CPDGame(PlatformSupport platform ) {
super( sceneClass == null ? WelcomeScene.class : sceneClass, platform );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

public class WelcomeScene extends PixelScene {

public static int LATEST_UPDATE = CPDGame.v0_4_13;
public static int LATEST_UPDATE = CPDGame.v0_4_14;

@Override
public void create() {
Expand Down

0 comments on commit bac3615

Please sign in to comment.