Skip to content

Commit

Permalink
v1.2.3: final commit
Browse files Browse the repository at this point in the history
  • Loading branch information
00-Evan committed Apr 14, 2022
1 parent e3fa120 commit 83452db
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 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 = 'Shattered Pixel Dungeon'
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'

appVersionCode = 626
appVersionName = '1.2.2'
appVersionCode = 628
appVersionName = '1.2.3'

appJavaCompatibility = JavaVersion.VERSION_1_8

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,29 @@ public static void add_v1_2_Changes( ArrayList<ChangeInfo> changeInfos ) {
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);

changes = new ChangeInfo("", false, null);
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);

changes = new ChangeInfo("v1.2.3", false, null);
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);

changes.addButton(new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"_-_ Swarms that were spawned by splitting now give a little sacrifice progress if sacrificed, instead of 0.\n\n" +
"_-_ Updated Translations"));

changes.addButton(new ChangeButton(new Image(Assets.Sprites.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed (caused by v1.2.0):\n" +
"_-_ Various rare crash bugs\n" +
"_-_ Textual errors with talents and 13th armor ability\n" +
"_-_ Armband not benefiting from ring of energy\n" +
"_-_ v1.2.0 light cloak buff not applying in all cases\n" +
"_-_ Inconsistencies in freezing logic\n" +
"_-_ Cached rations talent not capping at 4/6 rations as intended\n\n" +
"Fixed (existed prior to v1.2.0)\n" +
"_-_ An exploit where unblessed ankhs could be used with a lost inventory" ));

changes = new ChangeInfo("v1.2.2", false, null);
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
Expand Down

0 comments on commit 83452db

Please sign in to comment.