Skip to content

Commit 74f177d

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 67054cf + 93d74ba commit 74f177d

File tree

8 files changed

+126
-118
lines changed

8 files changed

+126
-118
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
![This project proudly suppports the LGBTQIA+ community](https://raw.githubusercontent.com/OakLoaf/OakLoaf/refs/heads/main/assets/pride.png)
2+
13
# PluginUpdater
24
PluginUpdater is a simple plugin and shadeable API that handles checking versions and automatically downloading plugin files from Modrinth, Spigot, Hangar and GitHub Releases. All updates and checks are ran asynchronously at a rate of 1 check/download per second to respect rate limits.
35

api/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
plugins {
22
`java-library`
3-
id("com.gradleup.shadow") version("8.3.0")
3+
id("com.gradleup.shadow") version("9.3.1")
44
}
55

66
dependencies {
7-
compileOnly("org.spigotmc:spigot-api:1.21.8-R0.1-SNAPSHOT")
7+
compileOnly("org.spigotmc:spigot-api:1.21.11-R0.2-SNAPSHOT")
88

99
implementation("org.lushplugins:ChatColorHandler:5.1.6")
1010

build.gradle.kts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import java.io.InputStreamReader
44
plugins {
55
`java-library`
66
`maven-publish`
7-
id("com.gradleup.shadow") version("8.3.0")
8-
id("xyz.jpenilla.run-paper") version("2.3.1")
7+
id("com.gradleup.shadow") version("9.3.1")
8+
id("xyz.jpenilla.run-paper") version("3.0.2")
99
id("com.modrinth.minotaur") version ("2.+")
1010
}
1111

@@ -49,13 +49,13 @@ allprojects {
4949
}
5050

5151
dependencies {
52-
compileOnly("org.spigotmc:spigot-api:1.21.8-R0.1-SNAPSHOT")
52+
compileOnly("org.spigotmc:spigot-api:1.21.11-R0.2-SNAPSHOT")
5353

5454
implementation(project(":api"))
5555

56-
implementation("org.lushplugins:LushLib:0.10.82")
57-
implementation("io.github.revxrsal:lamp.common:4.0.0-rc.13")
58-
implementation("io.github.revxrsal:lamp.bukkit:4.0.0-rc.13")
56+
implementation("org.lushplugins:LushLib:0.10.84")
57+
implementation("io.github.revxrsal:lamp.common:4.0.0-rc.14")
58+
implementation("io.github.revxrsal:lamp.bukkit:4.0.0-rc.14")
5959
}
6060

6161
java {
@@ -134,7 +134,7 @@ modrinth {
134134
"1.18", "1.18.1", "1.18.2",
135135
"1.19", "1.19.1", "1.19.2", "1.19.3", "1.19.4",
136136
"1.20", "1.20.1", "1.20.2", "1.20.3", "1.20.4", "1.20.5", "1.20.6",
137-
"1.21", "1.21.1", "1.21.2", "1.21.3", "1.21.4", "1.21.5", "1.21.6", "1.21.7", "1.21.8"
137+
"1.21", "1.21.1", "1.21.2", "1.21.3", "1.21.4", "1.21.5", "1.21.6", "1.21.7", "1.21.8", "1.21.9", "1.21.10", "1.21.11"
138138
)
139139
loaders.addAll("spigot", "paper", "purpur")
140140
syncBodyFrom.set(rootProject.file("README.md").readText())

gradle/wrapper/gradle-wrapper.jar

-15.5 KB
Binary file not shown.
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
3+
distributionSha256Sum=b266d5ff6b90eada6dc3b20cb090e3731302e553a27c5d3e4df1f0d76beaff06
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
45
networkTimeout=10000
6+
validateDistributionUrl=true
57
zipStoreBase=GRADLE_USER_HOME
68
zipStorePath=wrapper/dists

gradlew

100644100755
Lines changed: 18 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

100644100755
Lines changed: 93 additions & 92 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/java/org/lushplugins/pluginupdater/command/UpdateCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public String updateAll(CommandSender sender, @Switch("force") boolean force) {
7373
}
7474

7575
if (finalMajorCount > 0) {
76-
ChatColorHandler.sendMessage(sender, "&#e0c01b%s &#ffe27aplugins require major updates, run &#e0c01b/updates update all --force &#ffe27ato force all possible updates".formatted(finalMajorCount));
76+
ChatColorHandler.sendMessage(sender, "&#e0c01b%s &#ffe27aplugins require major updates, run &#e0c01b/updater update all --force &#ffe27ato force all possible updates".formatted(finalMajorCount));
7777
}
7878

7979
return null;

0 commit comments

Comments
 (0)