Skip to content

Commit

Permalink
v0.1.5: Nothing updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Tianscar committed Apr 2, 2023
1 parent 427e0f4 commit fe14ae3
Show file tree
Hide file tree
Showing 2 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 @@ -13,8 +13,8 @@ allprojects {
ext {
appPackageName = 'com.tianscar.carbonizedpixeldungeon'

appVersionCode = 104
appVersionName = '0.1.4'
appVersionCode = 105
appVersionName = '0.1.5'

appJavaCompatibility = JavaVersion.VERSION_1_8

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,15 +154,16 @@ protected void onClick() {
if (previousVersion == 0 || PDSettings.intro()) {
message = Messages.get(this, "welcome_msg");
} else if (previousVersion <= CarbonizedPixelDungeon.versionCode) {
if (previousVersion < LATEST_UPDATE){
if (previousVersion < LATEST_UPDATE) {
message = Messages.get(this, "update_intro");
message += "\n\n" + Messages.get(this, "update_msg");
} else {
//TODO: change the messages here in accordance with the type of patch.
message = Messages.get(this, "patch_intro");
message += "\n";
message += "null";
//message += "\n" + Messages.get(this, "patch_balance");
message += "\n" + Messages.get(this, "patch_bugfixes");
//message += "\n" + Messages.get(this, "patch_bugfixes");
//message += "\n" + Messages.get(this, "patch_contents");
//message += "\n" + Messages.get(this, "patch_translations");

Expand Down

0 comments on commit fe14ae3

Please sign in to comment.