
Minecraft 服务端插件
Simple Voice Chat Discord Bridge
A mod and plugin to make a bridge between Simple Voice Chat and Discord to allow for players without the mod to hear and speak.
- 版本范围
- 1.16.5–26.2
- 下载量
- 23.5 万
插件介绍
⚠️ Feedback Wanted
I am looking for feedback on what Minecraft version and server platforms/loaders to support. Please fill out this short, anonymous Google Form: https://docs.google.com/forms/d/e/1FAIpQLSfhQhD9tSZK__N1GYHki1t2Zezd6WOd1IuKVqtAxlTQkZf4CA/viewform
Simple Voice Chat Discord Bridge
⚠️ Warning
This is not an official addon. Please don't go to the Simple Voice Chat discord server for support! Instead, please use GitHub issues for support. I'll try to provide support as soon as possible but there is no guarantee for how long it will take.
Simple Voice Chat Discord Bridge is a Simple Voice Chat addon for Fabric and Paper/Purpur that makes a bridge between Simple Voice Chat and Discord to allow for players without Simple Voice Chat installed on their client to hear and speak. For example, this addon allows Bedrock edition players connected through Geyser to use voice chat!
- Bug reports, feature requests, and general support: https://github.com/amsam0/voicechat-discord/issues
- Changelog: https://gitlab.com/amsam0/voicechat-discord/-/blob/main/CHANGELOG.md
- Source code: https://gitlab.com/amsam0/voicechat-discord
(For more information on the infrastructure of this project, such as the use of both GitHub and GitLab, scroll down to the last section.)
Installation and Usage
First, ensure that you have Simple Voice Chat installed and correctly configured. Please refer to the Simple Voice Chat wiki for more info.
ℹ️ Note
Simple Voice Chat Discord Bridge requires version 2.4.11 or later of Simple Voice Chat. Please ensure you have updated!
Then, you'll want to download the latest version of Simple Voice Chat Discord Bridge that is compatible with your Minecraft version.
ℹ️ Note
If you are using the Fabric mod, it requires the Fabric API.
Finding the configuration file
Make sure to run your server once with Simple Voice Chat and Simple Voice Chat Discord Bridge installed to generate Simple Voice Chat Discord Bridge's configuration file.
Fabric: Simple Voice Chat Discord Bridge's configuration file should be located at config/voicechat-discord.yml.
Paper/Purpur: Simple Voice Chat Discord Bridge's configuration file should be located at plugins/voicechat-discord/config.yml.
Setting up a bot
First, create an application at discord.com/developers/applications by clicking New Application at the top right. Choose the name that you want your bot to be called.

On the left, click Bot. Copy the token by clicking Reset Token. After resetting the token, there should be a Copy button.

Now, open the configuration file with a text editor. Replace DISCORD_BOT_TOKEN_HERE with the token you copied. It should look something like this:
bots:
- token: TheTokenYouJustPasted
vc_id: VOICE_CHANNEL_ID_HERE
Next, click Installation on the left. Change Install Link from Discord Provided Link to None.

Next, click Bot on the left. Scroll down and disable disable Public Bot.

Finally, click General Information on the left and copy the Application ID.

In your browser, go to discord.com/api/oauth2/authorize?client_id=YOUR_APPLICATION_ID_HERE&permissions=36700160&scope=bot but replace YOUR_APPLICATION_ID_HERE with the application ID you just copied. Choose the server you want to invite your bot to. Make sure not to disable any of its permissions.
Now, follow the steps at support.discord.com/articles/Where-can-I-find-my-User-Server-Message-ID to enable Developer Mode in Discord. Then, right click the voice channel you want the bot to use as a bridge between Simple Voice Chat and Discord and click Copy ID.
⚠️ Warning
There cannot be more than one person speaking in the voice channel at a time, or there will be weird audio glitches. We recommend limiting bot voice channels to 2 users to ensure that this does not cause an issue.
Now, reopen the configuration file with a text editor. Replace VOICE_CHANNEL_ID_HERE with the channel ID you copied. It should look something like this:
bots:
- token: TheTokenYouJustPasted
vc_id: TheChannelIDYouJustPasted
You can redo this process for however many bots you want. There is some info in the configuration file about having multiple bots.
ℹ️ Note
The amount of bots you have is equivalent to the amount of people who can be connected to Simple Voice Chat through Discord at one time. So if you have 3 bots, up to 3 people can use the addon at the same time.
Troubleshooting
If you run into errors while trying to use a bot, please read the console. The errors will always include the vc_id of the bot, which allows you to identify which bot caused the error.
Using it in-game
⚠️ Warning
There cannot be more than one person speaking in the voice channel at a time, or there will be weird audio glitches. We recommend limiting bot voice channels to 2 users to ensure that this does not cause an issue.
Most of Simple Voice Chat Discord Bridge's functionality is exposed through the /dvc command. This section will go through all of its subcommands.
For commands that take string arguments, you can wrap them in quotes to escape spaces.
/dvc start
Starts a voice chat session using the first available bot. You may have to wait a few seconds for it to start. After it starts, join the voice channel as instructed. You should be able to hear players speak, and other players should be able to hear you speak.
If you are having issues while in a voice chat session, you can try restarting it by using /dvc start again.
/dvc stop
Stops the current voice chat session and disconnects the bot.
/dvc group
Allows you to list, create, join, leave and remove groups.
/dvc group list
Gives you a list of all groups.
/dvc group create <name> [password] [type] [persistent]
Allows you to create a group.
Arguments:
name(required): The name of the group.password(optional, defaults to""(no password)): The password of the group. If you don't want a password but want to change the group type or persistency, just pass an empty string:""type(optional, defaults tonormal): Can benormal,openorisolated.normal: Players in a group can hear nearby players that are not in a group, but not vice versaopen: Players in a group can hear nearby players and nearby players can hear players in the groupisolated: Players in a group can only hear other players in the group
persistent(optional, defaults tofalse): Iftrue, the group will not be removed once all players leave. Instead, it has to be removed using/dvc group remove <ID>
/dvc group join <ID>
Allows you to join a group using an ID from /dvc group list.
/dvc group info
Gives you info about your current group.
/dvc group leave
Allows you to leave your current group.
/dvc group remove <ID>
Allows you to remove a persistent group with no players in it using an ID from /dvc group list.
/dvc togglewhisper
Allows you to whisper.
/dvc reloadconfig
If you are a operator (specifically permission level 2 or higher on fabric) or if you have the voicechat-discord.reload-config permission, you can use the /dvc reloadconfig subcommand to reload the config without have to reload/restart the server. Using this subcommand will stop all running bots.
Project Infrastructure
Source code and development is done on GitLab at https://gitlab.com/amsam0/voicechat-discord.
However, because there are a lot more users with GitHub accounts than GitLab accounts, bug reports, feature requests, and general support is done through GitHub at https://github.com/amsam0/voicechat-discord/issues.
In addition, GitHub Actions is used to build and release the addon because I can't be bothered to migrate to GitLab CI. The workflow files are in the GitHub repository at https://github.com/amsam0/voicechat-discord, and you can view workflow run results at https://github.com/amsam0/voicechat-discord/actions. (While using GitHub Actions to clone the GitLab repository arguably reduces security, the GitHub Actions workflows upload the Git repository used to build the release as an artifact to allow for independent analysis. The sha256 hashes of all files and the output of git log is also logged.)
版本与下载
推荐下载
1.21.9-1.21.9-3.2.0.jar版本 neoforge-1.21.9-3.2.0 · 34.1 KBSHA-1 f00e686a3b4ad389c5ab5ade1a75ff42c3c1e756下载 1.21.9-1.21.9-3.2.0.jarneoforge-1.21.9-3.2.0
正式版- 加载器
- neoforge
- MC 版本
- 1.21.9 · 1.21.10
SHA-1 f00e686a3b4ad389c5ab5ade1a75ff42c3c1e756获取文件 1.21.9-1.21.9-3.2.0.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.21.9, 1.21.10
neoforge-1.20.5-3.2.0
正式版- 加载器
- neoforge
- MC 版本
- 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8
SHA-1 ea9550e0a5ccfbfeb43d1ca646d0685014e42266获取文件 1.20.5-1.20.5-3.2.0.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.20.5, 1.20.6, 1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4, 1.21.5, 1.21.6, 1.21.7, 1.21.8
fabric-1.21.5-3.2.0
正式版- 加载器
- fabric
- MC 版本
- 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 faa9f76a0ec97a44a258f8f4443e904bb1c51f55获取文件 voicechat-discord-fabric-1.21.5-3.2.0.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.21.5, 1.21.6, 1.21.7, 1.21.8, 1.21.9, 1.21.10
neoforge-1.21.11-3.2.0
正式版- 加载器
- neoforge
- MC 版本
- 1.21.11 · 26.1 · 26.1.1 · 26.1.2 · 26.2
SHA-1 e144af79b322bea0411b88a8b4d816f64c394e33获取文件 1.21.11-1.21.11-3.2.0.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.21.11, 26.1, 26.1.1, 26.1.2, 26.2
fabric-1.21.11-3.2.0
正式版- 加载器
- fabric
- MC 版本
- 1.21.11
SHA-1 90c79aac69faf584c6e25fa10abf05cff88f1804获取文件 voicechat-discord-fabric-1.21.11-3.2.0.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.21.11
fabric-1.21.2-3.2.0
正式版- 加载器
- fabric
- MC 版本
- 1.21.2 · 1.21.3 · 1.21.4
SHA-1 046fb0c627f9b9e2c8e4ec225d23c4a9a40fffc0获取文件 voicechat-discord-fabric-1.21.2-3.2.0.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.21.2, 1.21.3, 1.21.4
fabric-26.1-3.2.0
正式版- 加载器
- fabric
- MC 版本
- 26.1 · 26.1.1 · 26.1.2 · 26.2
SHA-1 38443da35929ff05bfc6d6229ec5965305e02645获取文件 voicechat-discord-fabric-26.1-3.2.0.jar展开更新日志
Please note: this version supports the following Minecraft versions: 26.1, 26.1.1, 26.1.2, 26.2
paper-3.2.0
正式版- 加载器
- folia · paper · purpur
- MC 版本
- 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11 · 26.1 · 26.1.1 · 26.1.2 · 26.2
SHA-1 146522b9afe575243222f6835567e448847a1db1获取文件 voicechat-discord-paper-3.2.0.jarfabric-1.19.2-3.2.0
正式版- 加载器
- fabric
- MC 版本
- 1.19.2 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1
SHA-1 af0fdb12de6b522f5628800db33f1e29cf5e418e获取文件 voicechat-discord-fabric-1.19.2-3.2.0.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.19.2, 1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4, 1.20.5, 1.20.6, 1.21, 1.21.1
fabric-1.16.5-3.2.0
正式版- 加载器
- fabric
- MC 版本
- 1.16.5 · 1.18.2
SHA-1 2b78335a7eebb34a16159f454cf46905ff75dfa3获取文件 voicechat-discord-fabric-1.16.5-3.2.0.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.16.5, 1.18.2
- Add support for Minecraft versions 26.1, 26.1.1, 26.1.2, and 26.2
- Add NeoForge support for Minecraft versions 1.20.5-26.2 (this has been implemented for a while, but I never got around to releasing it)
- Drop support for the following Minecraft versions on Paper: 1.16.5, 1.18.2, 1.19.2, 1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4
- If you need to use any of these versions on Paper, please make an issue on GitHub
- Internal changes:
- Switch to Mojang mappings on Fabric
- Build without obfuscation on Paper (this is why we had to drop support for Minecraft versions below 1.20.5)
- Use voicechat_api mod ID instead of voicechat mod ID for checking required voicechat API version on Fabric and NeoForge
Code changes: https://gitlab.com/amsam0/voicechat-discord/-/compare/3.1.4...3.2.0
GitHub Actions workflow changes: https://github.com/amsam0/voicechat-discord/compare/3.1.2...3.2.0
fabric-1.19.2-3.1.4
正式版- 加载器
- fabric
- MC 版本
- 1.19.2 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1
SHA-1 9c5c2ec99d7a541545b26bfa519054dfef11f2f2获取文件 voicechat-discord-fabric-1.19.2-3.1.4.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.19.2, 1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4, 1.20.5, 1.20.6, 1.21, 1.21.1
fabric-1.21.5-3.1.4
正式版- 加载器
- fabric
- MC 版本
- 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 d53a106356f7ae9b2d873bf2171d5a8993f4b974获取文件 voicechat-discord-fabric-1.21.5-3.1.4.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.21.5, 1.21.6, 1.21.7, 1.21.8, 1.21.9, 1.21.10
fabric-1.21.2-3.1.4
正式版- 加载器
- fabric
- MC 版本
- 1.21.2 · 1.21.3 · 1.21.4
SHA-1 f2026c615b763f67c2a5c304b510fafb0ffccbef获取文件 voicechat-discord-fabric-1.21.2-3.1.4.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.21.2, 1.21.3, 1.21.4
fabric-1.21.11-3.1.4
正式版- 加载器
- fabric
- MC 版本
- 1.21.11
SHA-1 2233a9f26a87733dbe7960ceb862ffbee6594460获取文件 voicechat-discord-fabric-1.21.11-3.1.4.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.21.11
fabric-1.16.5-3.1.4
正式版- 加载器
- fabric
- MC 版本
- 1.16.5 · 1.18.2
SHA-1 ab02e7eb167770b2ae2c8b5e7fad3b9ab6e2bdfa获取文件 voicechat-discord-fabric-1.16.5-3.1.4.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.16.5, 1.18.2
paper-3.1.4
正式版- 加载器
- folia · paper · purpur
- MC 版本
- 1.16.5 · 1.18.2 · 1.19.2 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 964512fe1bf234be0007db2b2bebed77177edf03获取文件 voicechat-discord-paper-3.1.4.jar展开更新日志
- Updated songbird to the next branch. This should fix any issues with DAVE.
- Switched to
opus2Rust crate. As we already updated to Opus 1.5.2, this shouldn't change anything.
Code changes: https://gitlab.com/amsam0/voicechat-discord/-/compare/3.1.3...3.1.4
GitHub Actions workflow changes: None
fabric-1.16.5-3.1.3
正式版- 加载器
- fabric
- MC 版本
- 1.16.5 · 1.18.2
SHA-1 7f613f7883b96b9ac79a35b9314c3fb10b2cf27e获取文件 voicechat-discord-fabric-1.16.5-3.1.3.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.16.5, 1.18.2
fabric-1.21.11-3.1.3
正式版- 加载器
- fabric
- MC 版本
- 1.21.11
SHA-1 71ed5975f815c95a812776f66fb3a98cb0444b47获取文件 voicechat-discord-fabric-1.21.11-3.1.3.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.21.11
fabric-1.21.5-3.1.3
正式版- 加载器
- fabric
- MC 版本
- 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 e004a878650c6c12c3878cd2ec0651d849507628获取文件 voicechat-discord-fabric-1.21.5-3.1.3.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.21.5, 1.21.6, 1.21.7, 1.21.8, 1.21.9, 1.21.10
fabric-1.21.2-3.1.3
正式版- 加载器
- fabric
- MC 版本
- 1.21.2 · 1.21.3 · 1.21.4
SHA-1 d985563ffaef2cb19dbbb84e14a0470529b6dcaa获取文件 voicechat-discord-fabric-1.21.2-3.1.3.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.21.2, 1.21.3, 1.21.4
fabric-1.19.2-3.1.3
正式版- 加载器
- fabric
- MC 版本
- 1.19.2 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1
SHA-1 3be6fee033f19d6da9a004c8513cba7606af17fe获取文件 voicechat-discord-fabric-1.19.2-3.1.3.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.19.2, 1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4, 1.20.5, 1.20.6, 1.21, 1.21.1
paper-3.1.3
正式版- 加载器
- folia · paper · purpur
- MC 版本
- 1.16.5 · 1.18.2 · 1.19.2 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 54adb2dbae5241a9e74bfd83fb75688e19950b18获取文件 voicechat-discord-paper-3.1.3.jar展开更新日志
- Updated songbird to PR #291 to add support for DAVE in Discord voice calls.
Code changes: https://gitlab.com/amsam0/voicechat-discord/-/compare/3.1.2+build-fix...3.1.3
GitHub Actions workflow changes: None
fabric-1.21.2-3.1.2
正式版- 加载器
- fabric
- MC 版本
- 1.21.2 · 1.21.3 · 1.21.4
SHA-1 37599662765a4cfab45171ef1bc6adaea885a912获取文件 voicechat-discord-fabric-1.21.2-3.1.2.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.21.2, 1.21.3, 1.21.4
fabric-1.21.11-3.1.2
正式版- 加载器
- fabric
- MC 版本
- 1.21.11
SHA-1 2c391e4beb83ce6fe4ec66a3fa5418b926183857获取文件 voicechat-discord-fabric-1.21.11-3.1.2.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.21.11
fabric-1.21.5-3.1.2
正式版- 加载器
- fabric
- MC 版本
- 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 6c1eb4cf8cbf1e427fbe2d26bad7d970b28f2681获取文件 voicechat-discord-fabric-1.21.5-3.1.2.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.21.5, 1.21.6, 1.21.7, 1.21.8, 1.21.9, 1.21.10
fabric-1.19.2-3.1.2
正式版- 加载器
- fabric
- MC 版本
- 1.19.2 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1
SHA-1 7ea38cb4a5502e504ade94c6b49dceb9c3690207获取文件 voicechat-discord-fabric-1.19.2-3.1.2.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.19.2, 1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4, 1.20.5, 1.20.6, 1.21, 1.21.1
fabric-1.16.5-3.1.2
正式版- 加载器
- fabric
- MC 版本
- 1.16.5 · 1.18.2
SHA-1 7fcffc0f52b94c09d5bdf7b33674bf2b58ab45eb获取文件 voicechat-discord-fabric-1.16.5-3.1.2.jar展开更新日志
Please note: this version supports the following Minecraft versions: 1.16.5, 1.18.2
paper-3.1.2
正式版- 加载器
- folia · paper · purpur
- MC 版本
- 1.16.5 · 1.18.2 · 1.19.2 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10 · 1.21.11
SHA-1 5d8a0785f91778ede84b7bbf56fa40889ac1e942获取文件 voicechat-discord-paper-3.1.2.jar展开更新日志
- Fixed the infamous issue of needing a newer glibc than is available on old LTS Linux distributions (#144, #63, #106)
- The minimum glibc version is now 2.26; if anyone needs lower than this, just make a GitHub issue. However, note that glibc 2.26 was released in 2017...
- Renamed the Rust log file (previously
logs/voicechat-discord.log) tologs/voicechat-discord.txt. - Updated various URLs to use the GitLab repo instead of the GitHub repo.
- Fixed a copy of slf4j being included in the jar.
- Moved SVC version checking code to Paper because it is unnecessary on Fabric.
- Fixed checking if a player is an operator if the server has a non-default op permission level configured on Fabric.
- Refactored Fabric codebase to use source templates when version specific code is needed instead of a messy version specific class.
- Fabric versions that produce an identical jar will now be combined to reduce the number of jars that are built.
- Fixed Fabric API dependency on 1.16.5 by using the legacy mod ID.
- Fixed Folia not being marked as supported.
- Added support for 1.21.11.
Code changes: https://gitlab.com/amsam0/voicechat-discord/-/compare/3.1.1...3.1.2+build-fix
GitHub Actions workflow changes: https://github.com/amsam0/voicechat-discord/compare/3.1.1...3.1.2
fabric-1.21.8-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.21.8
SHA-1 826ba06bbf25a2b30b19836e5eeaf2884c4688ac获取文件 voicechat-discord-fabric-1.21.8-3.1.1.jarfabric-1.21.4-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.21.4
SHA-1 b6cb247976a8fdd310af0610fa0dbcdea174865f获取文件 voicechat-discord-fabric-1.21.4-3.1.1.jarfabric-1.21.1-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.21.1
SHA-1 8df5ac84597f2e9237ef7c16cd54a9e83d2f7e08获取文件 voicechat-discord-fabric-1.21.1-3.1.1.jarfabric-1.21.3-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.21.3
SHA-1 2026c689e0e89142e002af30d8bca82b2abf1b56获取文件 voicechat-discord-fabric-1.21.3-3.1.1.jarfabric-1.20.6-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.20.6
SHA-1 2924c5543a5a0aeaec34fc0119f86fab9f6c515b获取文件 voicechat-discord-fabric-1.20.6-3.1.1.jarfabric-1.21.9-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.21.9
SHA-1 4ac4c1c357746773d530935361984130e689f84f获取文件 voicechat-discord-fabric-1.21.9-3.1.1.jarfabric-1.21.7-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.21.7
SHA-1 d3a12e4bf514562c2b40f5e275fb4d1fd593c660获取文件 voicechat-discord-fabric-1.21.7-3.1.1.jarfabric-1.20.2-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.20.2
SHA-1 60a5c90c0e4995be46e61651e21a85737e37fe90获取文件 voicechat-discord-fabric-1.20.2-3.1.1.jarfabric-1.20.4-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.20.4
SHA-1 c461725a07b3e5756b38f4d4ce516bc04ffab3ea获取文件 voicechat-discord-fabric-1.20.4-3.1.1.jarfabric-1.21.2-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.21.2
SHA-1 abaf761638ae0a18c4f0fa7b4f51d75d244fac87获取文件 voicechat-discord-fabric-1.21.2-3.1.1.jarfabric-1.16.5-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.16.5
SHA-1 149c36b3b896d52b6dfec28009f60b2f2e827af9获取文件 voicechat-discord-fabric-1.16.5-3.1.1.jarfabric-1.21.5-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.21.5
SHA-1 07bd9afccd45690153f0a763260469481bf52c63获取文件 voicechat-discord-fabric-1.21.5-3.1.1.jarfabric-1.21.10-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.21.10
SHA-1 d5c1347fc6cdfeaa43f2da627a7ab99201757228获取文件 voicechat-discord-fabric-1.21.10-3.1.1.jarfabric-1.21.6-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.21.6
SHA-1 650a45e82b6eb2c4946961c05c4e9fc03ecaccf0获取文件 voicechat-discord-fabric-1.21.6-3.1.1.jarfabric-1.20.1-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.20.1
SHA-1 96dba1205e2d3ee6faca4bbd817880fd6d208940获取文件 voicechat-discord-fabric-1.20.1-3.1.1.jarfabric-1.20.3-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.20.3
SHA-1 f59b45b1f06acee8ef4a3024e156f1aa3d87a0ed获取文件 voicechat-discord-fabric-1.20.3-3.1.1.jarfabric-1.19.2-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.19.2
SHA-1 c188db687e00fb64108e89761b015a0806c46cbc获取文件 voicechat-discord-fabric-1.19.2-3.1.1.jarfabric-1.20.5-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.20.5
SHA-1 3efb33c66adc7ed396ccb0bd293a9eb8bfe601bf获取文件 voicechat-discord-fabric-1.20.5-3.1.1.jarfabric-1.20-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.20
SHA-1 88079376738a3f88c73f228f806582f324b3d25b获取文件 voicechat-discord-fabric-1.20-3.1.1.jarpaper-3.1.1
正式版- 加载器
- paper · purpur
- MC 版本
- 1.16.5 · 1.18.2 · 1.19.2 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4 · 1.21.5 · 1.21.6 · 1.21.7 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 8d58811b9254ca97282bef86299b7129fb6d6c3c获取文件 voicechat-discord-paper-3.1.1.jarfabric-1.21-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.21
SHA-1 f9786383a2bee79fd1f3cf06156384f2ea5c62c0获取文件 voicechat-discord-fabric-1.21-3.1.1.jarfabric-1.18.2-3.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.18.2
SHA-1 1b5e43ba702114eeb5340988124026962065f5de获取文件 voicechat-discord-fabric-1.18.2-3.1.1.jar展开更新日志
- Minecraft versions 1.16.5, 1.18.2, 1.19.2, 1.20.x, and 1.21.x are now supported.
- On Paper, reflection is no longer used to get entity positions when calculating distance. This was mainly done to make it easier to support the aforementioned wide range of Minecraft versions with a single jar.
- Folia is now supported.
- Some dependencies were removed in order to reduce jar size.
- The SemVer dependency we were using was replaced by a simple version parser.
- The gson dependency we were using was removed because it was not being used.
- Fixed a bug with opus decoder resets that caused them to never occur.
- Edge cases when logging in to a Discord bot that used to cause crashes are now handled cleanly. (#126)
- The
whisper_distanceSVC config option is now properly supported. (#140) - Rust logs are now added to
logs/voicechat-discord.log. - Some error messages were improved.
- A few other internal improvements.
Code changes: https://gitlab.com/amsam0/voicechat-discord/-/compare/3.0.13...3.1.1
fabric-1.19.2-3.0.13
正式版- 加载器
- fabric
- MC 版本
- 1.19.2
SHA-1 28be7f21087f3ba411a26da9d7634bf3ea253fda获取文件 voicechat-discord-fabric-1.19.2-3.0.13.jarfabric-1.21.1-3.0.13
正式版- 加载器
- fabric
- MC 版本
- 1.21.1
SHA-1 f396b8bd55c89e58739ffbbaf9186d6746584988获取文件 voicechat-discord-fabric-1.21.1-3.0.13.jarfabric-1.21.9-3.0.13
正式版- 加载器
- fabric
- MC 版本
- 1.21.9
SHA-1 081d490cbed8a2cd284b0fa55e830edcad5a3439获取文件 voicechat-discord-fabric-1.21.9-3.0.13.jarfabric-1.20.1-3.0.13
正式版- 加载器
- fabric
- MC 版本
- 1.20.1
SHA-1 aaa927f7699a5b0909797e9e5612f390b35e971e获取文件 voicechat-discord-fabric-1.20.1-3.0.13.jarfabric-1.21.5-3.0.13
正式版- 加载器
- fabric
- MC 版本
- 1.21.5
SHA-1 d33fbee78967371cb740625ea64701615dbaed61获取文件 voicechat-discord-fabric-1.21.5-3.0.13.jarfabric-1.21.8-3.0.13
正式版- 加载器
- fabric
- MC 版本
- 1.21.8
SHA-1 5489f525375ed67db8592b6f4e4f20dbc4b14264获取文件 voicechat-discord-fabric-1.21.8-3.0.13.jarfabric-1.21.10-3.0.13
正式版- 加载器
- fabric
- MC 版本
- 1.21.10
SHA-1 e3e7e22d29fdc0cd6738ee93ca2b1284a568a8ab获取文件 voicechat-discord-fabric-1.21.10-3.0.13.jarfabric-1.21.4-3.0.13
正式版- 加载器
- fabric
- MC 版本
- 1.21.4
SHA-1 cbc76ad2b17bee7d5f8bd041ba8b1af544b1ac5d获取文件 voicechat-discord-fabric-1.21.4-3.0.13.jarpaper-3.0.13
正式版- 加载器
- paper · purpur
- MC 版本
- 1.19.2 · 1.20.1 · 1.21.1 · 1.21.4 · 1.21.5 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 c6c28ea9d63fb361349f30c33ef586a838f7c37a获取文件 voicechat-discord-paper-3.0.13.jar展开更新日志
- Rust dependencies were updated. This should fix issues related to connecting to Discord's servers. (#136)
Code changes: https://gitlab.com/amsam0/voicechat-discord/-/compare/3.0.12...3.0.13
fabric-1.21.9-3.0.12
正式版- 加载器
- fabric
- MC 版本
- 1.21.9
SHA-1 d4d682efcf63ba7cc1ac1b1d3405c7b9ed21e0ca获取文件 voicechat-discord-fabric-1.21.9-3.0.12.jarfabric-1.21.8-3.0.12
正式版- 加载器
- fabric
- MC 版本
- 1.21.8
SHA-1 a6232bc72329edc09251d4e1a8f8f782f568bd36获取文件 voicechat-discord-fabric-1.21.8-3.0.12.jarfabric-1.19.2-3.0.12
正式版- 加载器
- fabric
- MC 版本
- 1.19.2
SHA-1 5e0b1e498d4f8b27be3ccb8c552a85df361deb65获取文件 voicechat-discord-fabric-1.19.2-3.0.12.jarfabric-1.20.1-3.0.12
正式版- 加载器
- fabric
- MC 版本
- 1.20.1
SHA-1 a14e7de247f15905d37fcec154bb84e912fa36ed获取文件 voicechat-discord-fabric-1.20.1-3.0.12.jarfabric-1.21.4-3.0.12
正式版- 加载器
- fabric
- MC 版本
- 1.21.4
SHA-1 d72c16272a383bb359ed74f17da9f2361d91cc88获取文件 voicechat-discord-fabric-1.21.4-3.0.12.jarfabric-1.21.1-3.0.12
正式版- 加载器
- fabric
- MC 版本
- 1.21.1
SHA-1 c72c9d9490eb10729ae3eab1a9b3fe27f557ab7a获取文件 voicechat-discord-fabric-1.21.1-3.0.12.jarfabric-1.21.5-3.0.12
正式版- 加载器
- fabric
- MC 版本
- 1.21.5
SHA-1 b245ac384f63fa7b3f7544ffb0759d862be6bde9获取文件 voicechat-discord-fabric-1.21.5-3.0.12.jarfabric-1.21.10-3.0.12
正式版- 加载器
- fabric
- MC 版本
- 1.21.10
SHA-1 4e4d8e1542c38f99f224f9d86b724f849abb9be3获取文件 voicechat-discord-fabric-1.21.10-3.0.12.jarpaper-3.0.12
正式版- 加载器
- paper · purpur
- MC 版本
- 1.19.2 · 1.20.1 · 1.21.1 · 1.21.4 · 1.21.5 · 1.21.8 · 1.21.9 · 1.21.10
SHA-1 1ead152e0ad1744fd703c3561df1fbe26539e132获取文件 voicechat-discord-paper-3.0.12.jar展开更新日志
- Minecraft versions 1.21.9 and 1.21.10 are now supported.
- There is now a separate Fabric jar for each Minecraft version.
- Adventure usage has been removed. This allows us to remove the messy code used to convert Adventure messages to Minecraft messages on Fabric, and generally just reduces code complexity and increases performance.
- The update checker has been completely removed.
- Opus has been updated to 1.5.2.
- The bot setup guide has been updated. Previously broken images have been fixed.
- Miscellaneous internal improvements.
Code changes: https://gitlab.com/amsam0/voicechat-discord/-/compare/3.0.11...3.0.12
3.0.11
正式版- 加载器
- fabric
- MC 版本
- 1.19.2 · 1.20.1 · 1.21.1 · 1.21.4 · 1.21.5 · 1.21.8
SHA-1 75357549125df05655eb2ebc5781a96432ee7990获取文件 voicechat-discord-fabric-3.0.11.jar展开更新日志
- The supported Minecraft versions have been drastically narrowed down.
- We now support:
- 1.19.2
- 1.20.1
- 1.21.1
- 1.21.4
- 1.21.5 (newly supported)
- 1.21.8 (newly supported)
- All other Minecraft versions are not considered supported. This list is based on Simple Voice Chat's supported versions. Future releases will follow any changes made to that list of supported versions.
- Thanks to the smaller range of supported Minecraft versions, manually testing all supported versions is now feasible, and all versions have been tested on both Fabric and Paper.
- We now support:
- The update checker has been simplified and improved so that it will be resilient if major changes such as releasing a separate jar for every supported Minecraft version (as opposed to the current method of releasing a single jar for all supported versions) are made in the future.
- Log messages on Fabric are now prefixed with
[voicechat-discord]. - Attempting to shut down natives that have not been loaded will no longer cause the plugin to fail to shut down.
- The Fabric Permissions API has been upgraded to version 0.3.3 in order to fix compatibility issues with recent Minecraft versions.
- Due to recent GitHub deprecations, Linux natives will now be built on Ubuntu 22.04. This means that there may be errors on hosting providers using old glibc versions. If you encounter this issue, please see this StackOverflow post.
Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.10...3.0.11
3.0.11
正式版- 加载器
- paper · purpur
- MC 版本
- 1.19.2 · 1.20.1 · 1.21.1 · 1.21.4 · 1.21.5 · 1.21.8
SHA-1 4d0dad2c9e836166bfe22231259ae47bb34ae419获取文件 voicechat-discord-paper-3.0.11.jar展开更新日志
- The supported Minecraft versions have been drastically narrowed down.
- We now support:
- 1.19.2
- 1.20.1
- 1.21.1
- 1.21.4
- 1.21.5 (newly supported)
- 1.21.8 (newly supported)
- All other Minecraft versions are not considered supported. This list is based on Simple Voice Chat's supported versions. Future releases will follow any changes made to that list of supported versions.
- Thanks to the smaller range of supported Minecraft versions, manually testing all supported versions is now feasible, and all versions have been tested on both Fabric and Paper.
- We now support:
- The update checker has been simplified and improved so that it will be resilient if major changes such as releasing a separate jar for every supported Minecraft version (as opposed to the current method of releasing a single jar for all supported versions) are made in the future.
- Log messages on Fabric are now prefixed with
[voicechat-discord]. - Attempting to shut down natives that have not been loaded will no longer cause the plugin to fail to shut down.
- The Fabric Permissions API has been upgraded to version 0.3.3 in order to fix compatibility issues with recent Minecraft versions.
- Due to recent GitHub deprecations, Linux natives will now be built on Ubuntu 22.04. This means that there may be errors on hosting providers using old glibc versions. If you encounter this issue, please see this StackOverflow post.
Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.10...3.0.11
3.0.10
正式版- 加载器
- fabric
- MC 版本
- 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4
SHA-1 06c18ee2da87c68b884fef0fcdf4f84e6593dc98获取文件 voicechat-discord-fabric-3.0.10.jar展开更新日志
- Fix a crash that could occur when initializing the Tokio runtime with only one core
- Prevent initializing and then immediately shutting down the Tokio runtime on shutdown
Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.9...3.0.10
3.0.10
正式版- 加载器
- paper · purpur
- MC 版本
- 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4
SHA-1 daa22cd9cd2fa6cccbc81d5df7da149576bbab36获取文件 voicechat-discord-paper-3.0.10.jar展开更新日志
- Fix a crash that could occur when initializing the Tokio runtime with only one core
- Prevent initializing and then immediately shutting down the Tokio runtime on shutdown
Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.9...3.0.10
3.0.9
正式版- 加载器
- fabric
- MC 版本
- 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4
SHA-1 b648b13ff9ae2f4912d87017ff4d4dc709e3c00f获取文件 voicechat-discord-fabric-3.0.9.jar展开更新日志
- (Paper) Hopefully fix all broken versions (so 1.19-1.21.3), for real this time
Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.8...3.0.9
3.0.9
正式版- 加载器
- paper · purpur
- MC 版本
- 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4
SHA-1 3640e9cff46727e4e376880e95a96a7dce136c30获取文件 voicechat-discord-paper-3.0.9.jar展开更新日志
- (Paper) Hopefully fix all broken versions (so 1.19-1.21.3), for real this time
Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.8...3.0.9
3.0.8
正式版- 加载器
- fabric
- MC 版本
- 1.21.4
SHA-1 5a1f561ef32eacab349462952b30ac6db1fb212c获取文件 voicechat-discord-fabric-3.0.8.jar展开更新日志
- Fix 1.21.4
Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.7...3.0.8
3.0.7 (build failed; never released)
- Attempt to fix <1.21.3
Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.6...3.0.7
3.0.8
正式版- 加载器
- paper · purpur
- MC 版本
- 1.21.4
SHA-1 6a36f1af042959d57e216ef5a64021113aff5468获取文件 voicechat-discord-paper-3.0.8.jar展开更新日志
- Fix 1.21.4
Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.7...3.0.8
3.0.7 (build failed; never released)
- Attempt to fix <1.21.3
Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.6...3.0.7
3.0.6
正式版- 加载器
- fabric
- MC 版本
- 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4
SHA-1 37dd9dd4b36e56418fa1a86360bd4cd1aedc038c获取文件 voicechat-discord-fabric-3.0.6.jar展开更新日志
- Update to support 1.12.3+; thanks to AlexDerProGamer for their initial PR
Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.5...3.0.6
3.0.6
正式版- 加载器
- paper · purpur
- MC 版本
- 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3 · 1.21.4
SHA-1 6e71f030ffd70311c39f5c295ade5b654f6c33c8获取文件 voicechat-discord-paper-3.0.6.jar展开更新日志
- Update to support 1.12.3+; thanks to AlexDerProGamer for their initial PR
Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.5...3.0.6
3.0.5
正式版- 加载器
- fabric
- MC 版本
- 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3
SHA-1 b4681138b19ec028029ca07a63c46918d7457b1b获取文件 voicechat-discord-fabric-3.0.5.jar展开更新日志
- Add thread names to make future debugging easier
- Try to reduce tokio runtime overhead while idle
Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.4...3.0.5
3.0.5
正式版- 加载器
- paper · purpur
- MC 版本
- 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21 · 1.21.1 · 1.21.2 · 1.21.3
SHA-1 33560ae663380366ab2d353118d6d39e58ec56d3获取文件 voicechat-discord-paper-3.0.5.jar展开更新日志
- Add thread names to make future debugging easier
- Try to reduce tokio runtime overhead while idle
Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.4...3.0.5
3.0.4
正式版- 加载器
- fabric
- MC 版本
- 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21
SHA-1 16eced27cc7759a39cb47d728104c0394e0ce8b3获取文件 voicechat-discord-fabric-3.0.4.jar展开更新日志
- Adjust error message for when an audio sender can't be registered to hopefully make it less confusing
Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.3...3.0.4
3.0.4
正式版- 加载器
- paper · purpur
- MC 版本
- 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21
SHA-1 f328c4071d85581e0d22a5807957fdcdbfc6aee3获取文件 voicechat-discord-paper-3.0.4.jar展开更新日志
- Adjust error message for when an audio sender can't be registered to hopefully make it less confusing
Code changes: https://github.com/amsam0/voicechat-discord/compare/3.0.3...3.0.4
3.0.3
正式版- 加载器
- fabric
- MC 版本
- 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21
SHA-1 bd9284f05b6034b4e7f607829cf7af4f4ba36c09获取文件 voicechat-discord-fabric-3.0.3.jar展开更新日志
- Fix crash when running /dvc start by forcing ring to be used for cryptography instead of aws-lc (#59)
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/3.0.2...3.0.3
3.0.3
正式版- 加载器
- paper · purpur
- MC 版本
- 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21
SHA-1 2c1ee2e606e3d4a9a5a23aefa67197eb327912ec获取文件 voicechat-discord-paper-3.0.3.jar展开更新日志
- Fix crash when running /dvc start by forcing ring to be used for cryptography instead of aws-lc (#59)
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/3.0.2...3.0.3
3.0.2
正式版- 加载器
- fabric
- MC 版本
- 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21
SHA-1 664ac3aaecd97dae9fe6f21af1ccc2bd0361eb12获取文件 voicechat-discord-fabric-3.0.2.jar展开更新日志
- (Paper) Fix the bot not disconnecting from Discord when the player leaves the game (#57)
- This also fixes issues with the update checker not alerting operators of an update on Paper
- Fix the bot not disconnecting from Discord when the server stops
- (Fabric) Fix the addon's shutdown process blocking the server from shutting down
- Add failsafe if an error occurs during the bot stop process
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/3.0.1...3.0.2
3.0.2
正式版- 加载器
- paper · purpur
- MC 版本
- 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21
SHA-1 9bebcbaa17b86e9c7081d732516f9c6e7423d81d获取文件 voicechat-discord-paper-3.0.2.jar展开更新日志
- (Paper) Fix the bot not disconnecting from Discord when the player leaves the game (#57)
- This also fixes issues with the update checker not alerting operators of an update on Paper
- Fix the bot not disconnecting from Discord when the server stops
- (Fabric) Fix the addon's shutdown process blocking the server from shutting down
- Add failsafe if an error occurs during the bot stop process
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/3.0.1...3.0.2
3.0.1
正式版- 加载器
- fabric
- MC 版本
- 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21
SHA-1 e00030362f3948f435d6efa87f986768e9c8fd0e获取文件 voicechat-discord-fabric-3.0.1.jar展开更新日志
- Hopefully add compatibility for older glibc versions (#54)
- (Paper) Fix getEntityPosition failing (#56)
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/3.0.0...3.0.1
3.0.1
正式版- 加载器
- paper · purpur
- MC 版本
- 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21
SHA-1 20d613510897036179ef099e9315816299c0fdac获取文件 voicechat-discord-paper-3.0.1.jar展开更新日志
- Hopefully add compatibility for older glibc versions (#54)
- (Paper) Fix getEntityPosition failing (#56)
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/3.0.0...3.0.1
3.0.0
正式版- 加载器
- fabric
- MC 版本
- 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21
SHA-1 f8a9c1801d7399fd3ad87ae8886c7bdb334b7179获取文件 voicechat-discord-fabric-3.0.0.jar展开更新日志
- Major internal changes, which should result in better stability and performance
- The JDA Java discord library is no longer used and it has been replaced by the Serenity and Songbird Rust discord libraries
- This means that the plugin requires some native libraries, which unfortunately increased the JAR size
- The advantage is that SSL is bundled with the libraries instead of requiring Java's SSL, fixing #11
- The new implementation should be faster and less prone to getting into a buggy state
- Many fixes to fix support for 1.20.3 and later
- On the Fabric side, usage of JSON to convert between adventure and native component classes was removed. Now, components are manually converted which should be much more robust and slightly more performant
- On the Paper side, in 1.20.6 and later, the new Commands API is used, and in <1.20.6, reflection is used in more places due to Paperweight's new mapping behavior breaking stuff
- Require Java 21 (the addon still supports 1.19.4)
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/2.1.1...3.0.0
3.0.0
正式版- 加载器
- paper · purpur
- MC 版本
- 1.19.4 · 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6 · 1.21
SHA-1 095a1f3f0f2b515e8ec1780c11e80ca38661b128获取文件 voicechat-discord-paper-3.0.0.jar展开更新日志
- Major internal changes, which should result in better stability and performance
- The JDA Java discord library is no longer used and it has been replaced by the Serenity and Songbird Rust discord libraries
- This means that the plugin requires some native libraries, which unfortunately increased the JAR size
- The advantage is that SSL is bundled with the libraries instead of requiring Java's SSL, fixing #11
- The new implementation should be faster and less prone to getting into a buggy state
- Many fixes to fix support for 1.20.3 and later
- On the Fabric side, usage of JSON to convert between adventure and native component classes was removed. Now, components are manually converted which should be much more robust and slightly more performant
- On the Paper side, in 1.20.6 and later, the new Commands API is used, and in <1.20.6, reflection is used in more places due to Paperweight's new mapping behavior breaking stuff
- Require Java 21 (the addon still supports 1.19.4)
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/2.1.1...3.0.0
2.1.1
正式版- 加载器
- fabric
- MC 版本
- 1.19.4 · 1.20 · 1.20.1 · 1.20.2
SHA-1 bcc633cd733d404afd5b0f0c7c103e9b8a52bf58获取文件 voicechat-discord-fabric-2.1.1.jar展开更新日志
- (Fabric) Fixed #25 - /dvc now works correctly on 1.20+! Sorry this took so long to fix; I actually fixed it almost a month ago but never made a release.
- Fixed a minor punctuation issue with the message about Simple Voice Chat not being new enough
- Increased minimum Minecraft version to 1.19.4 from 1.19.2
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/2.1.0...2.1.1
2.1.1
正式版- 加载器
- paper · purpur
- MC 版本
- 1.19.4 · 1.20 · 1.20.1 · 1.20.2
SHA-1 a711d5265234c939c48e5acec0e6efbb915ddf35获取文件 voicechat-discord-paper-2.1.1.jar展开更新日志
- (Fabric) Fixed #25 - /dvc now works correctly on 1.20+! Sorry this took so long to fix; I actually fixed it almost a month ago but never made a release.
- Fixed a minor punctuation issue with the message about Simple Voice Chat not being new enough
- Increased minimum Minecraft version to 1.19.4 from 1.19.2
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/2.1.0...2.1.1
2.1.0
正式版- 加载器
- fabric
- MC 版本
- 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1
SHA-1 ff4b29147f38222f0ca868e94f358cd3d3c7efec获取文件 voicechat-discord-fabric-2.1.0.jar展开更新日志
This update has some new features and bugfixes. The minimum Simple Voice Chat version has been increased to 2.4.11.
- Reduce volume of whispering players in the audio that goes to discord
- Don't allow players to use
/dvc groupwhen groups are disabled - Fixed tab complete on Paper
- Switch to using adventure and minimessage for messages. This means that we no longer use the legacy formatting codes, and some messages will have colors in the console!
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/2.0.1...2.1.0
2.1.0
正式版- 加载器
- paper · purpur
- MC 版本
- 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1
SHA-1 3f1d4d7a6d215e120c923793b84465c471a23d44获取文件 voicechat-discord-paper-2.1.0.jar展开更新日志
This update has some new features and bugfixes. The minimum Simple Voice Chat version has been increased to 2.4.11.
- Reduce volume of whispering players in the audio that goes to discord
- Don't allow players to use
/dvc groupwhen groups are disabled - Fixed tab complete on Paper
- Switch to using adventure and minimessage for messages. This means that we no longer use the legacy formatting codes, and some messages will have colors in the console!
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/2.0.1...2.1.0
2.0.1
正式版- 加载器
- paper · purpur
- MC 版本
- 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1
SHA-1 6c6995dfd6531dcdfd9575f79107f7deb98e8f2f获取文件 voicechat-discord-paper-2.0.1.jar展开更新日志
This update fixes one of the major issues with 2.0.0. If you are on Fabric, you probably didn't experience it, but you should still update because of the other fixes and improvements.
- Fixed #22
- Switch to a simpler volume adjustment method. While this seems to work fine, please report any issues with the audio going to Discord!
- Slight improvement: packets with a volume less than or equal to 0 (which ends up being silent) won't be sent to Discord. This can happen when we receive packets out of the distance of the player
- Improve reset watcher to be slower, this may fix some audio related issues
- Make NMS usage and reflection on Paper safer and hopefully future proof it more
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/2.0.0...2.0.1
2.0.1
正式版- 加载器
- fabric
- MC 版本
- 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1
SHA-1 2b6df671977fb1c0b8df4c485630f44933066336获取文件 voicechat-discord-fabric-2.0.1.jar展开更新日志
This update fixes one of the major issues with 2.0.0. If you are on Fabric, you probably didn't experience it, but you should still update because of the other fixes and improvements.
- Fixed #22
- Switch to a simpler volume adjustment method. While this seems to work fine, please report any issues with the audio going to Discord!
- Slight improvement: packets with a volume less than or equal to 0 (which ends up being silent) won't be sent to Discord. This can happen when we receive packets out of the distance of the player
- Improve reset watcher to be slower, this may fix some audio related issues
- Make NMS usage and reflection on Paper safer and hopefully future proof it more
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/2.0.0...2.0.1
2.0.0
正式版- 加载器
- fabric
- MC 版本
- 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1
SHA-1 11c790c12575a2cce035dec25e5143ca0ad8c5d2获取文件 voicechat-discord-fabric-2.0.0.jar展开更新日志
Huge thanks to Totobird for being a huge help with this update! Their PR was the main reason I started working on it again.
- All commands have been moved to subcommands on the
/dvccommand- See https://github.com/naturecodevoid/voicechat-discord#using-it-in-game for docs
/startdiscordvoicechatwas moved to/dvc start- Running
/dvc startwhile in a voice chat session restarts the session
- Running
- New subcommand:
/dvc stop- Only usable while currently in a discord voice chat session
- Disconnects the bot and stops the session
- New subcommand:
/dvc group - New subcommand:
/dvc togglewhisper- Allows mod users to whisper
- New subcommand:
/dvc reloadconfig- Only usable by operators or players with the
voicechat-discord.reload-configpermission - Stops all sessions and reloads the config
- Only usable by operators or players with the
- New subcommand:
/dvc checkforupdate- Only usable by operators
- Checks for a new update using the GitHub API. If one is found, finds the version on Modrinth and links to the version page.
- Group support (
/dvc group) - Whispering support (
/dvc togglewhisper) - Added support for people using the mod to hear static/entity/locational audio channels
- Use the new audio sender API to improve compatibility with other addons
- [Fabric only] Use the Fabric Permissions API to support mods like LuckPerms for the reload config permission
- Added version checker to ensure the plugin/mod is updated
- Added Simple Voice Chat version checker to ensure we have a new enough version of the mod
- Hopefully fixed #5
- Better login failure error handling and logging
- Improvements to messages sent to players to be more clear
- Optional debug logging to hopefully help with debugging issues
- Major refactors and command handling improvements
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/1.4.0...2.0.0
2.0.0
正式版- 加载器
- paper · purpur
- MC 版本
- 1.19.2 · 1.19.3 · 1.19.4 · 1.20 · 1.20.1
SHA-1 74134ea8a8ca2ec3b25d7a6a7fe7cf80a70a9cf9获取文件 voicechat-discord-paper-2.0.0-dev-all.jar展开更新日志
Huge thanks to Totobird for being a huge help with this update! Their PR was the main reason I started working on it again.
- All commands have been moved to subcommands on the
/dvccommand- See https://github.com/naturecodevoid/voicechat-discord#using-it-in-game for docs
/startdiscordvoicechatwas moved to/dvc start- Running
/dvc startwhile in a voice chat session restarts the session
- Running
- New subcommand:
/dvc stop- Only usable while currently in a discord voice chat session
- Disconnects the bot and stops the session
- New subcommand:
/dvc group - New subcommand:
/dvc togglewhisper- Allows mod users to whisper
- New subcommand:
/dvc reloadconfig- Only usable by operators or players with the
voicechat-discord.reload-configpermission - Stops all sessions and reloads the config
- Only usable by operators or players with the
- New subcommand:
/dvc checkforupdate- Only usable by operators
- Checks for a new update using the GitHub API. If one is found, finds the version on Modrinth and links to the version page.
- Group support (
/dvc group) - Whispering support (
/dvc togglewhisper) - Added support for people using the mod to hear static/entity/locational audio channels
- Use the new audio sender API to improve compatibility with other addons
- [Fabric only] Use the Fabric Permissions API to support mods like LuckPerms for the reload config permission
- Added version checker to ensure the plugin/mod is updated
- Added Simple Voice Chat version checker to ensure we have a new enough version of the mod
- Hopefully fixed #5
- Better login failure error handling and logging
- Improvements to messages sent to players to be more clear
- Optional debug logging to hopefully help with debugging issues
- Major refactors and command handling improvements
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/1.4.0...2.0.0
1.4.0
正式版- 加载器
- fabric
- MC 版本
- 1.19.2 · 1.19.3 · 1.19.4 · 1.20
SHA-1 caad46def593cb2cc26df74307b6eb40cc26504d获取文件 voicechat-discord-fabric-1.4.0.jar展开更新日志
This release should be functionally identical to 1.3.0 on fabric, but it fixed this paper specific bug: (#4) On paper, the plugin configuration folder is not created
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/1.3.0...1.4.0
1.4.0
正式版- 加载器
- paper · purpur
- MC 版本
- 1.19.2 · 1.19.3 · 1.19.4 · 1.20
SHA-1 938594a2cacea8e209a5d1321e34e7b8503fc529获取文件 voicechat-discord-paper-1.4.0.jar展开更新日志
Fixed #4: On paper, the plugin configuration folder is not created
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/1.3.0...1.4.0
1.3.0
正式版- 加载器
- fabric
- MC 版本
- 1.19.2
SHA-1 30e01452e6c38e04a465d0ea683b632093ba4128获取文件 voicechat-discord-fabric-1.3.0.jar展开更新日志
Fixed #2
Dropped Bukkit and Spigot support
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/1.2.0...1.3.0
1.3.0
正式版- 加载器
- paper · purpur
- MC 版本
- 1.19.2
SHA-1 35dc2b09a2d02f798dcf04eb61d5925c48caf993获取文件 voicechat-discord-paper-1.3.0.jar展开更新日志
Fixed #2
Dropped Bukkit and Spigot support
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/1.2.0...1.3.0
1.2.0
正式版- 加载器
- fabric
- MC 版本
- 1.19.2
SHA-1 a6bdcf749932a66b1ea900a98cfa6aa8dc81421f获取文件 voicechat-discord-fabric-1.2.0.jar展开更新日志
Fixed some issues with multiple bots
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/1.1.0...1.2.0
1.2.0
正式版- 加载器
- bukkit · paper · purpur · spigot
- MC 版本
- 1.19.2 · 1.19.3 · 1.19.4 · 1.20
SHA-1 f2c57c9d452262b4e26b8a0a70da4f36b167edde获取文件 voicechat-discord-bukkit-1.2.0.jar展开更新日志
⚠️ Warning ⚠️
This is the last release that supports spigot and bukkit. Later releases require Paper. If you are on Paper or Purpur, don’t use this release. Only use this release if you are using Spigot/CraftBukkit and cannot use Paper or Purpur.
Fixed some issues with multiple bots
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/1.1.0...1.2.0
1.1.0
正式版- 加载器
- fabric
- MC 版本
- 1.19.2
SHA-1 f0cfaf970ef0861f01367b735b49bf386e1e677a获取文件 voicechat-discord-fabric-1.1.0.jar展开更新日志
Internal changes to support Bukkit and Fabric with the same codebase
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/1.0.0-build4...1.1.0
1.1.0
正式版- 加载器
- bukkit · paper · purpur · spigot
- MC 版本
- 1.19.2
SHA-1 ba8f9aec84f82edc206ec061563f32cbd2e59a71获取文件 voicechat-discord-bukkit-1.1.0.jar展开更新日志
Internal changes to support Bukkit and Fabric with the same codebase
Code changes: https://github.com/naturecodevoid/voicechat-discord/compare/1.0.0-build4...1.1.0
1.0.0
正式版- 加载器
- bukkit · paper · purpur · spigot
- MC 版本
- 1.19.2
SHA-1 3c816760718009039fe43723326f5f31dc6e2e83获取文件 voicechat-discord-1.0.0.jar展开更新日志
Initial release
Code: https://github.com/naturecodevoid/voicechat-discord/tree/1.0.0-build4
依赖关系
- 必需未命名依赖
- 必需Simple Voice Chat