Перейти к содержимому
Mineforgian

Graphene

Graphene is a client-side UI library for Minecraft (Fabric) that lets mod developers build interfaces with web technologies.

Загрузки
644
Подписчики
6
Обновлён
23 июля 2026 г.
Лицензия
MIT

Опубликован 19 февраля 2026 г.

Graphene

Modrinth GitHub Release Maven Central 26.2 Maven Central 1.21.11 License: MIT

Graphene is a client-side UI library for Minecraft that lets mod developers build interfaces with web technologies. It embeds Chromium through JCEF, so you can render HTML/CSS/JavaScript UIs in-game while keeping a clean Java API for mod integration.

A Three.js scene rendered by Graphene inside Minecraft

What is Graphene?

Graphene bridges Minecraft modding and modern web UI development. Instead of building every screen with Minecraft's rendering primitives, you can create interfaces with HTML, CSS, and JavaScript, then integrate them with your mod through a Java API.

Graphene provides:

  • interactive Chromium views that can be embedded in Minecraft screens;
  • packaged asset URLs and an optional development HTTP server;
  • two-way Java/JavaScript communication through an asynchronous bridge;
  • browser navigation, input, downloads, dialogs, context menus, and lifecycle controls;
  • off-screen browser sessions and surfaces for custom rendering integrations;
  • Chromium DevTools support for inspecting and debugging pages.

Check compatibility and installation for supported Minecraft and Loader versions.

Requirements

  • Java: 25 for Minecraft 26.2, 21 for Minecraft 1.21.11
  • GPU: NVIDIA GeForce GT 720 or better
  • For macOS users: macOS 12 (Monterey) or later

Supported Platforms

  • macOS: arm64, amd64
  • Linux: arm64, amd64
  • Windows: amd64, arm64

Tested Platforms

  • Windows 11 with AZERTY and QWERTY keyboard layouts
  • Linux (Wayland) with AZERTY and QWERTY keyboard layouts
  • macOS 26 with QWERTY keyboard layout

Installation

Graphene is published on Maven Central. Find the latest version on GitHub Releases, Modrinth, or the Minecraft-version-specific Maven Central artifacts, then add the artifact matching your target Minecraft version as a mod dependency:

repositories {
    mavenCentral()
}

dependencies {
    modImplementation("io.github.trethore:graphene-ui-26.2:<version>")
    // Or for Minecraft 1.21.11:
    // modImplementation("io.github.trethore:graphene-ui-1.21.11:<version>")
}

Declare Graphene as a runtime dependency in fabric.mod.json:

{
  "depends": {
    "grapheneui": ">=<version>"
  }
}

Register your mod from its client initializer and retain the returned context:

import io.github.trethore.graphene.api.Graphene;
import io.github.trethore.graphene.api.GrapheneContext;
import net.fabricmc.api.ClientModInitializer;

public final class ExampleModClient implements ClientModInitializer {
    private static GrapheneContext graphene;

    @Override
    public void onInitializeClient() {
        graphene = Graphene.register(ExampleModClient.class);
    }

    public static GrapheneContext graphene() {
        return graphene;
    }
}

See those documentation pages for more details:

Contributing

Contributions are welcome!

  • Read the contributor guide in CONTRIBUTING.md.
  • Report bugs or request features in Issues.
  • Open changes through Pull Requests.
  • All pull requests must be tested before being submitted.

Documentation

Start HERE!

License

Licensed under the MIT License by Titouan Réthoré.

Ченджлог

2.1.0Релиз26.2 · 23 июля 2026 г.

Added

  • Added Fabric support for Minecraft 26.2.
  • Added Minecraft-version-specific Maven artifacts for all supported versions.
  • Added structured release notes through this changelog.
  • Added external SonarQube analysis configuration.
  • Added a helper script for archiving released changelog entries.

Changed

  • Changed runtime JAR names to graphene-<version>-<loader>-<minecraft-version>.jar.
  • Improved SonarQube coverage and duplication reporting.
  • Centralized shared dependency and plugin versions in the Gradle version catalog.
  • Simplified release notes to curated changes and a full GitHub comparison.
  • Made publication targets sequential while keeping draft releases GitHub-only.
  • Added promotion of an existing draft after the remaining publication targets succeed.
2.1.0Релиз1.21.11 · 23 июля 2026 г.

Added

  • Added Fabric support for Minecraft 26.2.
  • Added Minecraft-version-specific Maven artifacts for all supported versions.
  • Added structured release notes through this changelog.
  • Added external SonarQube analysis configuration.
  • Added a helper script for archiving released changelog entries.

Changed

  • Changed runtime JAR names to graphene-<version>-<loader>-<minecraft-version>.jar.
  • Improved SonarQube coverage and duplication reporting.
  • Centralized shared dependency and plugin versions in the Gradle version catalog.
  • Simplified release notes to curated changes and a full GitHub comparison.
  • Made publication targets sequential while keeping draft releases GitHub-only.
  • Added promotion of an existing draft after the remaining publication targets succeed.
2.0.0Релиз1.21.11 · 19 июля 2026 г.

Changes

  • chore: migrate project (57726ca)
  • feat: add bug report and question templates for issue tracking (f6d1385)
  • docs: add contributing guidelines and security policy (#29) (6195e75)
  • Add Contributor Covenant Code of Conduct (3916971)
  • chore: ci. (7337d4c)
  • refactor: simplify artifact download path in publish.yml by removing unnecessary directories (28df71d)
  • refactor: update artifact download path in publish.yml for GitHub packages (0ede7c1)
1.7.2Релиз1.21.11 · 10 апреля 2026 г.

Patch Notes

  • refactor: update mod_version to 1.7.2 and enhance publish.yml for GitHub packages publication
  • refactor: enhance publish.yml to support multiple publish and release actions
  • feat: profiling support, docs update for debug, fixed crash on macos. (#28)
1.7.0Релиз1.21.11 · 6 апреля 2026 г.

Patch Notes

refactor: update release file retrieval method in publish.yml
feat: new render, fix a bug, and updated docs! (#27)

1.6.3Релиз1.21.11 · 27 марта 2026 г.

Patch Notes

  • feat: enhance native window handle retrieval and remove unused MIRRORS (#26)
  • feat: fix asset bug and beforeunload alert handling. (#25)
  • refactor: rename libs-src to references and update related documentation also updated gradle to 9.4
1.6.2Релиз1.21.11 · 24 марта 2026 г.

Patch Notes

  • feat: loading screen and refractor. (#23)
1.6.1Релиз1.21.11 · 23 марта 2026 г.

Patch Notes

  • feat: refractor api and updated bridge. (#22)

Комментарии

Загружаем…