Links
Tags
Creators
Details
0.3.2+mc26.1
Compatibility
Required content
Changes
0.3.2 — Full overlay UI on MC 26.1+
The merge UI is now available on every supported Minecraft version, including 26.1.x.
What changed
- MC 26.1+ overlay: per-replay checkboxes and the "Merge N Replays" button now appear in Flashback's Select Replay screen on MC 26.1, 26.1.1 and 26.1.2 — same UX as on 1.21.x. No more chat-only fallback.
- Dual UI source roots: the project now ships a
src/main/java-classic(1.21.x:GuiGraphics,Screen.render,drawCenteredString) and asrc/main/java-modern(26.1+:GuiGraphicsExtractor,extractRenderState,text(font, …)). Build pipeline selects the correct one automatically from theno_intermediateflag. - Internals: button attachment on 26.1 uses reflection on
Screen.addRenderableWidget(Fabric API removedScreens.getButtons). Mouse-click handling uses the newMouseButtonEventrecord.
Backport / migration notes
Nothing for users — drop in the new jar and the merge UI lights up.
For developers: a new MC release can be supported by either patching the matching java-classic/java-modern folder, or adding a third root if the rendering API shifts again.
Full 0.3.1 → 0.3.2 changes
Only the UI subsystem; merge core, security guards, CI workflow disable, and all 16 audit fixes from 0.3.1 are unchanged.
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:ja9dG9KW:kH7DWCDe"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:ja9dG9KW:kH7DWCDe"
}

