
Modrinth · Minecraft mod
EclipseUI
A modern config and config UI lib.
Quick answer
Which EclipseUI release should I use?
EclipseUI 1.0.5+mc26.3-snapshot-8-fabric targets 26.3-snapshot-8 with Fabric. It must be installed on the client. Do not install it on the dedicated server. All 1 required mods have matching files.
Where it goes
Is EclipseUI required on the client, server, or both?
It must be installed on the client. Do not install it on the dedicated server.
This file is marked client-only.
What else does EclipseUI 1.0.5+mc26.3-snapshot-8-fabric need?
1.0.5+mc26.3-snapshot-8-fabric. Change the file and its required mods may change too.
Install Fabric API first. We found matching files for this game-version and loader setup.
We only count dependency files that match this setup. A file for another loader does not fill the gap.
Before you install it
Add EclipseUI without breaking your instance.
Built for EclipseUI 1.0.5+mc26.3-snapshot-8-fabric. Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use 1.0.5+mc26.3-snapshot-8-fabric. It targets 26.3-snapshot-8 with Fabric; another release may have different loader, side or dependency requirements.
- 02
Bring the mods it needs
Install Fabric API first. We found matching files for this game-version and loader setup.
- 03
Put it on the correct side
It must be installed on the client. Do not install it on the dedicated server.
- 04
Pick the file you checked
Use the “Get this file” button beside 1.0.5+mc26.3-snapshot-8-fabric. It opens that exact file at the source.
About this project
What does EclipseUI add?
EclipseUI
A lightweight, themeable config screen library for Minecraft mods.
Features
- Fabric & NeoForge support.
- Two themes: Faithful (vanilla style) & Modern (flat design)
- Rich widgets: toggles, sliders, dropdowns, color pickers, text fields
- ModMenu integration out of the box
Installation
For Mod Developers
Add EclipseUI to your mod by following the Usage Guide.
Quick dependency setup:
repositories {
maven("https://jitpack.io")
}
dependencies {
// Fabric
modImplementation("com.github.coredex-source.EclipseUI:EclipseUI-fabric:v1.0.2")
// NeoForge
implementation("com.github.coredex-source.EclipseUI:EclipseUI-neoforge:v1.0.2")
}
See the full Usage Guide for complete setup instructions and examples.
Quick Start
EclipseUI.configScreen()
.title(Component.literal("My Mod Config"))
.parent(parent)
.theme(Theme.MODERN)
.category(cat -> cat
.name(Component.literal("General"))
.toggle(t -> t
.name(Component.literal("Enable Feature"))
.binding(() -> config.enabled, v -> config.enabled = v)
.defaultValue(true)
)
.slider(s -> s
.name(Component.literal("Range"))
.range(0, 100, 1)
.bindingInt(() -> config.range, v -> config.range = v)
.defaultValue(50)
)
)
.build();
Documentation
- Usage Guide - Complete guide on integrating EclipseUI into your mod
- GitHub Issues - Report bugs or request features
License
MIT License
Project description from Modrinth.
Pick your setup
EclipseUI by Minecraft version and loader
Choose the version and loader you play, then open the matching release.
26.3-snapshot-8
1 loader build26.3-snapshot-2
1 loader build26.3-snapshot-1
1 loader build26.2-snapshot-5
1 loader build26.2-snapshot-4
1 loader build26.2-snapshot-3
1 loader build26.2-snapshot-2
1 loader build26.2-snapshot-1
1 loader build26.2-rc-2
2 loader builds26.2-pre-4
1 loader build26.2
2 loader builds26.1.2
2 loader buildsShowing the newest 12 of 15 game versions. Older files are in the list below.
Check the dependencies, then try the file in a copied instance before changing a world you care about.
Recent files
EclipseUI versions and loaders
1.0.5+mc26.3-snapshot-8-fabric
EclipseUI-fabric-1.0.5-fabric-26.3-snapshot-8.jar
13 Aug 2026
1.0.5+mc26.3-snapshot-1-fabric
EclipseUI-fabric-1.0.5-fabric-26.3-snapshot-1.jar
23 Jun 2026
1.0.5+mc26.2-rc-2
EclipseUI-neoforge-1.0.5+mc26.2-rc-2.jar
14 Jun 2026
1.0.5+mc26.2-rc-2
EclipseUI-fabric-1.0.5+mc26.2-rc-2.jar
14 Jun 2026
1.0.5+mc26.2-pre-4
EclipseUI-fabric-1.0.5+mc26.2-pre-4.jar
5 Jun 2026
1.0.5+mc26.2-snapshot-2
EclipseUI-fabric-1.0.5+mc26.2-snapshot-2.jar
9 Apr 2026
1.0.4+mc26.1
EclipseUI-neoforge-1.0.4+mc26.1.jar
28 Mar 2026
1.0.4+mc26.1
EclipseUI-fabric-1.0.4+mc26.1.jar
28 Mar 2026
1.0.3+mc26.1
EclipseUI-neoforge-1.0.3+mc26.1.jar
27 Mar 2026
1.0.3+mc26.1
EclipseUI-fabric-1.0.3+mc26.1.jar
27 Mar 2026
1.0.2+mc26.1
EclipseUI-neoforge-1.0.2+mc26.1.jar
27 Mar 2026
1.0.2+mc26.1
EclipseUI-fabric-1.0.2+mc26.1.jar
27 Mar 2026
Looking for an older file? The official Modrinth project page is in Resources.