diff --git a/README.md b/README.md index f37016ec7..3b1859631 100644 --- a/README.md +++ b/README.md @@ -11,14 +11,13 @@ SPDX-License-Identifier: MPL-2.0 [![Current build status](https://github.com/cc-tweaked/CC-Tweaked/workflows/Build/badge.svg)](https://github.com/cc-tweaked/CC-Tweaked/actions "Current build status") -[![Download CC: Tweaked on CurseForge](https://img.shields.io/static/v1?label=Download&message=CC:%20Tweaked&color=E04E14&logoColor=E04E14&logo=CurseForge)][CurseForge] [![Download CC: Tweaked on Modrinth](https://img.shields.io/static/v1?label=Download&color=00AF5C&logoColor=00AF5C&logo=Modrinth&message=CC:%20Tweaked)][Modrinth] CC: Tweaked is a mod for Minecraft which adds programmable computers, turtles and more to the game. A fork of the much-beloved [ComputerCraft], it continues its legacy with improved performance and stability, along with a wealth of new features. -CC: Tweaked can be installed from [CurseForge] or [Modrinth]. It runs on both [Minecraft Forge] and [Fabric]. +CC: Tweaked can be installed from [Modrinth]. It runs on both [Minecraft Forge] and [Fabric]. ## Contributing Any contribution is welcome, be that using the mod, reporting bugs or contributing code. If you want to get started @@ -83,7 +82,6 @@ We bundle the API sources with the jar, so documentation should be easily viewab the generated documentation [can be browsed online](https://tweaked.cc/javadoc/). [computercraft]: https://github.com/dan200/ComputerCraft "ComputerCraft on GitHub" -[curseforge]: https://minecraft.curseforge.com/projects/cc-tweaked "Download CC: Tweaked from CurseForge" [modrinth]: https://modrinth.com/mod/gu7yAYhd "Download CC: Tweaked from Modrinth" [Minecraft Forge]: https://files.minecraftforge.net/ "Download Minecraft Forge." [Fabric]: https://fabricmc.net/use/installer/ "Download Fabric." diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index f95a9c1d5..90b6c2391 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -49,7 +49,6 @@ dependencies { implementation(libs.kotlin.plugin) implementation(libs.spotless) - implementation(libs.curseForgeGradle) implementation(libs.fabric.loom) implementation(libs.forgeGradle) implementation(libs.ideaExt) diff --git a/buildSrc/src/main/kotlin/cc-tweaked.mod-publishing.gradle.kts b/buildSrc/src/main/kotlin/cc-tweaked.mod-publishing.gradle.kts index 35e1da36b..f83cd9c77 100644 --- a/buildSrc/src/main/kotlin/cc-tweaked.mod-publishing.gradle.kts +++ b/buildSrc/src/main/kotlin/cc-tweaked.mod-publishing.gradle.kts @@ -2,11 +2,9 @@ // // SPDX-License-Identifier: MPL-2.0 -import net.darkhax.curseforgegradle.TaskPublishCurseForge import cc.tweaked.gradle.setProvider plugins { - id("net.darkhax.curseforgegradle") id("com.modrinth.minotaur") id("cc-tweaked.publishing") } @@ -25,23 +23,6 @@ val isUnstable = project.properties["isUnstable"] == "true" val modVersion: String by extra val mcVersion: String by extra -val publishCurseForge by tasks.registering(TaskPublishCurseForge::class) { - group = PublishingPlugin.PUBLISH_TASK_GROUP - description = "Upload artifacts to CurseForge" - - apiToken = findProperty("curseForgeApiKey") ?: "" - enabled = apiToken != "" - - val mainFile = upload("282001", modPublishing.output) - mainFile.changelog = - "Release notes can be found on the [GitHub repository](https://github.com/cc-tweaked/CC-Tweaked/releases/tag/v$mcVersion-$modVersion)." - mainFile.changelogType = "markdown" - mainFile.releaseType = if (isUnstable) "alpha" else "release" - mainFile.gameVersions.add(mcVersion) -} - -tasks.publish { dependsOn(publishCurseForge) } - modrinth { token.set(findProperty("modrinthApiKey") as String? ?: "") projectId.set("gu7yAYhd") diff --git a/doc/index.md b/doc/index.md index 86f64f65b..cecb2ac15 100644 --- a/doc/index.md +++ b/doc/index.md @@ -16,7 +16,7 @@ CC: Tweaked is a mod for Minecraft which adds programmable computers, turtles an much-beloved [ComputerCraft], it continues its legacy with improved performance and stability, along with a wealth of new features. -CC: Tweaked can be installed from [CurseForge] or [Modrinth]. It runs on both [Minecraft Forge] and [Fabric]. +CC: Tweaked can be installed from [Modrinth]. It runs on both [Minecraft Forge] and [Fabric]. ## Features Controlled using the [Lua programming language][lua], CC: Tweaked's computers provides all the tools you need to start @@ -62,7 +62,6 @@ CC: Tweaked lives on [GitHub]. If you've got any ideas, feedback or bugs please [github]: https://github.com/cc-tweaked/CC-Tweaked/ "CC: Tweaked on GitHub" [bug]: https://github.com/cc-tweaked/CC-Tweaked/issues/new/choose [computercraft]: https://github.com/dan200/ComputerCraft "ComputerCraft on GitHub" -[curseforge]: https://minecraft.curseforge.com/projects/cc-tweaked "Download CC: Tweaked from CurseForge" [modrinth]: https://modrinth.com/mod/gu7yAYhd "Download CC: Tweaked from Modrinth" [forge]: https://files.minecraftforge.net/ "Download Minecraft Forge." [Minecraft Forge]: https://files.minecraftforge.net/ "Download Minecraft Forge." diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 3c103a085..ada42638e 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -58,7 +58,6 @@ jmh = "1.37" # Build tools cctJavadoc = "1.8.3" checkstyle = "10.14.1" -curseForgeGradle = "1.0.14" errorProne-core = "2.27.0" errorProne-plugin = "3.1.0" fabric-loom = "1.7.1" @@ -145,7 +144,6 @@ lwjgl-glfw = { module = "org.lwjgl:lwjgl-glfw" } # Build tools cctJavadoc = { module = "cc.tweaked:cct-javadoc", version.ref = "cctJavadoc" } checkstyle = { module = "com.puppycrawl.tools:checkstyle", version.ref = "checkstyle" } -curseForgeGradle = { module = "net.darkhax.curseforgegradle:CurseForgeGradle", version.ref = "curseForgeGradle" } errorProne-annotations = { module = "com.google.errorprone:error_prone_annotations", version.ref = "errorProne-core" } errorProne-api = { module = "com.google.errorprone:error_prone_check_api", version.ref = "errorProne-core" } errorProne-core = { module = "com.google.errorprone:error_prone_core", version.ref = "errorProne-core" }