diff --git a/build.gradle b/build.gradle index 3d980189e4..7a633868a7 100644 --- a/build.gradle +++ b/build.gradle @@ -17,8 +17,8 @@ allprojects { appName = 'Experienced Pixel Dungeon' appPackageName = 'com.trashboxbobylev.experiencedpixeldungeon.redone' - appVersionCode = 454 - appVersionName = 'ExpPD-2.11.0' + appVersionCode = 455 + appVersionName = 'ExpPD-2.11.1' appJavaCompatibility = JavaVersion.VERSION_1_8 diff --git a/core/src/main/assets/messages/scenes/scenes.properties b/core/src/main/assets/messages/scenes/scenes.properties index ae1d936f22..68197adb1e 100644 --- a/core/src/main/assets/messages/scenes/scenes.properties +++ b/core/src/main/assets/messages/scenes/scenes.properties @@ -127,11 +127,6 @@ scenes.titlescene$changesbutton.versioned_title=Update Available: %s scenes.titlescene$changesbutton.desc=Experienced Pixel Dungeon is regularly updated with overhauls to existing game content, or entirely new content!\n\nGame balance is also frequently improved in game updates, so that specific items/heroes/enemies aren't too strong or too weak.\n\nUpdates also include fixes for bugs and other various stability improvements. scenes.titlescene$changesbutton.update=Go to Update Page scenes.titlescene$changesbutton.changes=Current Changes Screen -scenes.titlescene$changesbutton.title=An Update is Available! -scenes.titlescene$changesbutton.versioned_title=Update Available: %s -scenes.titlescene$changesbutton.desc=Shattered Pixel Dungeon is regularly updated with overhauls to existing game content, or entirely new content!\n\nGame balance is also frequently improved in game updates, so that specific items/heroes/enemies aren't too strong or too weak.\n\nUpdates also include fixes for bugs and other various stability improvements. -scenes.titlescene$changesbutton.update=Go to Update Page -scenes.titlescene$changesbutton.changes=Current Changes Screen scenes.titlescene.patreon_body=Experienced Pixel Dungeon and its predecessor, Shattered Pixel Dungeon, is a completely free games, which means that Evan depends on support from generous players in order to keep making it.\n\nIf you're interested in supporting me, the best way to do so is through Patreon. Patreon gives Evan a somewhat consistent income source, and allows him to give something back to those who support Evan!\n\nPatrons get exclusive blog posts every week which let them know about what Evan working on before anyone else!\n\nYou can take a look at Evan's Patreon page for the most up to date information about benefits, Thank you for your consideration!\n\n(Patreon rewards are only available in English) scenes.titlescene.patreon_button=Patreon Page diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/scrolls/ScrollOfUpgrade.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/scrolls/ScrollOfUpgrade.java index 2e93b1ae21..9f901c83ef 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/scrolls/ScrollOfUpgrade.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/scrolls/ScrollOfUpgrade.java @@ -91,7 +91,7 @@ public void execute(Hero hero, String action) { @Override public ArrayList actions(Hero hero) { ArrayList actions = super.actions( hero ); - if (isIdentified() || !anonymous) actions.add(AC_UPGRADE); + if (isIdentified() && !anonymous) actions.add(AC_UPGRADE); return actions; } diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/ExpPDChanges.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/ExpPDChanges.java index 836fdee5e2..112f2ebcbd 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/ExpPDChanges.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/ExpPDChanges.java @@ -57,7 +57,35 @@ public class ExpPDChanges { public static void addAllChanges( ArrayList changeInfos ){ - ChangeInfo changes = new ChangeInfo("ExpPD-2.11", true, ""); + ChangeInfo changes = new ChangeInfo("ExpPD-2.11.1", true, ""); + changes.hardlight(Window.TITLE_COLOR); + changeInfos.add(changes); + changes.addButton( new ChangeButton(Icons.get(Icons.BOBBY_IS_VERY_STRANGE_PERSON_BECAUSE_HE_TRIES_TO_REFERENCE_HIMSELF_IN_NEW_SHATTERED_CREDITS_SCREEN), "Developer Commentary", + "_-_ Released September 12th, 2022\n" + + "_-_ 30 days after Experienced Pixel Dungeon 2.11\n" + + "\n" + + "Dev commentary will be added here in the future.")); + changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), "Other Changes", + "_-_ Fixed Black Mimic breaking itself on death.\n" + + "_-_ Fixed perks blocking the game if you get beyond level 166.\n" + + "_-_ Fixed dirk having ShPD values for its ability.\n" + + "_-_ Fixed preparation triggering from the cloak.\n" + + "_-_ Fixed collect-related code for items, which fixes phantom gold and other issues.\n" + + "_-_ Fixed pylon on Black Mimic level not outputting their gases.\n" + + "_-_ Fixed scroll of upgrade causing freezes at high levels.\n" + + "_-_ Fixed scroll of upgrade being pseudo-identified.\n" + + "_-_ Fixed Desktop interface not fully displaying the inventory.\n" + + "_-_ Fixed Rat King having 2 velvet pouches.\n" + + "_-_ Fixed experience and overload potions not working.\n" + + "_-_ Fixed Bounty Hunter perk not working.\n" + + "_-_ Fixed toolkit not being able to warm up on +11 and more.\n" + + "_-_ Fixed being able to actually descend into arena from Black Mimic level.\n" + + "_-_ Fixed avatar-related crash.\n" + + "_-_ Fixed amount of traps in cycles being too high sometimes.\n" + + "_-_ Greataxe can be thrown from quickslot and no longer hurts allies.\n" + + "_-_ Nerfed Whip's minimal damage.")); + + changes = new ChangeInfo("ExpPD-2.11", true, ""); changes.hardlight(Window.TITLE_COLOR); changeInfos.add(changes); changes.addButton( new ChangeButton(Icons.get(Icons.BOBBY_IS_VERY_STRANGE_PERSON_BECAUSE_HE_TRIES_TO_REFERENCE_HIMSELF_IN_NEW_SHATTERED_CREDITS_SCREEN), "Developer Commentary",