Skip to content

Commit bb9a185

Browse files
committed
v0.7.4d: updated gradle plugin and version to fix fdroid issues
1 parent 65e7ed7 commit bb9a185

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
jcenter()
55
}
66
dependencies {
7-
classpath 'com.android.tools.build:gradle:3.4.1'
7+
classpath 'com.android.tools.build:gradle:3.5.0'
88
}
99
}
1010

@@ -14,8 +14,8 @@ allprojects {
1414
appName = 'Shattered Pixel Dungeon'
1515
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'
1616

17-
appVersionCode = 362
18-
appVersionName = '0.7.4c'
17+
appVersionCode = 363
18+
appVersionName = '0.7.4d'
1919

2020
appAndroidCompileSDK = 28
2121
appAndroidMinSDK = 9

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

+4-1
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,13 @@ public static void add_v0_7_4_Changes( ArrayList<ChangeInfo> changeInfos ){
6969
changes.hardlight( Window.TITLE_COLOR );
7070
changeInfos.add(changes);
7171

72-
changes = new ChangeInfo("", false, null);
72+
changes = new ChangeInfo("v0.7.4d", false, null);
7373
changes.hardlight( Window.TITLE_COLOR );
7474
changeInfos.add(changes);
7575

76+
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
77+
"Fixed a crash on start error some F-droid users were experiencing."));
78+
7679
changes = new ChangeInfo("v0.7.4c", false, null);
7780
changes.hardlight( Window.TITLE_COLOR );
7881
changeInfos.add(changes);

0 commit comments

Comments
 (0)