Skip to content

Commit a973460

Browse files
Dependency updates
1 parent be285a6 commit a973460

6 files changed

Lines changed: 11 additions & 10 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22
Simple syntax to create advanced and organized GUIs with Skript.
33

44
> [!IMPORTANT]
5-
> This addon requires Skript 2.10.2 or newer.
5+
> This addon requires Skript 2.15.2 or newer.
66
> While this addon does not frequently receive updates, it is still compatible with the latest Skript versions and should function without issue.
77
> If you encounter errors of any kind, please report them using the [issues tab](https://github.com/APickledWalrus/skript-gui/issues).
88
9-
This addons allows you to create custom (Chest) GUIs with Skript. It it a remake of [TuSKe's](https://github.com/Tuke-Nuke/TuSKe) advanced GUI system.
9+
This addons allows you to create custom (Chest) GUIs with Skript.
10+
It is a remake of [TuSKe's](https://github.com/Tuke-Nuke/TuSKe) advanced GUI system.
1011

1112
# Links
1213

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ plugins {
55
}
66

77
group = 'io.github.apickledwalrus'
8-
version = '2.0.0-dev'
8+
version = '1.4.0-dev'
99

1010
compileJava.options.encoding = 'UTF-8'
1111

1212
java {
1313
toolchain {
14-
languageVersion.set(JavaLanguageVersion.of(17))
14+
languageVersion.set(JavaLanguageVersion.of(21))
1515
}
1616
}
1717

@@ -25,8 +25,8 @@ repositories {
2525
dependencies {
2626
implementation group: 'org.jetbrains', name: 'annotations', version: '26.0.1'
2727
implementation group: 'com.google.code.findbugs', name: 'findbugs', version: '3.0.1'
28-
implementation group: 'io.papermc.paper', name: 'paper-api', version: '1.19.4-R0.1-SNAPSHOT'
29-
implementation (group: 'com.github.SkriptLang', name: 'Skript', version: '2.11.1') {
28+
implementation group: 'io.papermc.paper', name: 'paper-api', version: '1.21.1-R0.1-SNAPSHOT'
29+
implementation (group: 'com.github.SkriptLang', name: 'Skript', version: '2.15.2') {
3030
transitive = false
3131
}
3232
}

gradle/wrapper/gradle-wrapper.jar

1.65 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
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.14-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/resources/plugin.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: skript-gui
22
main: io.github.apickledwalrus.skriptgui.SkriptGUI
33
version: @version@
4-
api-version: 1.19
5-
authors: [APickledWalrus, Tuke_Nuke]
4+
api-version: 1.21
5+
authors: [APickledWalrus]
66
description: Enables the easy creation of advanced and organized GUIs with Skript.
77
website: https://github.com/APickledWalrus/skript-gui
88
softdepend: [Skript]

0 commit comments

Comments
 (0)