Skip to content

Commit

Permalink
feat: Update to Minecraft 1.20.4
Browse files Browse the repository at this point in the history
  • Loading branch information
BlayTheNinth committed Dec 28, 2023
1 parent 37bbf6d commit e1afda0
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- Updated to Minecraft 1.20.2
- Updated to Minecraft 1.20.4
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.blay09.mods.prettybeaches.compat;
package net.blay09.mods.prettybeaches.fabric.compat;

import com.terraformersmc.modmenu.api.ConfigScreenFactory;
import com.terraformersmc.modmenu.api.ModMenuApi;
Expand Down
10 changes: 5 additions & 5 deletions fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@
"environment": "*",
"entrypoints": {
"main": [
"net.blay09.mods.${mod_id}.fabric.Fabric${mod_main}"
"net.blay09.mods.prettybeaches.fabric.FabricPrettyBeaches"
],
"client": [
"net.blay09.mods.${mod_id}.fabric.client.Fabric${mod_main}Client"
"net.blay09.mods.prettybeaches.fabric.client.FabricPrettyBeachesClient"
],
"modmenu": [
"net.blay09.mods.${mod_id}.fabric.compat.ModMenuIntegration"
"net.blay09.mods.prettybeaches.fabric.compat.ModMenuIntegration"
]
},
"mixins": [
"${mod_id}.mixins.json",
"${mod_id}.fabric.mixins.json"
"prettybeaches.mixins.json",
"prettybeaches.fabric.mixins.json"
],

"depends": {
Expand Down
26 changes: 13 additions & 13 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,33 +18,33 @@ modrinth_release_type = release
modrinth_project_id = IAJe5m4X

# Minecraft
minecraft_version = 1.20.2
minecraft_versions = 1.20.2
minecraft_version_range=[1.20.2,1.21)
minecraft_version = 1.20.4
minecraft_versions = 1.20.4
minecraft_version_range=[1.20.4,1.21)
pack_format_number=18
java_version = 17

# Balm
balm_version = 8.1.0-SNAPSHOT
balm_version_range = [8.0.0,)
balm_version = 9.1.0-SNAPSHOT
balm_version_range = [9.0.0,)

# Forge
forge_version = 48.0.1
forge_version_range=[48.0.0,)
forge_loader_version_range=[48,)
forge_version = 49.0.10
forge_version_range=[49,)
forge_loader_version_range=[49,)

# NeoForge
neoforge_version = 20.2.86
neoforge_version_range=[20.2,)
neoforge_version = 20.4.47-beta
neoforge_version_range=[20.4,)
neoforge_loader_version_range=[1,)

# Fabric
fabric_version = 0.89.0+1.20.2
fabric_loader_version = 0.14.22
fabric_version = 0.91.3+1.20.4
fabric_loader_version = 0.15.3

# Dependencies
mixin_version=0.8.5
modmenu_version=8.0.0
modmenu_version=9.0.0

# Gradle
org.gradle.jvmargs=-Xmx3G
Expand Down
6 changes: 3 additions & 3 deletions neoforge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ config = "${mod_id}.mixins.json"
config = "${mod_id}.neoforge.mixins.json"
[[dependencies.${mod_id}]]
modId="neoforge"
mandatory=true
type="required"
versionRange="${neoforge_version_range}"
ordering="NONE"
side="BOTH"
[[dependencies.${mod_id}]]
modId="minecraft"
mandatory=true
type="required"
versionRange="${minecraft_version_range}"
ordering="NONE"
side="BOTH"
[[dependencies.${mod_id}]]
modId="balm"
mandatory=true
type="required"
versionRange="${balm_version_range}"
ordering="NONE"
side="BOTH"

0 comments on commit e1afda0

Please sign in to comment.