Tags
Creators
Details
Licensed MIT
Published 4 months ago
Updated 2 weeks ago
All versions
1.8.1+mc26.1.2-neoforge
Release
WebGUI 1.8.1 (26.1.2 NeoForge)2 weeks ago 16
Compatibility
Minecraft: Java Edition
26.1.2
Platform
NeoForge
Supported environments
Client and server
Required content
Any compatible version
Changes
1.8.1 - 2026-09-12
Fixed
- Right clicking an entity with a page bound to it crashed the game on NeoForge. The interaction event arrives on both the client and the server, and the client's copy was being handed to code that only a server can run: the first click on a bound entity took the whole client down. Fabric was never affected.
- A page opened from an entity was told nothing about the entity.
window.webgui.entitywasnull, so one page bound to several NPCs had no way to tell which of them had been clicked. The entity was sent a moment before the screen that needed it, and opening that screen threw it away. - The HUD disappeared when one page replaced another. Dying with a shop open — the death screen replaces the shop — or simply sending a second
/webgui guidestroyed the HUD, and it stayed gone until the server sent it again. - The pages a server hosts kept being served for a moment after the player left that server, on a token that leaving was supposed to revoke.
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:tDw1xQja:tK9WNzFz"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:tDw1xQja:tK9WNzFz"
}

