From 04e12c1311e2a13a4d462791f820ed4aa2fea747 Mon Sep 17 00:00:00 2001 From: Zontreck Date: Tue, 13 Feb 2024 23:13:34 -0700 Subject: [PATCH 01/15] Merge the 1.19 changes into the 1.20 WMD --- build.gradle | 22 +++++++++++++++++++--- gradle.properties | 4 ++-- 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 765acb8..42a6d6b 100644 --- a/build.gradle +++ b/build.gradle @@ -13,6 +13,11 @@ base { archivesName = mod_id } +java { + withSourcesJar() + withJavadocJar() +} + // Mojang ships Java 17 to end users in 1.18+, so your mod should target Java 17. java.toolchain.languageVersion = JavaLanguageVersion.of(17) @@ -211,20 +216,31 @@ tasks.named('jar', Jar).configure { // dependsOn 'reobfJar' // } -// Example configuration to allow publishing using the maven-publish plugin + +def MAVEN_PASSWORD_PROPERTY = "AriasCreationsMavenPassword" publishing { publications { - register('mavenJava', MavenPublication) { + mavenJava(MavenPublication) { artifact jar + artifact sourcesJar + artifact javadocJar } } repositories { maven { - url "file://${project.projectDir}/mcmodsrepo" + url = "https://maven.zontreck.com/repository/zontreck" + name = "ariascreations" + if (project.findProperty(MAVEN_PASSWORD_PROPERTY) != null) { + credentials { + username = "admin" + password = project.findProperty(MAVEN_PASSWORD_PROPERTY) + } + } } } } + tasks.withType(JavaCompile).configureEach { options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation } diff --git a/gradle.properties b/gradle.properties index e2e0ee1..59315a1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx3G org.gradle.daemon=false -libzontreck=1.10.011524.0045 +libzontreck=1.10.021324.2257 ## Environment Properties @@ -49,7 +49,7 @@ mod_name=WatchMyDurability # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=GPLv3 # The mod version. See https://semver.org/ -mod_version=1.2.011524.0055 +mod_version=1.2.021324.2310 # 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 From f7fde62e7a57f7b4394772b7dcac20df46e63575 Mon Sep 17 00:00:00 2001 From: Zontreck Date: Wed, 14 Feb 2024 05:10:51 -0700 Subject: [PATCH 02/15] Update to neoforge --- build.gradle | 26 +++++++++++++++----------- gradle.properties | 23 +++++++++++------------ src/main/resources/pack.mcmeta | 2 +- 3 files changed, 27 insertions(+), 24 deletions(-) diff --git a/build.gradle b/build.gradle index 42a6d6b..bffd569 100644 --- a/build.gradle +++ b/build.gradle @@ -2,8 +2,9 @@ plugins { id 'eclipse' id 'idea' id 'maven-publish' - id 'net.minecraftforge.gradle' version '[6.0,6.2)' - id 'org.parchmentmc.librarian.forgegradle' version '1.+' + id 'net.neoforged.gradle' version '[6.0.18,6.2)' + id 'org.spongepowered.mixin' version '0.7.+' + //id 'org.parchmentmc.librarian.forgegradle' version '1.+' } version = mod_version @@ -66,7 +67,7 @@ minecraft { runs { // applies to all the run configs below configureEach { - workingDirectory project.file('run') + workingDirectory project.file("run/${it.name}") // Recommended logging data for a userdev environment // The markers can be added/remove as needed separated by commas. @@ -105,13 +106,14 @@ minecraft { } data { - // example of overriding the workingDirectory set in configureEach above - workingDirectory project.file('run-data') + // example of overriding the workingDirectory set in configureEach above, uncomment if you want to use it + // workingDirectory project.file('run-data') // Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources. args '--mod', mod_id, '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/') } } + } // Include resources generated by data generators. @@ -155,7 +157,8 @@ dependencies { // The "userdev" classifier will be requested and setup by ForgeGradle. // If the group id is "net.minecraft" and the artifact id is one of ["client", "server", "joined"], // then special handling is done to allow a setup of a vanilla dependency without the use of an external repository. - minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}" + minecraft "net.neoforged:forge:${minecraft_version}-${neo_version}" + implementation fg.deobf("dev.zontreck:LibZontreckMod:${libzontreck}") // Example mod dependency with JEI - using fg.deobf() ensures the dependency is remapped to your development mappings @@ -178,13 +181,13 @@ dependencies { // A missing property will result in an error. Properties are expanded using ${} Groovy notation. // When "copyIdeResources" is enabled, this will also run before the game launches in IDE environments. // See https://docs.gradle.org/current/dsl/org.gradle.language.jvm.tasks.ProcessResources.html -tasks.named('processResources', ProcessResources).configure { +tasks.withType(ProcessResources).configureEach { var replaceProperties = [ - minecraft_version: minecraft_version, minecraft_version_range: minecraft_version_range, - forge_version: forge_version, forge_version_range: forge_version_range, + minecraft_version : minecraft_version, minecraft_version_range: minecraft_version_range, + neo_version : neo_version, neo_version_range: neo_version_range, loader_version_range: loader_version_range, - mod_id: mod_id, mod_name: mod_name, mod_license: mod_license, mod_version: mod_version, - mod_authors: mod_authors, mod_description: mod_description, + mod_id : mod_id, mod_name: mod_name, mod_license: mod_license, mod_version: mod_version, + mod_authors : mod_authors, mod_description: mod_description, pack_format_number: pack_format_number, ] inputs.properties replaceProperties @@ -193,6 +196,7 @@ tasks.named('processResources', ProcessResources).configure { } } + // Example for how to get properties into the manifest for reading at runtime. tasks.named('jar', Jar).configure { manifest { diff --git a/gradle.properties b/gradle.properties index 59315a1..50d0486 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,21 +3,19 @@ org.gradle.jvmargs=-Xmx3G org.gradle.daemon=false -libzontreck=1.10.021324.2257 +libzontreck=1.10.021424.0400 ## Environment Properties # The Minecraft version must agree with the Forge version to get a valid artifact 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) -# The Forge version must agree with the Minecraft version to get a valid artifact -forge_version=47.2.0 -# The Forge version range can use any version of Forge as bounds or match the loader version range -forge_version_range=[47,) -# The loader version range can only use the major version of Forge/FML as bounds + +minecraft_version_range=[1.20,1.21) +# The Neo version must agree with the Minecraft version to get a valid artifact +neo_version=47.1.65 +# The Neo version range can use any version of Neo as bounds or match the loader version range +neo_version_range=[47.1,) +# The loader version range can only use the major version of Neo/FML as bounds loader_version_range=[47,) # The mapping channel to use for mappings. # The default set of supported mapping channels are ["official", "snapshot", "snapshot_nodoc", "stable", "stable_nodoc"]. @@ -33,10 +31,11 @@ loader_version_range=[47,) # # Parchment is an unofficial project maintained by ParchmentMC, separate from Minecraft Forge. # Additional setup is needed to use their mappings, see https://parchmentmc.org/docs/getting-started -mapping_channel=parchment +mapping_channel=official # The mapping version to query from the mapping channel. # This must match the format required by the mapping channel. -mapping_version=2023.09.03-1.20.1 +mapping_version=1.20.1 + ## Mod Properties diff --git a/src/main/resources/pack.mcmeta b/src/main/resources/pack.mcmeta index eca79ae..7bcc5b9 100644 --- a/src/main/resources/pack.mcmeta +++ b/src/main/resources/pack.mcmeta @@ -3,6 +3,6 @@ "description": { "text": "${mod_id} resources" }, - "pack_format": 15 + "pack_format": ${pack_format_number} } } \ No newline at end of file From 34af0e287c97512ce8eba77b5c908e5257138486 Mon Sep 17 00:00:00 2001 From: Zontreck Date: Wed, 14 Feb 2024 05:12:11 -0700 Subject: [PATCH 03/15] Bump version --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 50d0486..aa5caf7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -48,7 +48,7 @@ mod_name=WatchMyDurability # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=GPLv3 # The mod version. See https://semver.org/ -mod_version=1.2.021324.2310 +mod_version=1.2.021424.0511 # 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 From b9144982da7f184ce1e20c2020840eaefe32c761 Mon Sep 17 00:00:00 2001 From: Zontreck Date: Wed, 14 Feb 2024 05:14:08 -0700 Subject: [PATCH 04/15] Add a missing field --- gradle.properties | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index aa5caf7..409497a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -56,4 +56,7 @@ mod_group_id=dev.zontreck # The authors of the mod. This is a simple text string that is used for display purposes in the mod list. mod_authors=zontreck # The description of the mod. This is a simple multiline text string that is used for display purposes in the mod list. -mod_description=Watches the durability tools, and or your hunger. \ No newline at end of file +mod_description=Watches the durability tools, and or your hunger. + +# Pack version - this changes each minecraft release, in general. +pack_format_number=15 \ No newline at end of file From 2869b6d9d3266717c0df906df74e01240c94e5f7 Mon Sep 17 00:00:00 2001 From: Zontreck Date: Wed, 14 Feb 2024 05:17:22 -0700 Subject: [PATCH 05/15] Replace some non-updated fields --- src/main/resources/META-INF/mods.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 282f267..866d519 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -47,7 +47,7 @@ description='''${mod_description}''' # Does this dependency have to exist - if not, ordering below must be specified mandatory=true #mandatory # The version range of the dependency - versionRange="${forge_version_range}" #mandatory + versionRange="${neo_version_range}" #mandatory # An ordering relationship for the dependency - BEFORE or AFTER required if the dependency is not mandatory # BEFORE - This mod is loaded BEFORE the dependency # AFTER - This mod is loaded AFTER the dependency From 84d5a97137c3f4f2bc189bff341a01964303d62c Mon Sep 17 00:00:00 2001 From: Zontreck Date: Wed, 14 Feb 2024 18:05:45 -0700 Subject: [PATCH 06/15] Update dependency to fix runtime error --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 409497a..d3b1b5c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx3G org.gradle.daemon=false -libzontreck=1.10.021424.0400 +libzontreck=1.10.021424.1759 ## Environment Properties From 639ed3a4b02f97ff3e293fd2ced8b10d6403ec9b Mon Sep 17 00:00:00 2001 From: Zontreck Date: Fri, 16 Feb 2024 15:10:16 -0700 Subject: [PATCH 07/15] Update libzontreck to new API version --- gradle.properties | 2 +- src/main/resources/META-INF/mods.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index d3b1b5c..0b98692 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx3G org.gradle.daemon=false -libzontreck=1.10.021424.1759 +libzontreck=1201.11.021624.1504 ## Environment Properties diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 866d519..3d16987 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -66,7 +66,7 @@ description='''${mod_description}''' [[dependencies.${mod_id}]] modId="libzontreck" mandatory=true - versionRange="[1.10,1.11)" + versionRange="[1201.11,1201.12)" ordering="NONE" side="BOTH" # Features are specific properties of the game environment, that you may want to declare you require. This example declares From ad182844cd3c575d98ce0e6203041a6b577bbc82 Mon Sep 17 00:00:00 2001 From: Zontreck Date: Fri, 16 Feb 2024 15:14:21 -0700 Subject: [PATCH 08/15] Switch to use an adapted semver --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 0b98692..a85b60a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -48,7 +48,7 @@ mod_name=WatchMyDurability # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=GPLv3 # The mod version. See https://semver.org/ -mod_version=1.2.021424.0511 +mod_version=1201.2.021624.1514 # 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 From 13b6ce170ce50fc9e0d95bc26f59a69b43d4819b Mon Sep 17 00:00:00 2001 From: Zontreck Date: Sun, 18 Feb 2024 09:33:06 -0700 Subject: [PATCH 09/15] Switch away from using DelayedExecutor --- gradle.properties | 4 ++-- .../java/dev/zontreck/wmd/WatchMyDurability.java | 15 +++++++++------ 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/gradle.properties b/gradle.properties index a85b60a..600850c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx3G org.gradle.daemon=false -libzontreck=1201.11.021624.1504 +libzontreck=1201.11.021824.0918 ## Environment Properties @@ -48,7 +48,7 @@ mod_name=WatchMyDurability # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=GPLv3 # The mod version. See https://semver.org/ -mod_version=1201.2.021624.1514 +mod_version=1201.2.021824.0932 # 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/java/dev/zontreck/wmd/WatchMyDurability.java b/src/main/java/dev/zontreck/wmd/WatchMyDurability.java index 1707751..4c9a209 100644 --- a/src/main/java/dev/zontreck/wmd/WatchMyDurability.java +++ b/src/main/java/dev/zontreck/wmd/WatchMyDurability.java @@ -17,6 +17,7 @@ import net.minecraft.client.Minecraft; import net.minecraft.client.User; import net.minecraftforge.api.distmarker.Dist; import net.minecraftforge.common.MinecraftForge; +import net.minecraftforge.event.TickEvent; import net.minecraftforge.eventbus.api.IEventBus; import net.minecraftforge.eventbus.api.SubscribeEvent; import net.minecraftforge.fml.ModLoadingContext; @@ -55,6 +56,7 @@ public class WatchMyDurability { IEventBus modEventBus = FMLJavaModLoadingContext.get().getModEventBus(); + DelayedExecutorService.setup(); // Register the commonSetup method for modloading modEventBus.addListener(this::commonSetup); @@ -95,7 +97,6 @@ public class WatchMyDurability //LOGGER.info("HELLO FROM CLIENT SETUP"); //LOGGER.info("MINECRAFT NAME >> {}", Minecraft.getInstance().getUser().getName()); WatchMyDurability.CurrentUser = Minecraft.getInstance().getUser(); - DelayedExecutorService.setup(); //time.schedule(new CheckInventory(), @@ -118,11 +119,14 @@ public class WatchMyDurability //LOGGER.info("PLAYER LOGGED IN"); LOGGER.info(": : : PLAYER LOGGED IN : : :"); WatchMyDurability.isInGame=true; - DelayedExecutorService.start(); + } - DelayedExecutorService.getInstance().scheduleRepeating(CheckInventory.getInstance(), WMDClientConfig.TimerVal.get()); - DelayedExecutorService.getInstance().scheduleRepeating(CheckHealth.getInstance(), WMDClientConfig.TimerVal.get()); - DelayedExecutorService.getInstance().scheduleRepeating(CheckHunger.getInstance(), WMDClientConfig.TimerVal.get()); + @SubscribeEvent + public static void onTick(TickEvent.ClientTickEvent ev) + { + CheckInventory.getInstance().run(); + CheckHealth.getInstance().run(); + CheckHunger.getInstance().run(); } @SubscribeEvent @@ -131,7 +135,6 @@ public class WatchMyDurability LOGGER.info(": : : PLAYER LOGGED OUT : : :"); WatchMyDurability.isInGame=false; WatchMyDurability.WMD_SERVER_AVAILABLE=false; - DelayedExecutorService.stop(); } @SubscribeEvent From 135f0a3c10e71ca47e8027da133718a8b85f555e Mon Sep 17 00:00:00 2001 From: Zontreck Date: Sun, 18 Feb 2024 09:47:03 -0700 Subject: [PATCH 10/15] Reduce the potential impact of checking everything on ticks --- gradle.properties | 2 +- src/main/java/dev/zontreck/wmd/WatchMyDurability.java | 11 ++++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/gradle.properties b/gradle.properties index 600850c..1d6bd2a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -48,7 +48,7 @@ mod_name=WatchMyDurability # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=GPLv3 # The mod version. See https://semver.org/ -mod_version=1201.2.021824.0932 +mod_version=1201.2.021824.0945 # 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/java/dev/zontreck/wmd/WatchMyDurability.java b/src/main/java/dev/zontreck/wmd/WatchMyDurability.java index 4c9a209..ebca486 100644 --- a/src/main/java/dev/zontreck/wmd/WatchMyDurability.java +++ b/src/main/java/dev/zontreck/wmd/WatchMyDurability.java @@ -112,6 +112,7 @@ public class WatchMyDurability @Mod.EventBusSubscriber(modid = MODID, bus = Mod.EventBusSubscriber.Bus.FORGE, value = Dist.CLIENT) public static class ClientEvents { + static int TICKS=0; @SubscribeEvent public static void onJoin(ClientPlayerNetworkEvent.LoggingIn event){ @@ -124,9 +125,13 @@ public class WatchMyDurability @SubscribeEvent public static void onTick(TickEvent.ClientTickEvent ev) { - CheckInventory.getInstance().run(); - CheckHealth.getInstance().run(); - CheckHunger.getInstance().run(); + if(ev.phase == TickEvent.Phase.END && TICKS >= 40) + { + TICKS=0; + CheckInventory.getInstance().run(); + CheckHealth.getInstance().run(); + CheckHunger.getInstance().run(); + }else TICKS++; } @SubscribeEvent From 44a8007e33d3c8d481ba560114d619af40d6a1e0 Mon Sep 17 00:00:00 2001 From: Zontreck Date: Sun, 18 Feb 2024 09:53:06 -0700 Subject: [PATCH 11/15] Client crash when not in game --- gradle.properties | 2 +- src/main/java/dev/zontreck/wmd/WatchMyDurability.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index 1d6bd2a..facffbb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -48,7 +48,7 @@ mod_name=WatchMyDurability # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=GPLv3 # The mod version. See https://semver.org/ -mod_version=1201.2.021824.0945 +mod_version=1201.2.021824.0952 # 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/java/dev/zontreck/wmd/WatchMyDurability.java b/src/main/java/dev/zontreck/wmd/WatchMyDurability.java index ebca486..a850631 100644 --- a/src/main/java/dev/zontreck/wmd/WatchMyDurability.java +++ b/src/main/java/dev/zontreck/wmd/WatchMyDurability.java @@ -125,7 +125,7 @@ public class WatchMyDurability @SubscribeEvent public static void onTick(TickEvent.ClientTickEvent ev) { - if(ev.phase == TickEvent.Phase.END && TICKS >= 40) + if(ev.phase == TickEvent.Phase.END && TICKS >= 40 && isInGame) { TICKS=0; CheckInventory.getInstance().run(); From 0c9a74628339542a9bfcb52dff02d67ded5a3fe7 Mon Sep 17 00:00:00 2001 From: Zontreck Date: Sun, 18 Feb 2024 10:06:23 -0700 Subject: [PATCH 12/15] Remove deprecated calls --- gradle.properties | 4 ++-- src/main/java/dev/zontreck/wmd/WatchMyDurability.java | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/gradle.properties b/gradle.properties index facffbb..5c64da3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx3G org.gradle.daemon=false -libzontreck=1201.11.021824.0918 +libzontreck=1201.11.021824.0959 ## Environment Properties @@ -48,7 +48,7 @@ mod_name=WatchMyDurability # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=GPLv3 # The mod version. See https://semver.org/ -mod_version=1201.2.021824.0952 +mod_version=1201.2.021824.1005 # 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/java/dev/zontreck/wmd/WatchMyDurability.java b/src/main/java/dev/zontreck/wmd/WatchMyDurability.java index a850631..b9dc0c6 100644 --- a/src/main/java/dev/zontreck/wmd/WatchMyDurability.java +++ b/src/main/java/dev/zontreck/wmd/WatchMyDurability.java @@ -56,7 +56,6 @@ public class WatchMyDurability { IEventBus modEventBus = FMLJavaModLoadingContext.get().getModEventBus(); - DelayedExecutorService.setup(); // Register the commonSetup method for modloading modEventBus.addListener(this::commonSetup); From 943e80ada56361246eb1fe7edaf11753253b34d9 Mon Sep 17 00:00:00 2001 From: zontreck Date: Fri, 12 Apr 2024 07:56:12 -0700 Subject: [PATCH 13/15] Update WMD to new LZ major API --- gradle.properties | 4 ++-- src/main/resources/META-INF/mods.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gradle.properties b/gradle.properties index 5c64da3..31a42da 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx3G org.gradle.daemon=false -libzontreck=1201.11.021824.0959 +libzontreck=1201.13.041224.0752 ## Environment Properties @@ -48,7 +48,7 @@ mod_name=WatchMyDurability # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=GPLv3 # The mod version. See https://semver.org/ -mod_version=1201.2.021824.1005 +mod_version=1201.2.041224.0755 # 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 3d16987..349391a 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -66,7 +66,7 @@ description='''${mod_description}''' [[dependencies.${mod_id}]] modId="libzontreck" mandatory=true - versionRange="[1201.11,1201.12)" + versionRange="[1201.13,1201.14)" ordering="NONE" side="BOTH" # Features are specific properties of the game environment, that you may want to declare you require. This example declares From 06098f3daf57942650656f04def4440307874d27 Mon Sep 17 00:00:00 2001 From: zontreck Date: Tue, 23 Apr 2024 18:50:44 -0700 Subject: [PATCH 14/15] Bump LibZontreck's mod dependency version --- gradle.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index 31a42da..e3fedab 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx3G org.gradle.daemon=false -libzontreck=1201.13.041224.0752 +libzontreck=1201.13.042324.1837 ## Environment Properties @@ -48,7 +48,7 @@ mod_name=WatchMyDurability # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=GPLv3 # The mod version. See https://semver.org/ -mod_version=1201.2.041224.0755 +mod_version=1201.2.042324.1850 # 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 From cdbd2537a72671026d2ba0082abc1b7a64c28bed Mon Sep 17 00:00:00 2001 From: zontreck Date: Tue, 30 Apr 2024 04:17:53 -0700 Subject: [PATCH 15/15] Bump LibZontreck --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index e3fedab..a1ecdb3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx3G org.gradle.daemon=false -libzontreck=1201.13.042324.1837 +libzontreck=1201.13.043024.0404 ## Environment Properties