diff --git a/build.gradle b/build.gradle index 6c181698c..981b855e4 100644 --- a/build.gradle +++ b/build.gradle @@ -21,7 +21,7 @@ apply plugin: 'eclipse' apply plugin: 'maven-publish' apply plugin: 'java' // needed for compileJava -version = 'a1.3.2' +version = 'a1.4' group = 'com.seibel.lod' archivesBaseName = 'lod_1.16.5' @@ -140,24 +140,25 @@ dependencies { // The userdev artifact is a special name and will get all sorts of transformations applied to it. minecraft 'net.minecraftforge:forge:1.16.5-36.1.0' - implementation ('com.github.KaptainWutax:TerrainUtils:1.0.0'){ - transitive = false - } - implementation ('com.github.KaptainWutax:BiomeUtils:1.0.0'){ - transitive = false - } - implementation ('com.github.KaptainWutax:SeedUtils:-SNAPSHOT'){ - transitive = false - } - implementation ('com.github.KaptainWutax:MCUtils:1.0.0'){ - transitive = false - } - implementation ('com.github.KaptainWutax:NoiseUtils:1.0.0'){ - transitive = false - } - implementation ('com.github.KaptainWutax:MathUtils:-SNAPSHOT'){ - transitive = false - } + // these aren't needed right now + //implementation ('com.github.KaptainWutax:TerrainUtils:1.0.0'){ + // transitive = false + //} + //implementation ('com.github.KaptainWutax:BiomeUtils:1.0.0'){ + // transitive = false + //} + //implementation ('com.github.KaptainWutax:SeedUtils:-SNAPSHOT'){ + // transitive = false + //} + //implementation ('com.github.KaptainWutax:MCUtils:1.0.0'){ + // transitive = false + //} + //implementation ('com.github.KaptainWutax:NoiseUtils:1.0.0'){ + // transitive = false + //} + //implementation ('com.github.KaptainWutax:MathUtils:-SNAPSHOT'){ + // transitive = false + //} // these were added to hopefully allow for cloning // configuredFeatures to allow for safe @@ -196,7 +197,7 @@ dependencies { jar { manifest { attributes([ - "Specification-Title": "Level of Detail", + "Specification-Title": "LOD", "Specification-Version": "1", // We are version 1 of ourselves "Implementation-Title": project.name, "Implementation-Version": "{version}", diff --git a/src/main/java/com/seibel/lod/ModInfo.java b/src/main/java/com/seibel/lod/ModInfo.java index 08d66d67e..0e2f62109 100644 --- a/src/main/java/com/seibel/lod/ModInfo.java +++ b/src/main/java/com/seibel/lod/ModInfo.java @@ -21,12 +21,12 @@ package com.seibel.lod; * This file is similar to mcmod.info * * @author James Seibel - * @version 05-31-2021 + * @version 08-29-2021 */ public final class ModInfo { public static final String MODID = "lod"; - public static final String MODNAME = "Level of Detail"; + public static final String MODNAME = "LOD"; public static final String MODAPI = "LodAPI"; - public static final String VERSION = "a1.3.2"; + public static final String VERSION = "a1.4"; } \ No newline at end of file diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index f809b2dca..80fba7fdb 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -11,10 +11,10 @@ loaderVersion="[36,)" #mandatory This is typically bumped every Minecraft versio #// The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties. #// Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here. -license="All rights reserved" +license="GNU GPLv3" #// A URL to refer people to when problems occur with this mod -#//issueTrackerURL="https://change.me.to.your.issue.tracker.example.invalid/" #optional +issueTrackerURL="https://gitlab.com/jeseibel/minecraft-lod-mod/-/issues" #optional #// A list of mods - how many allowed here is determined by the individual mod loader [[mods]] #mandatory @@ -24,27 +24,25 @@ modId="lod" #mandatory #// The version number of the mod - there's a few well known ${} variables useable here or just hardcode it #//${file.jarVersion} will substitute the value of the Implementation-Version as read from the mod's JAR file metadata #// see the associated build.gradle script for how to populate this completely automatically during a build -version="a1.3.2" #mandatory +version="a1.4" #mandatory #// A display name for the mod -displayName="Level of Detail" #mandatory +displayName="LOD" #mandatory #// A URL to query for updates for this mod. See the JSON update specification https://mcforge.readthedocs.io/en/latest/gettingstarted/autoupdate/ #//updateJSONURL="https://change.me.example.invalid/updates.json" #optional #// A URL for the "homepage" for this mod, displayed in the mod UI -#//displayURL="https://change.me.to.your.mods.homepage.example.invalid/" #optional +displayURL="https://www.curseforge.com/minecraft/mc-mods/lod-level-of-detail" #optional #// A file name (in the root of the mod JAR) containing a logo for display -#//logoFile="examplemod.png" #optional +logoFile="logo.png" #optional #// A text field displayed in the mod UI credits="TechnoVision, Vike, and Darkhax for their modding tutorials." #optional #// A text field displayed in the mod UI -authors="James Seibel" #optional +authors="James Seibel and Leonardo Amato" #optional #// The description text for the mod (multi line!) (#mandatory) -description=''' -This mod generates and renders simplified chunks beyond the normal view distance, at a low performance cost. -''' \ No newline at end of file +description='''This mod generates and renders simplified terrain beyond the normal view distance, at a low performance cost.''' \ No newline at end of file diff --git a/src/main/resources/logo.png b/src/main/resources/logo.png new file mode 100644 index 000000000..0caf9c6d1 Binary files /dev/null and b/src/main/resources/logo.png differ diff --git a/src/main/resources/mcmod.info b/src/main/resources/mcmod.info deleted file mode 100644 index a2c917603..000000000 --- a/src/main/resources/mcmod.info +++ /dev/null @@ -1,16 +0,0 @@ -[ -{ - "modid": "lod", - "name": "Level Of Detail", - "description": "Generates and renders simplified chunks beyond the normal view distance, at a low performance cost.", - "version": "a1.3.2", - "mcversion": "1.16.4", - "url": "", - "updateUrl": "", - "authorList": ["James Seibel"], - "credits": "TechnoVision, Vike, and Darkhax for their modding tutorials.", - "logoFile": "", - "screenshots": [], - "dependencies": [] -} -]