diff --git a/gradle.properties b/gradle.properties index 4f76f44..79afcbb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ minecraft_version=1.20.1 # The Minecraft version range can use any release version of Minecraft as bounds. # Snapshots, pre-releases, and release candidates are not guaranteed to sort properly # as they do not follow standard versioning conventions. -minecraft_version_range=[1.20.1,1.21) +minecraft_version_range=[1.20.1] # The Forge version must agree with the Minecraft version to get a valid artifact forge_version=47.4.0 # The Forge version range can use any version of Forge as bounds or match the loader version range @@ -38,7 +38,7 @@ mod_name=QuantumBags # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=All Rights Reserved # The mod version. See https://semver.org/ -mod_version=0.0.1 +mod_version=0.0.2 # The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. # This should match the base package used for the mod sources. # See https://maven.apache.org/guides/mini/guide-naming-conventions.html diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 7b2b9a9..b0fbbd2 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -5,6 +5,7 @@ # Find more information on toml format here: https://github.com/toml-lang/toml # The name of the mod loader type to load - for regular FML @Mod mods it should be javafml modLoader = "javafml" #mandatory +logoFile = "logo.png" # A version range to match for said mod loader - for regular FML @Mod it will be the forge version loaderVersion = "${loader_version_range}" #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. diff --git a/src/main/resources/logo.png b/src/main/resources/logo.png new file mode 100644 index 0000000..fd3620a Binary files /dev/null and b/src/main/resources/logo.png differ