Skip to content

Commit 6b75189

Browse files
committed
Bump to OneConfig A70
1 parent b518367 commit 6b75189

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ plugins {
1616

1717
toolkitLoomHelper {
1818
useOneConfig {
19-
version = "1.0.0-alpha.58"
19+
version = "1.0.0-alpha.70"
2020
loaderVersion = "1.1.0-alpha.44"
2121

2222
usePolyMixin = true

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
# Darwin, MinGW, and NonStop.
5656
#
5757
# (3) This script is generated from the Groovy template
58-
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
58+
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
5959
# within the Gradle project.
6060
#
6161
# You can find Gradle at https://github.com/gradle/gradle/.

settings.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pluginManagement {
2424

2525
plugins {
2626
kotlin("jvm") version("2.0.0")
27-
id("dev.deftu.gradle.multiversion-root") version("2.22.0")
27+
id("dev.deftu.gradle.multiversion-root") version("2.27.1")
2828
}
2929
}
3030

src/main/kotlin/org/polyfrost/example/client/ExampleClient.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ object ExampleClient {
66

77
fun initialize() {
88
ExampleConfig.preload()
9-
CommandManager.registerCommand(ExampleCommand)
9+
CommandManager.register(ExampleCommand)
1010
}
1111

1212
}

src/main/kotlin/org/polyfrost/example/client/ExampleCommand.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import org.polyfrost.example.ExampleConstants
44
import org.polyfrost.oneconfig.api.commands.v1.factories.annotated.Command
55
import org.polyfrost.oneconfig.utils.v1.dsl.openUI
66

7-
@Command(value = [ExampleConstants.ID], description = "Access the ${ExampleConstants.NAME} GUI.")
7+
@Command(ExampleConstants.ID)
88
object ExampleCommand {
99

1010
@Command

0 commit comments

Comments
 (0)