Skip to content

Commit

Permalink
Update 1.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
malken21 committed Sep 8, 2024
1 parent e9de2a1 commit 8dd0053
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ https://www.curseforge.com/minecraft/mc-mods/marumasign

## 前提環境

- Minecraft **1.21**
- [Fabric Loader](https://fabricmc.net/use/installer/) 0.15.11 以降
- [Fabric API](https://www.curseforge.com/minecraft/mc-mods/fabric-api) 0.100.3 以降
- Minecraft **1.21.1**
- [Fabric Loader](https://fabricmc.net/use/installer/) 0.16.5 以降
- [Fabric API](https://www.curseforge.com/minecraft/mc-mods/fabric-api) 0.103.0 以降

## 貢献者

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ processResources {
}
}

def targetJavaVersion = 21
def targetJavaVersion = 22
tasks.withType(JavaCompile).configureEach {
// ensure that the encoding is set to UTF-8, no matter what the system default is
// this fixes some edge cases with special characters not displaying correctly
Expand All @@ -47,7 +47,7 @@ tasks.withType(JavaCompile).configureEach {
if (targetJavaVersion >= 10 || JavaVersion.current().isJava10Compatible()) {
it.options.release = targetJavaVersion
}
it.options.release = 21
it.options.release = 22
}

java {
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.21
yarn_mappings=1.21+build.2
loader_version=0.15.11
minecraft_version=1.21.1
yarn_mappings=1.21.1+build.3
loader_version=0.16.5

# Mod Properties
mod_version = 2.3.0
mod_version = 2.4.0
maven_group = marumasa
archives_base_name = marumasa_sign

# Dependencies
# check this on https://modmuss50.me/fabric.html
fabric_version=0.100.3+1.21
fabric_version=0.103.0+1.21.1

0 comments on commit 8dd0053

Please sign in to comment.