Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaming32 committed Oct 7, 2023
1 parent 7bbf38f commit 695b860
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ preprocess {
// }
}

gradle.projectsEvaluated {
subprojects.asSequence().zipWithNext().forEach { (left, right) ->
right.tasks.named("modrinth").get().mustRunAfter(left.tasks.named("modrinth"))
}
}
//gradle.projectsEvaluated {
// subprojects.asSequence().zipWithNext().forEach { (left, right) ->
// right.tasks.named("modrinth").get().mustRunAfter(left.tasks.named("modrinth"))
// }
//}
5 changes: 5 additions & 0 deletions changelogs/0.4.5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+ Add Belarusian translation (by Gazmanovich)
+ Fix crash on 1.16.5
+ Fix visual glitches on 1.20.2
+ Fix crashes on 1.20.2
+ Fix crash on startup on Forge 1.20.1
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ org.gradle.jvmargs=-Xmx3G
# Mod properties
mod.name=World Host
mod.id=world-host
mod.version=0.4.4
mod.version=0.4.5
mod.group=io.github.gaming32
2 changes: 1 addition & 1 deletion src/main/resources/assets/world-host/lang/be_by.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"world-host.worldhost.ip.not_connected": "Не далучана да сервера World Host.",
"world-host.worldhost.tempip.success": "Часовы IP з нізкім пінгам для вашага свету %s.",
"world-host.worldhost.tempip.failure": "Узнікла памылка падчас атрымання часовага IP. Паспрабуйце выкарыстоўваць %s.",
"world-host.lan_opened.friends": Свет размешчаны для сяброў у укладцы Сябры. Ён даступны праз LAN-порт: %s.",
"world-host.lan_opened.friends": "Свет размешчаны для сяброў у укладцы Сябры. Ён даступны праз LAN-порт: %s.",
"world-host.lan_opened.no_friends": "Свет размешчаны па IP %s. Ён даступны праз LAN-порт: %s.",
"world-host.online_status": "%s World Host: %s",
"world-host.online_status.offline": "Па-за сеткай (%ss)",
Expand Down
5 changes: 2 additions & 3 deletions version.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ buildscript {
}

dependencies {
classpath("net.raphimc.javadowngrader:gradle-plugin:1.0.1-SNAPSHOT")
classpath("net.raphimc.javadowngrader:gradle-plugin:1.1.1-SNAPSHOT")
}
}

Expand Down Expand Up @@ -288,8 +288,7 @@ preprocess {
//println("Parallel: ${gradle.startParameter.isParallelProjectExecutionEnabled}")

modrinth {
val isStaging = (project.properties["modrinth.staging"] as String?)?.toBoolean()
?: (System.getenv("MODRINTH_STAGING") == "1")
val isStaging = true
token.set(
project.properties["modrinth.token${if (isStaging) ".staging" else ""}"] as String?
?: System.getenv("MODRINTH_TOKEN${if (isStaging) "_STAGING" else ""}")
Expand Down

0 comments on commit 695b860

Please sign in to comment.