CurseForge · Minecraft mod
EclipseUI
A modern config and config UI lib.
Quick answer
Which EclipseUI release should I use?
EclipseUI-neoforge-1.0.5+mc26.2 targets 26.2, 26.2-rc-2 with NeoForge. The project page does not say whether this file belongs on the client, dedicated server, or both. No extra mods listed for this file.
Where it goes
Is EclipseUI required on the client, server, or both?
The project page does not say whether this file belongs on the client, dedicated server, or both.
The source does not explicitly classify this release as client-only or server-only.
What else does EclipseUI-neoforge-1.0.5+mc26.2 need?
EclipseUI-neoforge-1.0.5+mc26.2. Change the file and its required mods may change too.
This file does not list any required mods. Do not add a library just because a different file uses it.
This file does not list any required or optional mods.
Before you install it
Add EclipseUI without breaking your instance.
Built for EclipseUI-neoforge-1.0.5+mc26.2. Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use EclipseUI-neoforge-1.0.5+mc26.2. It targets 26.2, 26.2-rc-2 with NeoForge; another release may have different loader, side or dependency requirements.
- 02
Bring the mods it needs
This file does not list any required mods. Do not add a library just because a different file uses it.
- 03
Put it on the correct side
The project page does not say whether this file belongs on the client, dedicated server, or both.
- 04
Pick the file you checked
Use the “Get this file” button beside EclipseUI-neoforge-1.0.5+mc26.2. 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 CurseForge.
Pick your setup
EclipseUI by Minecraft version and loader
Choose the version and loader you play, then open the matching release.
26.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
EclipseUI-neoforge-1.0.5+mc26.2
EclipseUI-neoforge-1.0.5+mc26.2-rc-2.jar
17 Jun 2026
EclipseUI-fabric-1.0.5+mc26.2
EclipseUI-fabric-1.0.5+mc26.2-rc-2.jar
17 Jun 2026
1.0.5+mc26.2-pre-4
EclipseUI-fabric-1.0.5+mc26.2-pre-4.jar
5 Jun 2026
EclipseUI-neoforge-1.0.4+mc26.1
EclipseUI-neoforge-1.0.4+mc26.1.jar
22 Apr 2026
1.0.5+mc26.2-snapshot-2
EclipseUI-fabric-1.0.5+mc26.2-snapshot-2.jar
9 Apr 2026
EclipseUI 1.0.4 for 26.1
EclipseUI-fabric-1.0.4+mc26.1.jar
9 Apr 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 CurseForge project page is in Resources.