From 807818e078bb6dbeae0a8885ef9be763fa5ae15b Mon Sep 17 00:00:00 2001 From: James Seibel Date: Sat, 27 Feb 2021 21:45:12 -0600 Subject: [PATCH] Fix a few meta info files --- src/main/java/com/backsun/lod/ModInfo.java | 3 +-- src/main/resources/META-INF/mods.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/backsun/lod/ModInfo.java b/src/main/java/com/backsun/lod/ModInfo.java index 1a64f0044..2ac661d94 100644 --- a/src/main/java/com/backsun/lod/ModInfo.java +++ b/src/main/java/com/backsun/lod/ModInfo.java @@ -11,6 +11,5 @@ public final class ModInfo public static final String MODID = "lod"; public static final String MODNAME = "Levels of Detail"; public static final String MODAPI = "LodAPI"; - public static final String VERSION = "${version}"; - public static final String APIVERSION = "${apiversion}"; + public static final String VERSION = "1.0"; } \ 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 f19bfd76c..5b6c4ced3 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -24,7 +24,7 @@ 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="${file.jarVersion}" #mandatory +version="1.0" #mandatory #// A display name for the mod displayName="Levels of Detail" #mandatory