diff --git a/gradle.properties b/gradle.properties index 5ae9de5..894a985 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] +minecraft_version_range=[1.20.1,1.20.2) # The Forge version must agree with the Minecraft version to get a valid artifact forge_version=47.3.0 # The Forge version range can use any version of Forge as bounds or match the loader version range @@ -38,12 +38,12 @@ mod_name=Advanced Arrows # 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.2 +mod_version=0.0.3 # 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 mod_group_id=com.jenny # The authors of the mod. This is a simple text string that is used for display purposes in the mod list. -mod_authors= +mod_authors=Jenny # The description of the mod. This is a simple multiline text string that is used for display purposes in the mod list. -mod_description= +mod_description=quirky arrows that are definitely not overpowered diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index e4ff16a..cbc5704 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..88e3249 Binary files /dev/null and b/src/main/resources/logo.png differ