-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Implement Manifold CLI argument
- Loading branch information
1 parent
d049d12
commit 4c182ef
Showing
7 changed files
with
128 additions
and
22 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
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 was deleted.
Oops, something went wrong.
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,14 +1,18 @@ | ||
# Done to increase the memory available to gradle. | ||
# Gradle settings | ||
# Increase memory available to Gradle, enable parallelism, and enable caching | ||
org.gradle.jvmargs=-Xmx1G | ||
org.gradle.parallel=true | ||
org.gradle.caching=true | ||
|
||
# Fabric Properties | ||
# check these on https://modmuss50.me/fabric.html | ||
minecraft_version=1.20.1 | ||
yarn_mappings=1.20.1+build.10 | ||
loader_version=0.14.12 | ||
|
||
# Mod Properties | ||
# Mod properties | ||
mod_version=1.3.0 | ||
maven_group=io.github.steveplays28 | ||
archives_base_name=pathunderfencegates | ||
version_properties_folder=version_properties | ||
default_minecraft_version=1.20.1 | ||
supported_minecraft_version=1.19.x-1.20.x | ||
|
||
# Minecraft version to compile/run | ||
# This loads the .properties file for this version, located in the version_properties_folder | ||
# Override this using -Pminecraft_version_properties=\"${defaultMinecraftVersion}\" as a command line argument | ||
minecraft_version_properties=1.20.1 |
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,5 @@ | ||
# Fabric properties | ||
# Check these on https://modmuss50.me/fabric.html | ||
minecraft_version=1.19.2 | ||
yarn_mappings=1.19.2+build.28 | ||
loader_version=0.14.12 |
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,5 @@ | ||
# Fabric properties | ||
# Check these on https://modmuss50.me/fabric.html | ||
minecraft_version=1.20.1 | ||
yarn_mappings=1.20.1+build.10 | ||
loader_version=0.14.12 |