From 8116de29587fd55cc460cc9e9cf9ed39d2948874 Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Mon, 18 Dec 2023 20:25:42 +0100 Subject: [PATCH 01/24] [Wurst-Bot] Update to 23w51b --- build.gradle | 356 +++++++++++++++++++++++----------------------- changelog.txt | 4 +- gradle.properties | 10 +- 3 files changed, 185 insertions(+), 185 deletions(-) diff --git a/build.gradle b/build.gradle index 3c612ef..cfb18cf 100644 --- a/build.gradle +++ b/build.gradle @@ -1,178 +1,178 @@ -buildscript { - dependencies { - classpath 'org.kohsuke:github-api:1.135' - } -} - -plugins { - id 'fabric-loom' version '1.4-SNAPSHOT' - id 'maven-publish' - id 'com.matthewprenger.cursegradle' version '1.4.0' - id "com.modrinth.minotaur" version "2.+" - id 'com.diffplug.spotless' version '6.23.3' -} - -def ENV = System.getenv() - -sourceCompatibility = JavaVersion.VERSION_17 -targetCompatibility = JavaVersion.VERSION_17 - -archivesBaseName = project.archives_base_name -version = project.mod_version -group = project.maven_group - -repositories { - // Add repositories to retrieve artifacts from in here. - // You should only use this when depending on other mods because - // Loom adds the essential maven repositories to download Minecraft and libraries from automatically. - // See https://docs.gradle.org/current/userguide/declaring_repositories.html - // for more information about repositories. -} - -dependencies { - // To change the versions see the gradle.properties file - minecraft "com.mojang:minecraft:${project.minecraft_version}" - mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" - modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" - - // Fabric API. This is technically optional, but you probably want it anyway. - modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" -} - -processResources { - inputs.property "version", project.version - - filesMatching("fabric.mod.json") { - expand "version": project.version - } -} - -tasks.withType(JavaCompile).configureEach { - // Minecraft 1.18 (1.18-pre2) upwards uses Java 17. - it.options.release = 17 -} - -java { - // Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task - // if it is present. - // If you remove this line, sources will not be generated. - withSourcesJar() -} - -jar { - from("LICENSE") { - rename { "${it}_${project.archivesBaseName}"} - } -} - -spotless { - java { - removeUnusedImports() - indentWithTabs() - trimTrailingWhitespace() - eclipse().configFile(file("codestyle/formatter.xml")) - lineEndings('WINDOWS') - } -} - -// configure the maven publication -publishing { - publications { - mavenJava(MavenPublication) { - from components.java - } - } - - // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing. - repositories { - // Add repositories to publish to here. - // Notice: This block does NOT have the same function as the block in the top level. - // The repositories here will be used for publishing your artifact, not for - // retrieving dependencies. - } -} - -curseforge { - if (ENV.CURSEFORGE_API_KEY) { - apiKey = ENV.CURSEFORGE_API_KEY - } - - project { - id = "349630" - changelogType = "html" - changelog = file("changelog.txt") - releaseType = "release" - addGameVersion "1.20.4" - addGameVersion "Fabric" - - mainArtifact(file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar")) - addArtifact file("${project.buildDir}/libs/${archivesBaseName}-${version}-sources.jar") - addArtifact file("${project.buildDir}/libs/${archivesBaseName}-${version}-dev.jar") - addArtifact file("${project.buildDir}/libs/${archivesBaseName}-${version}-sources-dev.jar") - - relations { - requiredDependency "fabric-api" - } - } - - options { - forgeGradleIntegration = false - } -} - -modrinth { - if (ENV.MODRINTH_TOKEN) { - token = ENV.MODRINTH_TOKEN - } - projectId = "wi-zoom" - versionName = "WI Zoom ${version}" - versionType = "release" - uploadFile = remapJar - additionalFiles = [ - file("${project.buildDir}/libs/${archivesBaseName}-${version}-sources.jar"), - file("${project.buildDir}/libs/${archivesBaseName}-${version}-dev.jar"), - file("${project.buildDir}/libs/${archivesBaseName}-${version}-sources-dev.jar") - ] - changelog = "A changelog can be found at: [https://www.wimods.net/wi-zoom/wi-zoom-1-5/](https://www.wimods.net/wi-zoom/wi-zoom-1-5/?mc=${project.minecraft_version}&utm_source=Modrinth&utm_medium=WI+Zoom&utm_campaign=Changelog&utm_content=Modrinth+WI+Zoom+MC${project.minecraft_version})" - dependencies { - required.version "fabric-api", project.fabric_version - } -} - -afterEvaluate { - tasks.curseforge349630.dependsOn moveDevLibs - tasks.modrinth.dependsOn moveDevLibs -} - -task moveDevLibs(dependsOn: [remapJar, remapSourcesJar]) { - doLast { - ant.move(file:"${project.buildDir}/devlibs/${archivesBaseName}-${version}-dev.jar", tofile:"${project.buildDir}/libs/${archivesBaseName}-${version}-dev.jar") - ant.move(file:"${project.buildDir}/devlibs/${archivesBaseName}-${version}-sources.jar", tofile:"${project.buildDir}/libs/${archivesBaseName}-${version}-sources-dev.jar") - } -} - -import org.kohsuke.github.GHReleaseBuilder -import org.kohsuke.github.GitHub - -task github(dependsOn: moveDevLibs) { - onlyIf { - ENV.GITHUB_TOKEN - } - - doLast { - def github = GitHub.connectUsingOAuth(ENV.GITHUB_TOKEN as String) - def repository = github.getRepository("Wurst-Imperium-MCX/WI-Zoom") - def ghVersion = "v" + version.substring(0, version.indexOf("-")) - - def ghRelease = repository.getReleaseByTagName(ghVersion as String); - if(ghRelease == null) { - def releaseBuilder = new GHReleaseBuilder(repository, ghVersion as String) - ghRelease = releaseBuilder.create() - } - - ghRelease.uploadAsset(remapJar.archiveFile.get().getAsFile(), "application/java-archive"); - ghRelease.uploadAsset(remapSourcesJar.archiveFile.get().getAsFile(), "application/java-archive") - ghRelease.uploadAsset(new File("${project.buildDir}/libs/${archivesBaseName}-${version}-dev.jar"), "application/java-archive") - ghRelease.uploadAsset(new File("${project.buildDir}/libs/${archivesBaseName}-${version}-sources-dev.jar"), "application/java-archive") - } -} +buildscript { + dependencies { + classpath 'org.kohsuke:github-api:1.135' + } +} + +plugins { + id 'fabric-loom' version '1.4-SNAPSHOT' + id 'maven-publish' + id 'com.matthewprenger.cursegradle' version '1.4.0' + id "com.modrinth.minotaur" version "2.+" + id 'com.diffplug.spotless' version '6.23.3' +} + +def ENV = System.getenv() + +sourceCompatibility = JavaVersion.VERSION_17 +targetCompatibility = JavaVersion.VERSION_17 + +archivesBaseName = project.archives_base_name +version = project.mod_version +group = project.maven_group + +repositories { + // Add repositories to retrieve artifacts from in here. + // You should only use this when depending on other mods because + // Loom adds the essential maven repositories to download Minecraft and libraries from automatically. + // See https://docs.gradle.org/current/userguide/declaring_repositories.html + // for more information about repositories. +} + +dependencies { + // To change the versions see the gradle.properties file + minecraft "com.mojang:minecraft:${project.minecraft_version}" + mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" + modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" + + // Fabric API. This is technically optional, but you probably want it anyway. + modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" +} + +processResources { + inputs.property "version", project.version + + filesMatching("fabric.mod.json") { + expand "version": project.version + } +} + +tasks.withType(JavaCompile).configureEach { + // Minecraft 1.18 (1.18-pre2) upwards uses Java 17. + it.options.release = 17 +} + +java { + // Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task + // if it is present. + // If you remove this line, sources will not be generated. + withSourcesJar() +} + +jar { + from("LICENSE") { + rename { "${it}_${project.archivesBaseName}"} + } +} + +spotless { + java { + removeUnusedImports() + indentWithTabs() + trimTrailingWhitespace() + eclipse().configFile(file("codestyle/formatter.xml")) + lineEndings('WINDOWS') + } +} + +// configure the maven publication +publishing { + publications { + mavenJava(MavenPublication) { + from components.java + } + } + + // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing. + repositories { + // Add repositories to publish to here. + // Notice: This block does NOT have the same function as the block in the top level. + // The repositories here will be used for publishing your artifact, not for + // retrieving dependencies. + } +} + +curseforge { + if (ENV.CURSEFORGE_API_KEY) { + apiKey = ENV.CURSEFORGE_API_KEY + } + + project { + id = "349630" + changelogType = "html" + changelog = file("changelog.txt") + releaseType = "release" + addGameVersion "1.20.5-Snapshot" + addGameVersion "Fabric" + + mainArtifact(file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar")) + addArtifact file("${project.buildDir}/libs/${archivesBaseName}-${version}-sources.jar") + addArtifact file("${project.buildDir}/libs/${archivesBaseName}-${version}-dev.jar") + addArtifact file("${project.buildDir}/libs/${archivesBaseName}-${version}-sources-dev.jar") + + relations { + requiredDependency "fabric-api" + } + } + + options { + forgeGradleIntegration = false + } +} + +modrinth { + if (ENV.MODRINTH_TOKEN) { + token = ENV.MODRINTH_TOKEN + } + projectId = "wi-zoom" + versionName = "WI Zoom ${version}" + versionType = "release" + uploadFile = remapJar + additionalFiles = [ + file("${project.buildDir}/libs/${archivesBaseName}-${version}-sources.jar"), + file("${project.buildDir}/libs/${archivesBaseName}-${version}-dev.jar"), + file("${project.buildDir}/libs/${archivesBaseName}-${version}-sources-dev.jar") + ] + changelog = "A changelog can be found at: [https://www.wimods.net/wi-zoom/wi-zoom-1-5/](https://www.wimods.net/wi-zoom/wi-zoom-1-5/?mc=${project.minecraft_version}&utm_source=Modrinth&utm_medium=WI+Zoom&utm_campaign=Changelog&utm_content=Modrinth+WI+Zoom+MC${project.minecraft_version})" + dependencies { + required.version "fabric-api", project.fabric_version + } +} + +afterEvaluate { + tasks.curseforge349630.dependsOn moveDevLibs + tasks.modrinth.dependsOn moveDevLibs +} + +task moveDevLibs(dependsOn: [remapJar, remapSourcesJar]) { + doLast { + ant.move(file:"${project.buildDir}/devlibs/${archivesBaseName}-${version}-dev.jar", tofile:"${project.buildDir}/libs/${archivesBaseName}-${version}-dev.jar") + ant.move(file:"${project.buildDir}/devlibs/${archivesBaseName}-${version}-sources.jar", tofile:"${project.buildDir}/libs/${archivesBaseName}-${version}-sources-dev.jar") + } +} + +import org.kohsuke.github.GHReleaseBuilder +import org.kohsuke.github.GitHub + +task github(dependsOn: moveDevLibs) { + onlyIf { + ENV.GITHUB_TOKEN + } + + doLast { + def github = GitHub.connectUsingOAuth(ENV.GITHUB_TOKEN as String) + def repository = github.getRepository("Wurst-Imperium-MCX/WI-Zoom") + def ghVersion = "v" + version.substring(0, version.indexOf("-")) + + def ghRelease = repository.getReleaseByTagName(ghVersion as String); + if(ghRelease == null) { + def releaseBuilder = new GHReleaseBuilder(repository, ghVersion as String) + ghRelease = releaseBuilder.create() + } + + ghRelease.uploadAsset(remapJar.archiveFile.get().getAsFile(), "application/java-archive"); + ghRelease.uploadAsset(remapSourcesJar.archiveFile.get().getAsFile(), "application/java-archive") + ghRelease.uploadAsset(new File("${project.buildDir}/libs/${archivesBaseName}-${version}-dev.jar"), "application/java-archive") + ghRelease.uploadAsset(new File("${project.buildDir}/libs/${archivesBaseName}-${version}-sources-dev.jar"), "application/java-archive") + } +} diff --git a/changelog.txt b/changelog.txt index 627714d..b020e36 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 1.20.4.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 23w51b.

diff --git a/gradle.properties b/gradle.properties index c7fdcd9..7b89aa0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=1.20.4 -yarn_mappings=1.20.4+build.3 -loader_version=0.15.1 +minecraft_version=23w51b +yarn_mappings=23w51b+build.1 +loader_version=0.15.3 #Fabric api -fabric_version=0.91.2+1.20.4 +fabric_version=0.91.4+1.20.5 # Mod Properties -mod_version = 1.5-MC1.20.4 +mod_version = 1.5-MC23w51b maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From dfbe90c21c52a7c1733900950a969a6df3145848 Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Wed, 24 Jan 2024 11:13:13 +0100 Subject: [PATCH 02/24] [Wurst-Bot] Update to 24w03b --- changelog.txt | 4 ++-- gradle.properties | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/changelog.txt b/changelog.txt index b020e36..9f408eb 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 23w51b.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 24w03b.

diff --git a/gradle.properties b/gradle.properties index 7b89aa0..f332eb5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=23w51b -yarn_mappings=23w51b+build.1 -loader_version=0.15.3 +minecraft_version=24w03b +yarn_mappings=24w03b+build.6 +loader_version=0.15.6 #Fabric api -fabric_version=0.91.4+1.20.5 +fabric_version=0.95.1+1.20.5 # Mod Properties -mod_version = 1.5-MC23w51b +mod_version = 1.5-MC24w03b maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From ac604fe1a1cda6e75076539e867245bfd3870239 Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Wed, 24 Jan 2024 14:56:53 +0100 Subject: [PATCH 03/24] Update to 24w03b --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index cfb18cf..3665731 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { } plugins { - id 'fabric-loom' version '1.4-SNAPSHOT' + id 'fabric-loom' version '1.5-SNAPSHOT' id 'maven-publish' id 'com.matthewprenger.cursegradle' version '1.4.0' id "com.modrinth.minotaur" version "2.+" From c8c751e4ed521992ed828bca58b53d58200daa7f Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Thu, 25 Jan 2024 07:30:59 +0100 Subject: [PATCH 04/24] [Wurst-Bot] Update to 24w04a --- changelog.txt | 4 ++-- gradle.properties | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/changelog.txt b/changelog.txt index 9f408eb..d2b5798 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 24w03b.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 24w04a.

diff --git a/gradle.properties b/gradle.properties index f332eb5..7d01f00 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=24w03b -yarn_mappings=24w03b+build.6 +minecraft_version=24w04a +yarn_mappings=24w04a+build.2 loader_version=0.15.6 #Fabric api -fabric_version=0.95.1+1.20.5 +fabric_version=0.95.2+1.20.5 # Mod Properties -mod_version = 1.5-MC24w03b +mod_version = 1.5-MC24w04a maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From 3f4e25a53cf09820cf2c9a509314445ad9352919 Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Thu, 1 Feb 2024 11:50:41 +0100 Subject: [PATCH 05/24] [Wurst-Bot] Update to 24w05a --- changelog.txt | 4 ++-- gradle.properties | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/changelog.txt b/changelog.txt index d2b5798..e346561 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 24w04a.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 24w05a.

diff --git a/gradle.properties b/gradle.properties index 7d01f00..ca907f5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=24w04a -yarn_mappings=24w04a+build.2 +minecraft_version=24w05a +yarn_mappings=24w05a+build.4 loader_version=0.15.6 #Fabric api -fabric_version=0.95.2+1.20.5 +fabric_version=0.95.4+1.20.5 # Mod Properties -mod_version = 1.5-MC24w04a +mod_version = 1.5-MC24w05a maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From d552ec636f70871958c2ac8a77cebc96b4a4126d Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Sat, 10 Feb 2024 16:18:26 +0100 Subject: [PATCH 06/24] [Wurst-Bot] Update to 24w06a --- changelog.txt | 4 ++-- gradle.properties | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/changelog.txt b/changelog.txt index e346561..436262d 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 24w05a.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 24w06a.

diff --git a/gradle.properties b/gradle.properties index ca907f5..7c62be8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=24w05a -yarn_mappings=24w05a+build.4 +minecraft_version=24w06a +yarn_mappings=24w06a+build.7 loader_version=0.15.6 #Fabric api -fabric_version=0.95.4+1.20.5 +fabric_version=0.96.0+1.20.5 # Mod Properties -mod_version = 1.5-MC24w05a +mod_version = 1.5-MC24w06a maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From 1d178e7e584e5c844b8b0eb4e0d4a70ff54c5035 Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Thu, 15 Feb 2024 17:14:24 +0100 Subject: [PATCH 07/24] [Wurst-Bot] Update to 24w07a --- changelog.txt | 4 ++-- gradle.properties | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/changelog.txt b/changelog.txt index 436262d..a85555b 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 24w06a.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 24w07a.

diff --git a/gradle.properties b/gradle.properties index 7c62be8..697cd22 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=24w06a -yarn_mappings=24w06a+build.7 -loader_version=0.15.6 +minecraft_version=24w07a +yarn_mappings=24w07a+build.4 +loader_version=0.15.7 #Fabric api -fabric_version=0.96.0+1.20.5 +fabric_version=0.96.2+1.20.5 # Mod Properties -mod_version = 1.5-MC24w06a +mod_version = 1.5-MC24w07a maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From 2828927abb935dc30b7dd7211c568830a00a53f5 Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Sat, 2 Mar 2024 13:32:50 +0100 Subject: [PATCH 08/24] [Wurst-Bot] Update to 24w09a --- changelog.txt | 4 ++-- gradle.properties | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/changelog.txt b/changelog.txt index a85555b..61e4e4c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 24w07a.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 24w09a.

diff --git a/gradle.properties b/gradle.properties index 697cd22..3be8876 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=24w07a -yarn_mappings=24w07a+build.4 +minecraft_version=24w09a +yarn_mappings=24w09a+build.8 loader_version=0.15.7 #Fabric api -fabric_version=0.96.2+1.20.5 +fabric_version=0.96.6+1.20.5 # Mod Properties -mod_version = 1.5-MC24w07a +mod_version = 1.5-MC24w09a maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From 93f97383fe2be210bbe7e25e346bb101fb301d32 Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Wed, 6 Mar 2024 19:27:41 +0100 Subject: [PATCH 09/24] [Wurst-Bot] Update to 24w10a --- changelog.txt | 4 ++-- gradle.properties | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/changelog.txt b/changelog.txt index 61e4e4c..650510c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 24w09a.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 24w10a.

diff --git a/gradle.properties b/gradle.properties index 3be8876..11f1727 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=24w09a -yarn_mappings=24w09a+build.8 +minecraft_version=24w10a +yarn_mappings=24w10a+build.1 loader_version=0.15.7 #Fabric api -fabric_version=0.96.6+1.20.5 +fabric_version=0.96.8+1.20.5 # Mod Properties -mod_version = 1.5-MC24w09a +mod_version = 1.5-MC24w10a maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From 3bdb71989f2d1171b5ab58229878d384a0e4b62b Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Thu, 14 Mar 2024 21:43:17 +0100 Subject: [PATCH 10/24] [Wurst-Bot] Update to 24w11a --- changelog.txt | 4 ++-- gradle.properties | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/changelog.txt b/changelog.txt index 650510c..d7d7a53 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 24w10a.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 24w11a.

diff --git a/gradle.properties b/gradle.properties index 11f1727..5455eae 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=24w10a -yarn_mappings=24w10a+build.1 +minecraft_version=24w11a +yarn_mappings=24w11a+build.2 loader_version=0.15.7 #Fabric api -fabric_version=0.96.8+1.20.5 +fabric_version=0.96.9+1.20.5 # Mod Properties -mod_version = 1.5-MC24w10a +mod_version = 1.5-MC24w11a maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From d95e148671fe00b69d6a17c66e57db278e69a0ad Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Wed, 20 Mar 2024 20:50:30 +0100 Subject: [PATCH 11/24] [Wurst-Bot] Update to 24w12a --- changelog.txt | 4 ++-- gradle.properties | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/changelog.txt b/changelog.txt index d7d7a53..e51f907 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 24w11a.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 24w12a.

diff --git a/gradle.properties b/gradle.properties index 5455eae..452107d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=24w11a -yarn_mappings=24w11a+build.2 +minecraft_version=24w12a +yarn_mappings=24w12a+build.3 loader_version=0.15.7 #Fabric api -fabric_version=0.96.9+1.20.5 +fabric_version=0.96.12+1.20.5 # Mod Properties -mod_version = 1.5-MC24w11a +mod_version = 1.5-MC24w12a maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From c60d5e7558ef4b51239a88dc927f1dd9eb46a9d3 Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Thu, 28 Mar 2024 14:42:34 +0100 Subject: [PATCH 12/24] [Wurst-Bot] Update to 24w13a --- changelog.txt | 4 ++-- gradle.properties | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/changelog.txt b/changelog.txt index e51f907..b6c406f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 24w12a.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 24w13a.

diff --git a/gradle.properties b/gradle.properties index 452107d..3bfe4fe 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=24w12a -yarn_mappings=24w12a+build.3 +minecraft_version=24w13a +yarn_mappings=24w13a+build.4 loader_version=0.15.7 #Fabric api -fabric_version=0.96.12+1.20.5 +fabric_version=0.96.13+1.20.5 # Mod Properties -mod_version = 1.5-MC24w12a +mod_version = 1.5-MC24w13a maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From c19368a57c55c9eeef1ca6ae9430a0e780d89ef1 Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Wed, 3 Apr 2024 17:14:31 +0200 Subject: [PATCH 13/24] [Wurst-Bot] Update to 24w14a --- build.gradle | 6 +++--- changelog.txt | 4 ++-- gradle.properties | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/build.gradle b/build.gradle index bb539b4..dba8f77 100644 --- a/build.gradle +++ b/build.gradle @@ -78,7 +78,7 @@ spotless { // configure the maven publication publishing { publications { - create("mavenJava", MavenPublication) { + create("mavenJava", MavenPublication) { from components.java } } @@ -164,13 +164,13 @@ task github(dependsOn: moveDevLibs) { def repository = github.getRepository("Wurst-Imperium-MCX/WI-Zoom") def ghVersion = "v" + version.substring(0, version.indexOf("-")) - def ghRelease = repository.getReleaseByTagName(ghVersion as String) + def ghRelease = repository.getReleaseByTagName(ghVersion as String) if(ghRelease == null) { def releaseBuilder = new GHReleaseBuilder(repository, ghVersion as String) ghRelease = releaseBuilder.create() } - ghRelease.uploadAsset(remapJar.archiveFile.get().getAsFile(), "application/java-archive") + ghRelease.uploadAsset(remapJar.archiveFile.get().getAsFile(), "application/java-archive") ghRelease.uploadAsset(remapSourcesJar.archiveFile.get().getAsFile(), "application/java-archive") ghRelease.uploadAsset(new File("${project.buildDir}/libs/${archivesBaseName}-${version}-dev.jar"), "application/java-archive") ghRelease.uploadAsset(new File("${project.buildDir}/libs/${archivesBaseName}-${version}-sources-dev.jar"), "application/java-archive") diff --git a/changelog.txt b/changelog.txt index b6c406f..e9bc6fb 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 24w13a.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 24w14a.

diff --git a/gradle.properties b/gradle.properties index 2e6b5ae..7b84b87 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=24w13a -yarn_mappings=24w13a+build.4 +minecraft_version=24w14a +yarn_mappings=24w14a+build.2 loader_version=0.15.9 #Fabric api -fabric_version=0.96.13+1.20.5 +fabric_version=0.96.14+1.20.5 # Mod Properties -mod_version = 1.5-MC24w13a +mod_version = 1.5-MC24w14a maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From f04cf336b26f300afce365c2a0e51bb031a5df37 Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Wed, 3 Apr 2024 18:22:38 +0200 Subject: [PATCH 14/24] Update to 24w14a and Java 21 --- .github/workflows/gradle.yml | 4 ++-- README.md | 2 +- build.gradle | 8 ++++---- src/main/resources/fabric.mod.json | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 7f4b1a7..daa6bd3 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -23,10 +23,10 @@ jobs: - name: Validate Gradle wrapper uses: gradle/wrapper-validation-action@v2 - - name: Set up Java 17 + - name: Set up Java 21 uses: actions/setup-java@v4 with: - java-version: '17' + java-version: '21' distribution: 'microsoft' - name: Grant execute permission for gradlew diff --git a/README.md b/README.md index 3f56058..7556143 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ The zoom from the [Wurst Client](https://www.wurstclient.net/) as a standalone m ## Setup (for developers) -(This assumes that you are using Windows with [Eclipse](https://www.eclipse.org/downloads/) and [Java Development Kit 17](https://adoptium.net/?variant=openjdk17&jvmVariant=hotspot) already installed.) +(This assumes that you are using Windows with [Eclipse](https://www.eclipse.org/downloads/) and [Java Development Kit 21](https://adoptium.net/?variant=openjdk21&jvmVariant=hotspot) already installed.) 1. Clone or download the repository. diff --git a/build.gradle b/build.gradle index dba8f77..bbaf7bb 100644 --- a/build.gradle +++ b/build.gradle @@ -14,8 +14,8 @@ plugins { def ENV = System.getenv() -sourceCompatibility = JavaVersion.VERSION_17 -targetCompatibility = JavaVersion.VERSION_17 +sourceCompatibility = JavaVersion.VERSION_21 +targetCompatibility = JavaVersion.VERSION_21 archivesBaseName = project.archives_base_name version = project.mod_version @@ -48,8 +48,8 @@ processResources { } tasks.withType(JavaCompile).configureEach { - // Minecraft 1.18 (1.18-pre2) upwards uses Java 17. - it.options.release = 17 + // Minecraft 1.20.5 (24w14a) upwards uses Java 21. + it.options.release = 21 } java { diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index fb66737..8228236 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -31,9 +31,9 @@ "depends": { "fabricloader": ">=0.15.9", - "fabric-api": ">=0.76.1", - "minecraft": "~1.20-alpha.23.12.a", - "java": ">=17" + "fabric-api": ">=0.96.14", + "minecraft": "~1.20.5-alpha.24.14.a", + "java": ">=21" }, "suggests": { "cameranoclip": "*", From 520b3debf275dc1277e4a62ac839af834790d5f4 Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Wed, 10 Apr 2024 20:46:39 +0200 Subject: [PATCH 15/24] [Wurst-Bot] Update to 1.20.5-pre1 --- changelog.txt | 4 ++-- gradle.properties | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/changelog.txt b/changelog.txt index e9bc6fb..8d89cf3 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 24w14a.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 1.20.5-pre1.

diff --git a/gradle.properties b/gradle.properties index 7b84b87..f33e12c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=24w14a -yarn_mappings=24w14a+build.2 +minecraft_version=1.20.5-pre1 +yarn_mappings=1.20.5-pre1+build.3 loader_version=0.15.9 #Fabric api -fabric_version=0.96.14+1.20.5 +fabric_version=0.96.15+1.20.5 # Mod Properties -mod_version = 1.5-MC24w14a +mod_version = 1.5-MC1.20.5-pre1 maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From 1b19dde4014ba00e570c52c4fc76818a78cb8ea7 Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Mon, 15 Apr 2024 18:32:48 +0200 Subject: [PATCH 16/24] [Wurst-Bot] Update to 1.20.5-pre2 --- changelog.txt | 4 ++-- gradle.properties | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/changelog.txt b/changelog.txt index 8d89cf3..1452a22 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 1.20.5-pre1.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 1.20.5-pre2.

diff --git a/gradle.properties b/gradle.properties index f33e12c..7462d2b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=1.20.5-pre1 -yarn_mappings=1.20.5-pre1+build.3 -loader_version=0.15.9 +minecraft_version=1.20.5-pre2 +yarn_mappings=1.20.5-pre2+build.1 +loader_version=0.15.10 #Fabric api -fabric_version=0.96.15+1.20.5 +fabric_version=0.97.1+1.20.5 # Mod Properties -mod_version = 1.5-MC1.20.5-pre1 +mod_version = 1.5-MC1.20.5-pre2 maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From 3b79436ae97f56149e66be34042dee2499542ab5 Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Tue, 16 Apr 2024 22:58:56 +0200 Subject: [PATCH 17/24] [Wurst-Bot] Update to 1.20.5-pre3 --- changelog.txt | 4 ++-- gradle.properties | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/changelog.txt b/changelog.txt index 1452a22..49ebb89 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 1.20.5-pre2.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 1.20.5-pre3.

diff --git a/gradle.properties b/gradle.properties index 7462d2b..b81d1e2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=1.20.5-pre2 -yarn_mappings=1.20.5-pre2+build.1 +minecraft_version=1.20.5-pre3 +yarn_mappings=1.20.5-pre3+build.1 loader_version=0.15.10 #Fabric api -fabric_version=0.97.1+1.20.5 +fabric_version=0.97.2+1.20.5 # Mod Properties -mod_version = 1.5-MC1.20.5-pre2 +mod_version = 1.5-MC1.20.5-pre3 maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From d6ffe079d35039156e9e51e77fc13480ba09b046 Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Wed, 17 Apr 2024 20:04:41 +0200 Subject: [PATCH 18/24] [Wurst-Bot] Update to 1.20.5-pre4 --- changelog.txt | 4 ++-- gradle.properties | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/changelog.txt b/changelog.txt index 49ebb89..c141c2b 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 1.20.5-pre3.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 1.20.5-pre4.

diff --git a/gradle.properties b/gradle.properties index b81d1e2..f8bdb69 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=1.20.5-pre3 -yarn_mappings=1.20.5-pre3+build.1 +minecraft_version=1.20.5-pre4 +yarn_mappings=1.20.5-pre4+build.1 loader_version=0.15.10 #Fabric api -fabric_version=0.97.2+1.20.5 +fabric_version=0.97.3+1.20.5 # Mod Properties -mod_version = 1.5-MC1.20.5-pre3 +mod_version = 1.5-MC1.20.5-pre4 maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From 9f928883caa6816f690755f11ddf17d514140227 Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Thu, 18 Apr 2024 18:40:22 +0200 Subject: [PATCH 19/24] [Wurst-Bot] Update to 1.20.5-rc1 --- changelog.txt | 4 ++-- gradle.properties | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/changelog.txt b/changelog.txt index c141c2b..966cac4 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 1.20.5-pre4.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 1.20.5-rc1.

diff --git a/gradle.properties b/gradle.properties index f8bdb69..94a5631 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=1.20.5-pre4 -yarn_mappings=1.20.5-pre4+build.1 +minecraft_version=1.20.5-rc1 +yarn_mappings=1.20.5-rc1+build.1 loader_version=0.15.10 #Fabric api fabric_version=0.97.3+1.20.5 # Mod Properties -mod_version = 1.5-MC1.20.5-pre4 +mod_version = 1.5-MC1.20.5-rc1 maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From d7b5af0f6b4b76ba5291359c088823b6e92f944c Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Fri, 19 Apr 2024 18:38:49 +0200 Subject: [PATCH 20/24] [Wurst-Bot] Update to 1.20.5-rc2 --- changelog.txt | 4 ++-- gradle.properties | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/changelog.txt b/changelog.txt index 966cac4..96c4416 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 1.20.5-rc1.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 1.20.5-rc2.

diff --git a/gradle.properties b/gradle.properties index 94a5631..57a7b75 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=1.20.5-rc1 -yarn_mappings=1.20.5-rc1+build.1 +minecraft_version=1.20.5-rc2 +yarn_mappings=1.20.5-rc2+build.1 loader_version=0.15.10 #Fabric api fabric_version=0.97.3+1.20.5 # Mod Properties -mod_version = 1.5-MC1.20.5-rc1 +mod_version = 1.5-MC1.20.5-rc2 maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From 524e59d339205ad5affeacd26e4cabc8eadb770f Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Mon, 22 Apr 2024 18:59:49 +0200 Subject: [PATCH 21/24] [Wurst-Bot] Update to 1.20.5-rc3 --- changelog.txt | 4 ++-- gradle.properties | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/changelog.txt b/changelog.txt index 96c4416..e9450a5 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 1.20.5-rc2.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 1.20.5-rc3.

diff --git a/gradle.properties b/gradle.properties index 57a7b75..2408852 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=1.20.5-rc2 -yarn_mappings=1.20.5-rc2+build.1 +minecraft_version=1.20.5-rc3 +yarn_mappings=1.20.5-rc3+build.1 loader_version=0.15.10 #Fabric api -fabric_version=0.97.3+1.20.5 +fabric_version=0.97.5+1.20.5 # Mod Properties -mod_version = 1.5-MC1.20.5-rc2 +mod_version = 1.5-MC1.20.5-rc3 maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From fae47760e6e844f423b68906ae8e0c4c0ca63dd8 Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Tue, 23 Apr 2024 18:04:39 +0200 Subject: [PATCH 22/24] [Wurst-Bot] Update to 1.20.5 --- changelog.txt | 4 ++-- gradle.properties | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/changelog.txt b/changelog.txt index e9450a5..156b138 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 1.20.5-rc3.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 1.20.5.

diff --git a/gradle.properties b/gradle.properties index 2408852..0e12674 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=1.20.5-rc3 -yarn_mappings=1.20.5-rc3+build.1 +minecraft_version=1.20.5 +yarn_mappings=1.20.5+build.1 loader_version=0.15.10 #Fabric api fabric_version=0.97.5+1.20.5 # Mod Properties -mod_version = 1.5-MC1.20.5-rc3 +mod_version = 1.5-MC1.20.5 maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From 01acd1e4ed3ad31dfd15ee73bfb5a20bf56984ec Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Fri, 26 Apr 2024 16:10:21 +0200 Subject: [PATCH 23/24] [Wurst-Bot] Update to 1.20.6-rc1 --- changelog.txt | 4 ++-- gradle.properties | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/changelog.txt b/changelog.txt index 156b138..02be704 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 1.20.5.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 1.20.6-rc1.

diff --git a/gradle.properties b/gradle.properties index 0e12674..8fe9e2a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=1.20.5 -yarn_mappings=1.20.5+build.1 +minecraft_version=1.20.6-rc1 +yarn_mappings=1.20.6-rc1+build.4 loader_version=0.15.10 #Fabric api -fabric_version=0.97.5+1.20.5 +fabric_version=0.97.6+1.20.6 # Mod Properties -mod_version = 1.5-MC1.20.5 +mod_version = 1.5-MC1.20.6-rc1 maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom From 01a2301a999e5158f7d5a6c1f3f251d8420898e7 Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Mon, 29 Apr 2024 18:49:37 +0200 Subject: [PATCH 24/24] [Wurst-Bot] Update to 1.20.6 --- build.gradle | 2 +- changelog.txt | 4 ++-- gradle.properties | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index bbaf7bb..3d7be64 100644 --- a/build.gradle +++ b/build.gradle @@ -102,7 +102,7 @@ curseforge { changelogType = "html" changelog = file("changelog.txt") releaseType = "release" - addGameVersion "1.20.5-Snapshot" + addGameVersion "1.20.6" addGameVersion "Fabric" mainArtifact(file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar")) diff --git a/changelog.txt b/changelog.txt index 02be704..cd8d789 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +1,2 @@ -

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

-

Note: This mod requires Fabric API for Minecraft 1.20.6-rc1.

+

A changelog can be found at: https://www.wimods.net/wi-zoom/wi-zoom-1-5/

+

Note: This mod requires Fabric API for Minecraft 1.20.6.

diff --git a/gradle.properties b/gradle.properties index 8fe9e2a..d21cbc5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,15 @@ org.gradle.parallel=true # Fabric Properties # check these at https://fabricmc.net/develop/ and # https://www.curseforge.com/minecraft/mc-mods/fabric-api -minecraft_version=1.20.6-rc1 -yarn_mappings=1.20.6-rc1+build.4 +minecraft_version=1.20.6 +yarn_mappings=1.20.6+build.1 loader_version=0.15.10 #Fabric api -fabric_version=0.97.6+1.20.6 +fabric_version=0.97.8+1.20.6 # Mod Properties -mod_version = 1.5-MC1.20.6-rc1 +mod_version = 1.5-MC1.20.6 maven_group = net.wurstclient.zoom archives_base_name = WI-Zoom