Skip to content

Commit

Permalink
latest release
Browse files Browse the repository at this point in the history
  • Loading branch information
Mindgamesnl committed Jan 21, 2025
1 parent 7aa4267 commit ffc6cc6
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 14 deletions.
4 changes: 2 additions & 2 deletions api/src/main/java/com/craftmend/openaudiomc/api/WorldApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ static WorldApi getInstance() {
* @throws InvalidThreadException if called from the main thread.
* This is to prevent blocking the main thread with the underlying Sqlite database
* @throws InvalidLocationException if the location is not valid (this location is already occupied by a real or virtual speaker)
* @since 6.10.7
* @since 6.10.8
*/
void registerVirtualSpeaker(
int x,
Expand All @@ -90,7 +90,7 @@ void registerVirtualSpeaker(
* @param speaker speaker
* @throws InvalidSpeakerException if the speaker is not valid (already unregistered, or not registered by the api)
* @throws InvalidThreadException if called from the main thread.
* @since 6.10.7
* @since 6.10.8
*/
void unregisterVirtualSpeaker(@NotNull BasicSpeaker speaker) throws InvalidSpeakerException, InvalidThreadException;

Expand Down
2 changes: 1 addition & 1 deletion modules/mapdb-migrator/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
<dependency>
<groupId>com.craftmend.openaudiomc</groupId>
<artifactId>openaudiomc</artifactId>
<version>6.10.7</version>
<version>6.10.8</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion modules/parties-module/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
<dependency>
<groupId>com.craftmend.openaudiomc</groupId>
<artifactId>openaudiomc</artifactId>
<version>6.10.7</version>
<version>6.10.8</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion modules/skywars-module/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
<dependency>
<groupId>com.craftmend.openaudiomc</groupId>
<artifactId>openaudiomc</artifactId>
<version>6.10.7</version>
<version>6.10.8</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion modules/vistas-client/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<dependency>
<groupId>com.craftmend.openaudiomc</groupId>
<artifactId>openaudiomc</artifactId>
<version>6.10.7</version>
<version>6.10.8</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion modules/voice-join-permission/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
<dependency>
<groupId>com.craftmend.openaudiomc</groupId>
<artifactId>openaudiomc</artifactId>
<version>6.10.7</version>
<version>6.10.8</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/main/bash/data.bin
Original file line number Diff line number Diff line change
@@ -1 +1 @@
BUILD_NUM="1516"
BUILD_NUM="1521"
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ public class Speaker extends DataStore implements BasicSpeaker {

@Column @Getter private String source;
@Column @Getter private UUID speakerId;
@Column(defaultValue = "true")

@Column
@Getter private Boolean requiresHealthCheck = true;

@Column @Setter @Getter private Integer radius;

@Column(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
@Plugin(
id = "openaudiomc",
name = "OpenAudioMc Bungee Plugin Port for Velocity",
version = "6.10.7",
version = "6.10.8",
authors = {"Mindgamesnl", "fluse1367"},
description = "OpenAudioMc: Proximity voice chat & audio plugin for Minecraft, no mods needed. Supports Bungeecord, Velocity, Spigot & more.",
url = "https://openaudiomc.net/"
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/main/resources/data.bin
Original file line number Diff line number Diff line change
@@ -1 +1 @@
BUILD_NUM="1516"
BUILD_NUM="1521"
4 changes: 2 additions & 2 deletions plugin/src/main/resources/openaudiomc-build.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
BUILD_VERSION="1516"
BUILD_COMMIT="bff5d2c5ab871c476b4c4b9a3c168eb30b632a31"
BUILD_VERSION="1521"
BUILD_COMMIT="91938ed8d427753d44da69a41757873cbd5451cf"
BUILD_AUTHOR="Mats"
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<description>The OpenAudioMc Java plugin and Api</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<oa.version>6.10.7</oa.version>
<oa.version>6.10.8</oa.version>

<!-- dev deps -->
<deps.lombok.version>1.18.36</deps.lombok.version>
Expand Down

0 comments on commit ffc6cc6

Please sign in to comment.