Skip to content

Commit

Permalink
ver 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tpd0618 committed Apr 19, 2024
1 parent be866e4 commit d59a1be
Show file tree
Hide file tree
Showing 2 changed files with 13 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 = 'Touhou Pixel Dungeon: Reloaded'
appPackageName = 'com.touhoupixel.touhoupixeldungeonreloaded'

appVersionCode = 671
appVersionName = '1.2.1'
appVersionCode = 672
appVersionName = '1.2.2'

appJavaCompatibility = JavaVersion.VERSION_1_8

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,20 @@
public class v1_4_Changes {

public static void addAllChanges(ArrayList<ChangeInfo> changeInfos) {
add_v1_2_2_Changes(changeInfos);
add_v1_2_1_Changes(changeInfos);
}

public static void add_v1_2_2_Changes(ArrayList<ChangeInfo> changeInfos) {
ChangeInfo changes = new ChangeInfo("v1.2.2", true, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);

changes.addButton(new ChangeButton(Icons.get(Icons.CHANGES), "v1.2.2 changes",
"_-_ Extra bug fixes.\n" +
"_-_ Bug report: touhoupixeldungeon@gmail.com"));
}

public static void add_v1_2_1_Changes(ArrayList<ChangeInfo> changeInfos) {
ChangeInfo changes = new ChangeInfo("v1.2.1", true, "");
changes.hardlight(Window.TITLE_COLOR);
Expand Down

0 comments on commit d59a1be

Please sign in to comment.