Skip to content

Commit

Permalink
forge 1.20.3
Browse files Browse the repository at this point in the history
  • Loading branch information
MarbleGateKeeper committed Dec 26, 2023
1 parent 5672ebf commit f20a63b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -189,3 +189,13 @@ tasks.withType(JavaCompile).configureEach {
it.options.encoding = "UTF-8"
it.options.release = 17
}

// Merge the resources and classes into the same directory.
// This is done because java expects modules to be in a single directory.
// And if we have it in multiple we have to do performance intensive hacks like having the UnionFileSystem
// This will eventually be migrated to ForgeGradle so modders don't need to manually do it. But that is later.
sourceSets.each {
def dir = layout.buildDirectory.dir("sourcesSets/$it.name")
it.output.resourcesDir = dir
it.java.destinationDirectory = dir
}
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ maven_group = plus.dragons.visuality
mod_name = visuality-forge
mod_id = visuality
mod_version = 2.0.2
minecraft_version = 1.20.2
forge_version = 48.0.33
minecraft_version = 1.20.3
forge_version = 49.0.2

# Build Dependency Versions
forgegradle_version = 6.0.14
mixingradle_version = 0.7-SNAPSHOT
mixin_version = 0.8.5
librarian_version = 1.+
parchment_version = 1.20.1-2023.09.03
parchment_version = 1.20.2-2023.12.10

# Mod Dependency Versions
mixin_extras_version = 0.2.0
6 changes: 3 additions & 3 deletions src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
modLoader="javafml"
loaderVersion="[48,)"
loaderVersion="[49,)"
license="MIT"
issueTrackerURL="https://github.com/ChannelingMC/visuality-forge/issues/"

Expand All @@ -17,13 +17,13 @@ issueTrackerURL="https://github.com/ChannelingMC/visuality-forge/issues/"
[[dependencies.visuality]]
modId="forge"
mandatory=true
versionRange="[48,)"
versionRange="[49,)"
ordering="NONE"
side="BOTH"

[[dependencies.visuality]]
modId="minecraft"
mandatory=true
versionRange="[1.20.2,1.21)"
versionRange="[1.20.3,1.21)"
ordering="NONE"
side="BOTH"

0 comments on commit f20a63b

Please sign in to comment.