Skip to content

Commit a01b0ae

Browse files
Merge pull request #3 from AvionBlock/dev
Merge dev commits before code-base update
2 parents 09e8b91 + e24ebd9 commit a01b0ae

File tree

7 files changed

+24
-24
lines changed

7 files changed

+24
-24
lines changed

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
artifacts: |
6767
build/libs/GeyserVoice-*.jar
6868
env:
69-
GITHUB_REPOSITORY: mineserv-top/GeyserVoice
69+
GITHUB_REPOSITORY: AvionBlock/GeyserVoice
7070

7171
- name: Create pre-release
7272
if: github.event.inputs.status != 'stable'
@@ -77,4 +77,4 @@ jobs:
7777
artifacts: |
7878
build/libs/GeyserVoice-*.jar
7979
env:
80-
GITHUB_REPOSITORY: mineserv-top/GeyserVoice
80+
GITHUB_REPOSITORY: AvionBlock/GeyserVoice

README.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
GeyserVoice is a Java plugin designed to enhance the multiplayer gaming experience on Minecraft servers by integrating the [VoiceCraft](https://github.com/SineVector241/VoiceCraft-MCBE_Proximity_Chat/) Proximity Chat application. The plugin facilitates cross-platform communication, allowing players on both Java and Bedrock editions to seamlessly engage in proximity-based voice conversations.
44

5-
65
### Features
76

87
- Cross-Platform Communication:
@@ -12,17 +11,21 @@ GeyserVoice is a Java plugin designed to enhance the multiplayer gaming experien
1211
Experience a more immersive and realistic gameplay environment with proximity-based voice chat. Engage in conversations with nearby players, enhancing teamwork and coordination.
1312

1413
### How It Works
14+
1515
Installation: Simply install the GeyserVoice plugin on your Minecraft Java server. Make sure to follow the setup instructions to integrate it seamlessly with the VoiceCraft Proximity Chat application.
1616

1717
### Getting Started
18-
For detailed instructions on installing and configuring GeyserVoice, please refer to the [Wiki](https://github.com/mineserv-top/GeyserVoice/wiki/) section of this repository.
18+
19+
For detailed instructions on installing and configuring GeyserVoice, please refer to the [Wiki](https://github.com/AvionBlock/GeyserVoice/wiki/) section of this repository.
1920

2021
### Contributing
21-
We welcome contributions from the community to improve and expand the functionality of GeyserVoice. If you have ideas, bug reports, or would like to contribute code, please check out our [Contribution](https://github.com/mineserv-top/GeyserVoice/wiki/Contribution) Guidelines.
22+
23+
We welcome contributions from the community to improve and expand the functionality of GeyserVoice. If you have ideas, bug reports, or would like to contribute code, please check out our [Contribution](https://github.com/AvionBlock/GeyserVoice/wiki/Contribution) Guidelines.
2224

2325
### License
26+
2427
GeyserVoice is licensed under the MIT License. Feel free to use, modify, and distribute the plugin in accordance with the terms of the license.
2528

2629
### Proxy server support
27-
GeyserVoice also supports usage with Velocity and Bungeecord networks. Just install the .jar on your proxy server and on your paper server(s). Be sure to edit the config of the paper server(s) to set `server-behind-proxy` to `true` and then reload using `voice reload`. P.s. You don't need to set the server address, port and keys on the paper server(s), this is only needed on the proxy server.
2830

31+
GeyserVoice also supports usage with Velocity and Bungeecord networks. Just install the .jar on your proxy server and on your paper server(s). Be sure to edit the config of the paper server(s) to set `server-behind-proxy` to `true` and then reload using `voice reload`. P.s. You don't need to set the server address, port and keys on the paper server(s), this is only needed on the proxy server.

src/main/java-templates/io/greitan/avion/common/utils/Constants.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ public class Constants {
55
public final static String VERSION = "{{ version}}";
66
public final static String DESCRIPTION = "{{ description }}";
77
public final static String URL = "{{ url }}";
8-
}
8+
}

src/main/java/io/greitan/avion/bungeecord/GeyserVoice.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
import io.greitan.avion.bungeecord.commands.VoiceCommand;
1515
import io.greitan.avion.bungeecord.listeners.*;
16+
import io.greitan.avion.common.BaseGeyserVoice;
1617
import io.greitan.avion.common.network.Network;
1718
import io.greitan.avion.common.network.Payloads.PlayerData;
1819
import io.greitan.avion.bungeecord.tasks.PositionsTask;
@@ -28,7 +29,7 @@
2829
import java.util.Map;
2930
import java.util.HashMap;
3031

31-
public class GeyserVoice extends Plugin { // implements BaseGeyserVoice {
32+
public class GeyserVoice extends Plugin implements BaseGeyserVoice {
3233
private static @Getter Configuration config;
3334

3435
private static @Getter GeyserVoice instance;

src/main/legacy/velocity-plugin.json

+2-6
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,7 @@
22
"id": "geyservoice",
33
"name": "${project.artifactId}",
44
"version": "${project.version}",
5-
"description": "Plugin created to send titles, actionbars and bossbars to the player and the proxy using the MiniMessage format.",
6-
"authors": ["4drian3d"],
7-
"dependencies": [
8-
{ "id": "protocolize", "optional": true },
9-
{ "id": "protocolizelegacysupport", "optional": true }
10-
],
5+
"description": "",
6+
"authors": ["Alpha"],
117
"main": "io.greitan.avion.velocity.GeyserVoice"
128
}

src/main/resource-templates/bungee.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
name: { { name } }
1+
name: {{ name }}
22

3-
version: { { version } }
3+
version: {{ version }}
44

55
main: io.greitan.avion.bungeecord.GeyserVoice
6-
description: { { description } }
6+
description: {{ description }}
77

88
author: Alpha
9-
website: { { url } }
9+
website: {{ url }}
1010

11-
prefix: { { name } }
11+
prefix: {{ name }}
1212

1313
commands:
1414
voice:

src/main/resource-templates/plugin.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
name: { { name } }
1+
name: {{ name }}
22

3-
version: { { version } }
3+
version: {{ version }}
44

55
main: io.greitan.avion.paper.GeyserVoice
6-
description: { { description } }
6+
description: {{ description }}
77

88
author: Alpha
9-
website: { { url } }
9+
website: {{ url }}
1010

1111
api-version: "1.20"
12-
prefix: { { name } }
12+
prefix: {{ name }}
1313

1414
soft-depend:
1515
- PlaceholderAPI

0 commit comments

Comments
 (0)