-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
此更新包括对 fabric mod 构建配置的多项改进和优化,提升了构建效率和代码的可维护性。主要变更如下: - 将 architectury.loom 插件版本升级至 1.7-SNAPSHOT,以获得最新的特性和支持。 - 调整了版本号的命名格式,以更清晰地表示版本之间的关系。 - 更新了依赖项的版本,包括 lombok 和 vanish,确保与最新 Minecraft 版本的兼容性。 - 在 CQUtils.java 中添加了对字符串转义的处理,优化了消息处理逻辑。 - 升级了 Minecraft Loader 版本至 0.15.11,以适配最新的 Minecraft 和 Fabric API。 此次更新为 API 的第一部分更新,后续还将有更多改进和新功能的加入。
- Loading branch information
Showing
15 changed files
with
64 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,25 @@ | ||
plugins { | ||
id 'dev.architectury.loom' version '1.5-SNAPSHOT' apply false | ||
id 'dev.architectury.loom' version '1.7-SNAPSHOT' apply false | ||
id "com.replaymod.preprocess" version "SNAPSHOT" | ||
id 'dev.vankka.dependencydownload.plugin' version '1.3.1' apply false | ||
|
||
} | ||
|
||
preprocess { | ||
def mc1165 = createNode("1.16.5", 1_16_05, "yarn") | ||
def mc1182 = createNode("1.18.2", 1_18_02, "yarn") | ||
def mc1192 = createNode("1.19.2", 1_19_02, "yarn") | ||
def mc1193 = createNode("1.19.3", 1_19_03, "yarn") | ||
def mc1194 = createNode("1.19.4", 1_19_04, "yarn") | ||
def mc1201 = createNode("1.20.1", 1_20_01, "yarn") | ||
def mc1204 = createNode("1.20.4", 1_20_04, "yarn") | ||
def mc11605 = createNode("1.16.5", 1_16_05, "yarn") | ||
def mc11802 = createNode("1.18.2", 1_18_02, "yarn") | ||
def mc11902 = createNode("1.19.2", 1_19_02, "yarn") | ||
def mc11903 = createNode("1.19.3", 1_19_03, "yarn") | ||
def mc11904 = createNode("1.19.4", 1_19_04, "yarn") | ||
def mc12001 = createNode("1.20.1", 1_20_01, "yarn") | ||
def mc12004 = createNode("1.20.4", 1_20_04, "yarn") | ||
def mc12100 = createNode("1.21", 1_21_00, "yarn") | ||
|
||
mc1165.link(mc1182, null) | ||
mc1182.link(mc1192, null) | ||
mc1192.link(mc1193, null) | ||
mc1193.link(mc1194, null) | ||
mc1194.link(mc1201, null) | ||
mc1201.link(mc1204, null) | ||
mc11605.link(mc11802, null) | ||
mc11802.link(mc11902, null) | ||
mc11902.link(mc11903, null) | ||
mc11903.link(mc11904, null) | ||
mc11904.link(mc12001, null) | ||
mc12001.link(mc12004, null) | ||
mc12004.link(mc12100, null) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
org.gradle.jvmargs=-Dfile.encoding=UTF-8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Fabric Properties | ||
# check these on https://fabricmc.net/develop | ||
minecraft_version=1.21 | ||
loader_version=0.15.11 | ||
loom.platform=fabric | ||
|
||
# Fabric Mod Metadata | ||
minecraft_dependency=1.21 | ||
|
||
# Dependencies | ||
fabric_version=0.100.7+1.21 |