Skip to content

Commit 16bc567

Browse files
committed
Update to 26.1
1 parent be74ef2 commit 16bc567

17 files changed

Lines changed: 36 additions & 64 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
# 3.1.1.
1+
# 3.2.0
2+
- Update to 26.1
3+
4+
---
5+
6+
# 3.1.1
27
- Fix issues when filtering windows paths
38

49
---

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,6 @@ For other platforms or other IDEs run their respective gradle tasks:
112112
| Bukkit | | `./gradlew :bukkit:runServer` |
113113
| BungeeCord | | `./gradlew :bungeecord:runBungeeCord` |
114114
| Velocity | | `./gradlew :velocity:runVelocity` |
115-
| Forge | `./gradlew :forge:Client` | `./gradlew :forge:Server` |
115+
| Forge | `./gradlew :forge:runClient` | `./gradlew :forge:runServer` |
116116
| Fabric | `./gradlew :fabric:runClient` | `./gradlew :fabric:runServer` |
117117
| NeoForge | `./gradlew :neoforge:runClient` | `./gradlew :neoforge:runServer` |

build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,10 @@ tasks.register('buildAll', Copy) {
4646
dependsOn(':bukkit:shadowJar', ':velocity:shadowJar', ':bungeecord:shadowJar',
4747
':forge:jarJar', ':fabric:build', ':neoforge:build')
4848

49-
from('fabric/build/libs', 'neoforge/build/libs')
49+
from('fabric/build/libs', 'neoforge/build/libs', 'forge/build/libs')
5050
from('bukkit/build/libs', copyShadowJar)
5151
from('bungeecord/build/libs', copyShadowJar)
5252
from('velocity/build/libs', copyShadowJar)
53-
// from('forge/build/libs', copyShadowJar)
5453

5554
it.rename { String fileName ->
5655
fileName.replace(mod_name, mod_id)

bukkit/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ repositories {
1313
}
1414

1515
dependencies {
16-
compileOnly "org.spigotmc:spigot-api:${minor_minecraft_version}-R0.1-SNAPSHOT"
16+
compileOnly "org.spigotmc:spigot-api:${minecraft_gamedrop_version}-R0.1-SNAPSHOT"
1717
implementation(libs.mclogs.api) {
1818
exclude group: 'com.google.code.gson', module: 'gson'
1919
}

bungeecord/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repositories {
1717
}
1818

1919
dependencies {
20-
compileOnly "net.md-5:bungeecord-api:${minor_minecraft_version}-R0.4"
20+
compileOnly "net.md-5:bungeecord-api:${minecraft_gamedrop_version}-R0.1-SNAPSHOT"
2121
implementation(libs.mclogs.api) {
2222
exclude group: 'com.google.code.gson', module: 'gson'
2323
}

common-mc/build.gradle

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,6 @@ dependencies {
1717

1818
neoForge {
1919
neoFormVersion = neo_form_version
20-
if (enable_parchment) {
21-
parchment {
22-
minecraftVersion = parchment_minecraft
23-
mappingsVersion = parchment_version
24-
}
25-
}
2620
}
2721

2822
configurations {

common-mc/src/main/java/gs/mclo/commands/ClientCommandSourceStackBuildContext.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,4 @@ public ClientCommandSourceStackBuildContext() {
1212
public ICommandSourceAccessor<MinecraftComponent> mapSource(CommandSourceStack source) {
1313
return new ClientCommandSourceStackAccessor(source);
1414
}
15-
16-
@Override
17-
public boolean supportsClientCommandClickEvents() {
18-
return false;
19-
}
2015
}

common/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ dependencies {
2121
implementation(libs.brigadier)
2222
compileOnly(libs.jetbrains.annotations)
2323
}
24-
2524
configurations {
2625
commonJava {
2726
canBeResolved = false

common/src/main/java/gs/mclo/commands/BuildContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public BuildContext(CommandEnvironment environment) {
3131

3232
/**
3333
* Are click events with client commands supported in this context?
34-
* Forge (and older NeoForge versions) do not support this.
34+
* older Forge and NeoForge versions did not support this.
3535
* @return True if click events are supported, false otherwise.
3636
*/
3737
public boolean supportsClientCommandClickEvents() {

fabric/build.gradle

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,8 @@ repositories {
1414

1515
dependencies {
1616
minecraft "com.mojang:minecraft:${minecraft_version}"
17-
mappings loom.layered {
18-
officialMojangMappings()
19-
if (enable_parchment) {
20-
parchment("org.parchmentmc.data:parchment-${parchment_minecraft}:${parchment_version}@zip")
21-
}
22-
}
23-
modImplementation "net.fabricmc:fabric-loader:${fabric_loader_version}"
24-
modImplementation "net.fabricmc.fabric-api:fabric-api:${fabric_version}"
17+
implementation "net.fabricmc:fabric-loader:${fabric_loader_version}"
18+
implementation "net.fabricmc.fabric-api:fabric-api:${fabric_version}"
2519

2620
implementation(libs.mclogs.api)
2721
include(libs.mclogs.api)
@@ -54,7 +48,7 @@ loom {
5448
modrinth {
5549
token = findProperty('modrinth_api_token') as String ?: ''
5650
projectId = modrinth_project_id
57-
uploadFile = remapJar
51+
uploadFile = jar
5852
gameVersions = minecraft_version_list
5953
loaders = ["fabric"]
6054
changelog = rootProject.changelog

0 commit comments

Comments
 (0)