Tags
Creators
Details
Licensed MIT
Published 3 years ago
All versions
0.5.0+1.20.1-forge
Release
[Forge 1.20.1] World Host 0.5.02 years ago 6,355
Compatibility
Minecraft: Java Edition
1.20–1.20.1
Platform
Forge
Supported environments
Client-side
Changes
This version introduces an experimental plugin API, as well as compatibility for Simple Voice Chat.
Experimental Plugin API
- Depend on World Host through the Modrinth Maven.
- Your plugin's entrypoint class needs to implement
WorldHostPlugin. - On Fabric, specify your entrypoint class through the
worldhostentrypoint in your fabric.mod.json. - On Forge and NeoForge, annotate your entrypoint class with
@WorldHostPlugin.Entrypoint.
Changes
- Added support for Simple Voice Chat
- Requires client to have World Host installed as well. This will not be changed.
- Known issue: currently doesn't work if the host and client are on the same LAN
- Added an experimental plugin API
- Migrated the friends file to a global directory
- Completely redid the add friend screen
- Added an origin checker to warn when World Host was downloaded from an unofficial source
- The warning will only appear once
- Added protocol encryption
- Added a player info screen
- No longer shows the UPnP status if UPnP hasn't been enabled in this session
- No longer shows the "went online" message if you're already on the online friends screen
- Updated Traditional Chinese translation (thanks to dirtTW)
- Updated Russian translation (thanks to Korben)
- Updated Ukrainian translation (thanks to veydzh3r)
- Added support for 1.21.3
- Dropped support for 1.18.2
Bug Fixes
- Fixed a potential crash when refreshing the friends list
- Fixed pressing Escape in some screens not returning to the previous screen
Supplementary resources
| File | Type | Size | |
|---|---|---|---|
| world-host-0.5.0+1.20.1-forge-sources.jar | Unknown | 220.22 KiB |
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:2AIZDfYo:7rDk0N8A"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:2AIZDfYo:7rDk0N8A"
}

