Skip to content

Commit

Permalink
v1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Apehum authored Apr 29, 2024
2 parents 2a05f2c + 42012ed commit b7f508b
Show file tree
Hide file tree
Showing 24 changed files with 469 additions and 343 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/prerelease-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@ jobs:
uses: Apehum/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
github-generate-changelog: true
github-generate-changelog: false
changelog-file: changelog.md
github-prerelease: true
5 changes: 5 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,13 @@ jobs:
1.19.4
1.20
1.20.1
1.20.2
1.20.3
1.20.4
- name: Publish to GitHub
uses: Apehum/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
github-generate-changelog: false
changelog-file: changelog.md
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,3 @@ If you want to stream audio from direct URLs

- Copy discs like you can copy maps
- Custom goat horn audio
- Make it work with hoppers
11 changes: 8 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ val pluginVersion: String by rootProject

// libs
val paperVersion: String by rootProject
val foliaVersion: String by rootProject
val plasmoVoiceVersion: String by rootProject
val lavaplayerLibVersion: String by rootProject

plugins {
kotlin("jvm") version("1.6.10")
`maven-publish`
id("xyz.jpenilla.run-paper") version("2.0.1")
id("net.minecrell.plugin-yml.bukkit") version("0.5.2")
id("net.minecrell.plugin-yml.bukkit") version("0.6.0")
id("com.github.johnrengelman.shadow") version("7.0.0")
id("su.plo.crowdin.plugin") version("1.0.0")
id("su.plo.voice.relocate") version("1.0.1")
Expand All @@ -29,7 +30,8 @@ repositories {
url = uri("https://repo.codemc.io/repository/maven-snapshots/")
}

maven(("https://repo.plo.su"))
maven("https://repo.plo.su")
maven("https://repo.plasmoverse.com/releases")

maven("https://m2.dv8tion.net/releases")

Expand All @@ -48,6 +50,7 @@ dependencies {
compileOnly("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.6.4")

compileOnly("io.papermc.paper:paper-api:$paperVersion")
compileOnly("dev.folia:folia-api:$foliaVersion")
compileOnly("com.comphenix.protocol:ProtocolLib:4.7.0")

compileOnly("su.plo:pv-addon-lavaplayer-lib:$lavaplayerLibVersion")
Expand Down Expand Up @@ -76,7 +79,7 @@ tasks {
}

runServer {
minecraftVersion("1.20.1")
minecraftVersion("1.20.4")
systemProperty("plasmovoice.alpha.disableversioncheck", "true")
}

Expand All @@ -93,6 +96,8 @@ bukkit {

depend = listOf("PlasmoVoice", "ProtocolLib", "pv-addon-lavaplayer-lib")

foliaSupported = true

commands {
register("disc") {}
}
Expand Down
9 changes: 7 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
- Fixed bug when you can take disc from jukebox, but it doesn't stop playing
- Fixed bug with proxy when discs just wouldn't play
**Requires [pv-addon-lavaplayer-lib 1.0.8+](https://modrinth.com/plugin/pv-addon-lavaplayer-lib/version/1.0.8) to work**

Changelog:
- Hopper interactions support
- 1.20 discs burnable craft
- Fixed empty suggestions when using the /disc command
- Config option to disable voice distance visualization [#10](https://github.com/plasmoapp/pv-addon-discs/issues/10)
7 changes: 4 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Dependencies
paperVersion=1.19.4-R0.1-SNAPSHOT
paperVersion=1.20.1-R0.1-SNAPSHOT
foliaVersion=1.20.1-R0.1-SNAPSHOT
plasmoVoiceVersion=2.0.3
lavaplayerLibVersion=1.0.4
lavaplayerLibVersion=1.0.8

# Version
mavenGroup=su.plo.voice.discs
mavenArtifactId=discs
pluginVersion=1.0.5
pluginVersion=1.0.6
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit b7f508b

Please sign in to comment.