Skip to content

Commit c91af78

Browse files
committed
v0.7.3b: manifest commit
1 parent af83357 commit c91af78

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

core/src/main/AndroidManifest.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.shatteredpixel.shatteredpixeldungeon"
4-
android:versionCode="347"
5-
android:versionName="0.7.3a"
4+
android:versionCode="349"
5+
android:versionName="0.7.3b"
66
android:installLocation="auto">
77

88
<uses-feature

core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v0_7_X_Changes.java

+23-1
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,32 @@ public static void add_v0_7_3_Changes( ArrayList<ChangeInfo> changeInfos ){
6565
changes.hardlight( Window.TITLE_COLOR );
6666
changeInfos.add(changes);
6767

68-
changes = new ChangeInfo("", false, null);
68+
changes = new ChangeInfo("v0.7.3b", false, null);
6969
changes.hardlight( Window.TITLE_COLOR );
7070
changeInfos.add(changes);
7171

72+
changes.addButton(new ChangeButton(Icons.get(Icons.WARNING), "Android Froyo Support",
73+
"Unfortunately, v0.7.3 will be the last version of Shattered Pixel Dungeon which supports Android 2.2 Froyo.\n\n" +
74+
"While investigating future improvements to the game, I have discovered that it is not possible to support Android 2.2 devices while also implementing the technical improvements I have planned.\n\n" +
75+
"Android 2.2 was originally released in may 2010, and was succeeded by android 2.3 in december 2010.\n\n" +
76+
"I do not currently have any plans to drop support for other Android versions, and new versions of Shattered should hopefully support Android 2.3+ for the foreseeable future.\n\n" +
77+
"If you'd like to stay up to date with Shattered's development and do not have an Android 2.3+ device, you can still read about future updates over at: _www.ShatteredPixel.com_"));
78+
79+
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
80+
"_-_ Shattered honeypots are now stackable, and can be sold for a small amount of gold.\n\n" +
81+
"_-_ The changes list has been split into three separate groups, so that the game's entire change history isn't loaded all at once."));
82+
83+
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
84+
"Fixed (caused by 0.7.3):\n" +
85+
"_-_ Additional cases where thrown weapons would be lost when fighting Tengu\n" +
86+
"_-_ Poison dart traps dealing more damage when they were not visible\n\n" +
87+
"Fixed (existed prior to 0.7.3):\n" +
88+
"_-_ Odd behaviour when the player is killed by electricity or a grim weapon\n" +
89+
"_-_ Various rare crash bugs"));
90+
91+
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(ChangesScene.class, "language"),
92+
"Updated Translations"));
93+
7294
changes = new ChangeInfo("v0.7.3a", false, null);
7395
changes.hardlight( Window.TITLE_COLOR );
7496
changeInfos.add(changes);

0 commit comments

Comments
 (0)