Skip to content

Commit

Permalink
v0.0.8p1 update
Browse files Browse the repository at this point in the history
Tianscar committed Oct 23, 2022

Verified

This commit was signed with the committer’s verified signature. The key has expired.
tvdeyen Thomas von Deyen
1 parent ef264d1 commit 7e05f58
Showing 8 changed files with 24 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -7,8 +7,8 @@ A traditional roguelike game, with randomly generated levels, items, enemies, an

Carbonized Pixel Dungeon currently compiles for Android and Desktop platforms. It is available from [GitHub](https://github.com/AnsdoShip/carbonized-pixel-dungeon/releases).

If you like this game, please consider [sponsor me](https://sponsor.tianscar.com)!
If you like this game, please consider [sponsor me](https://afdian.net/a/tianscar)!

There is an official blog for this project at [cbpd.tianscar.com](https://cbpd.tianscar.com).
There is an official blog for this project at [carbonizedpd.tianscar.com](https://carbonizedpd.tianscar.com).

Note that **this repository does not accept pull requests!** The code here is provided in hopes that others may find it useful for their own projects, not to allow community contribution. Issue reports of all kinds (bug reports, feature requests, etc.) are welcome.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -15,8 +15,8 @@ allprojects {
appVendor = 'AnsdoShip'
appPackageName = 'com.ansdoship.carbonizedpixeldungeon'

appVersionCode = 28
appVersionName = '0.0.8-ALPHA'
appVersionCode = 29
appVersionName = '0.0.8p1-ALPHA'

appJavaCompatibility = JavaVersion.VERSION_1_8

Binary file modified core/src/main/assets/fonts/fusion_pixel.ttf
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -152,9 +152,10 @@ protected void onClick() {
//TODO: change the messages here in accordance with the type of patch.
message = Messages.get(this, "patch_intro");
message += "\n";
message += "\n" + Messages.get(this, "patch_balance");
message += "\n" + "null";
//message += "\n" + Messages.get(this, "patch_balance");
//message += "\n" + Messages.get(this, "patch_bugfixes");
message += "\n" + Messages.get(this, "patch_translations");
//message += "\n" + Messages.get(this, "patch_translations");

}
} else {
Original file line number Diff line number Diff line change
@@ -48,6 +48,7 @@ public static void addAllChanges( ArrayList<ChangeInfo> changeInfos ) {
changes.hardlight( Window.TITLE_COLOR);
changeInfos.add(changes);

add_v0_0_8p1_changes(changeInfos);
add_v0_0_8_changes(changeInfos);
add_v0_0_7p7_changes(changeInfos);
add_v0_0_7p6_changes(changeInfos);
@@ -77,6 +78,18 @@ public static void addAllChanges( ArrayList<ChangeInfo> changeInfos ) {
add_v0_0_1_Changes(changeInfos);
}

public static void add_v0_0_8p1_changes( ArrayList<ChangeInfo> changeInfos ) {
ChangeInfo changes = new ChangeInfo("v0.0.8p1", false, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);

changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.CARBON_STEEL), "开发者的留言",
"_-_ 2022年10月23日更新\n" +
"_-_ 距离碳化的像素地牢v0.0.8更新88天\n" +
"\n" +
"我恢复更新了。不过这个版本什么都没更......周更中(最迟下周三会补上这次更新),敬请期待!"));
}

public static void add_v0_0_8_changes( ArrayList<ChangeInfo> changeInfos ) {
ChangeInfo changes = new ChangeInfo("v0.0.8", false, "");
changes.hardlight(Window.TITLE_COLOR);
Original file line number Diff line number Diff line change
@@ -99,7 +99,7 @@ protected String hoverText() {
@Override
protected void onClick() {
super.onClick();
String link = "https://sponsor.tianscar.com";
String link = "https://afdian.net/a/tianscar";
Game.platform.openURI(link);
}
};
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
#Fri Jun 17 10:41:15 CST 2022
org.gradle.parallel=true
org.gradle.jvmargs=-Xmx2048m -XX\:MaxPermSize\=512m -XX\:+HeapDumpOnOutOfMemoryError -Dfile.encoding\=UTF-8
#org.gradle.parallel=true
#org.gradle.jvmargs=-Xmx2048m -XX\:MaxPermSize\=512m -XX\:+HeapDumpOnOutOfMemoryError -Dfile.encoding\=UTF-8
android.useAndroidX=true
android.enableJetifier=true
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 7e05f58

Please sign in to comment.