Skip to content

Commit

Permalink
Support Minecraft 1.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
LemonCaramel committed Jun 13, 2023
1 parent 0de977a commit 5e2080c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cocoainput-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build CocoaInput

on:
push:
branches: [ dev/1.19 ]
branches: [ dev/1.20 ]

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@

"depends": {
"fabricloader": ">=0.14.21",
"minecraft": "1.20"
"minecraft": "1.20.1"
}
}
6 changes: 3 additions & 3 deletions forge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
modLoader = "javafml" #mandatory
# A version range to match for said mod loader - for regular FML @Mod it will be the forge version
loaderVersion = "[46,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions.
loaderVersion = "[47,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions.
# The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties.
# Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here.
license = "Minecraft Mod Public License Japanese Transration"
Expand Down Expand Up @@ -41,11 +41,11 @@ Support IME input on macOS, Windows, X11(Linux).
[[dependencies.cocoainput]]
modId = "forge"
mandatory = true
versionRange = "[46,)"
versionRange = "[47,)"
side = "CLIENT"

[[dependencies.cocoainput]]
modId = "minecraft"
mandatory = true
versionRange = "1.20"
versionRange = "1.20.1"
side = "CLIENT"
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ archives_base_name=CocoaInput
mod_version=4.3.0-EXPERIMENTAL
maven_group=jp.axer.cocoainput

minecraft_version=1.20
minecraft_version=1.20.1

fabric_loader_version=0.14.21
forge_version=1.20-46.0.1
forge_version=1.20.1-47.0.1

0 comments on commit 5e2080c

Please sign in to comment.