Skip to content

Commit

Permalink
Revise download URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault committed Aug 14, 2023
1 parent e2d228f commit c013bcf
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 11 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/announce-release-on-discord.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
""
"Click here to view changelog: https://github.com/IntellectualSites/fastasyncvoxelsniper/releases/tag/${{ github.event.release.tag_name }}"
""
"The download is available at:"
"- Modrinth: <https://modrinth.com/plugin/fastasyncvoxelsniper/version/${{ github.event.release.tag_name }}>"
"- Hangar: <https://hangar.papermc.io/IntellectualSites/FastAsyncVoxelSniper/versions/${{ github.event.release.tag_name }}>"
"The primary download is available at: Modrinth: <https://modrinth.com/plugin/fastasyncvoxelsniper/version/${{ github.event.release.tag_name }}>"
""
"Alternative downloads are available at:"
"- CurseForge: <https://www.curseforge.com/minecraft/bukkit-plugins/favs>"
"- Hangar: <https://hangar.papermc.io/IntellectualSites/FastAsyncVoxelSniper/versions/${{ github.event.release.tag_name }}>"
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ FAVS is designed for efficient terrain creation.

## Downloads

Downloads are available on the following platforms:
- [Hangar](https://hangar.papermc.io/IntellectualSites/FastAsyncVoxelSniper)
- [Modrinth](https://modrinth.com/plugin/fastasyncvoxelsniper/)
- [CurseForge](https://www.curseforge.com/minecraft/bukkit-plugins/favs)
The primary download is available on [Modrinth](https://modrinth.com/plugin/fastasyncvoxelsniper/).

Alternative downloads are available on [Hangar](https://hangar.papermc.io/IntellectualSites/FastAsyncVoxelSniper) and
[CurseForge](https://www.curseforge.com/minecraft/bukkit-plugins/favs).

## Documentation

Expand Down
7 changes: 3 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ plugins {
alias(libs.plugins.pluginyml)
alias(libs.plugins.shadow)
alias(libs.plugins.nexus)
id("com.modrinth.minotaur") version "2.8.3"
id("io.papermc.hangar-publish-plugin") version "0.0.5"
alias(libs.plugins.minotaur)
alias(libs.plugins.hangar)
}

java {
Expand All @@ -21,7 +21,6 @@ java {
repositories {
mavenCentral()
maven { url = uri("https://repo.papermc.io/repository/maven-public/") }
maven { url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/") }
}

dependencies {
Expand Down Expand Up @@ -187,7 +186,7 @@ nexusPublishing {
}
}

val supportedVersions = listOf("1.16.5", "1.17.1", "1.18.2", "1.19", "1.19.1", "1.19.2", "1.19.3", "1.19.4", "1.20")
val supportedVersions = listOf("1.16.5", "1.17.1", "1.18.2", "1.19", "1.19.1", "1.19.2", "1.19.3", "1.19.4", "1.20", "1.20.1")

modrinth {
token.set(System.getenv("MODRINTH_TOKEN"))
Expand Down
4 changes: 4 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ annotations = "24.0.1"
shadow = "8.1.1"
pluginyml = "0.6.0"
nexus = "1.3.0"
minotaur = "2.8.3"
hangar = "0.0.5"

[libraries]

Expand All @@ -16,3 +18,5 @@ annotations = { group = "org.jetbrains", name = "annotations", version.ref = "an
shadow = { id = "com.github.johnrengelman.shadow", version.ref = "shadow" }
pluginyml = { id = "net.minecrell.plugin-yml.bukkit", version.ref = "pluginyml" }
nexus = { id = "io.github.gradle-nexus.publish-plugin", version.ref = "nexus" }
minotaur = { id = "com.modrinth.minotaur", version.ref = "minotaur" }
hangar = { id = "io.papermc.hangar-publish-plugin", version.ref = "hangar" }

0 comments on commit c013bcf

Please sign in to comment.