Skip to content

Commit b016833

Browse files
committed
Add support for joining 26.1 servers!
Signed-off-by: Florian Reuth <git@florianreuth.de>
1 parent 42940a8 commit b016833

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Publish to CurseForge and Modrinth
22
on:
33
push:
44
branches:
5-
- ver/1.16-1.21
5+
- ver/1.8-1.12
66
workflow_dispatch:
77
permissions:
88
contents: read

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,11 @@ allprojects {
9090
}
9191

9292
dependencies {
93-
library "com.viaversion:viaversion-common:5.8.0"
94-
library "com.viaversion:viabackwards-common:5.8.0"
95-
library "com.viaversion:viarewind-common:4.0.15"
96-
library "com.viaversion:viaaprilfools-common:4.1.0"
97-
library("net.raphimc:ViaLegacy:3.0.14") {
93+
library "com.viaversion:viaversion-common:${vv_version}"
94+
library "com.viaversion:viabackwards-common:${vb_version}"
95+
library "com.viaversion:viarewind-common:${vr_version}"
96+
library "com.viaversion:viaaprilfools-common:${vaf_version}"
97+
library("net.raphimc:ViaLegacy:${vl_version}") {
9898
exclude group: "com.google.code.gson", module: "gson"
9999
}
100100
}

gradle.properties

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,10 @@
22
org.gradle.jvmargs=-Xmx3G -XX:+UseG1GC
33
org.gradle.daemon=false
44

5+
vv_version=5.8.0
6+
vb_version=5.8.0
7+
vr_version=4.0.15
8+
vaf_version=4.1.0
9+
vl_version=3.0.14
10+
511
mixin_version=0.8.3

0 commit comments

Comments
 (0)