Skip to content
This repository has been archived by the owner on Sep 28, 2024. It is now read-only.

Commit

Permalink
2.11.1: finale
Browse files Browse the repository at this point in the history
  • Loading branch information
TrashboxBobylev committed Sep 12, 2022
1 parent 616fa48 commit 5b230db
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 9 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
5 changes: 0 additions & 5 deletions core/src/main/assets/messages/scenes/scenes.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public void execute(Hero hero, String action) {
@Override
public ArrayList<String> actions(Hero hero) {
ArrayList<String> actions = super.actions( hero );
if (isIdentified() || !anonymous) actions.add(AC_UPGRADE);
if (isIdentified() && !anonymous) actions.add(AC_UPGRADE);
return actions;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,35 @@
public class ExpPDChanges {

public static void addAllChanges( ArrayList<ChangeInfo> 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",
Expand Down

0 comments on commit 5b230db

Please sign in to comment.