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

EzLib

An easy helper library for Ez client-side Fabric mods.

Загрузки
192
Подписчики
1
Обновлён
13 мая 2026 г.
Лицензия
MIT

Опубликован 12 мая 2026 г.

EzLib

EzLib

EzLib is an easy helper library for Ez client-side Fabric mods.

It helps developers create client-side QoL mods faster by providing simple helper APIs for logging, configs, colors, player checks, inventory checks, items, math, and more.


Features

  • EzLogger — simple logging helper
  • EzConfig — JSON config helper
  • EzColor — ready-to-use color constants
  • EzOutline — outline/color helper
  • EzClient — Minecraft client/player/world helper
  • EzMath — useful math helpers
  • EzItem — ItemStack/item checks
  • EzInventory — inventory search helpers
  • EzPlayer — player state helpers
  • Basic helper API for future Ez mods

Example

EzLogger.info("This mod is using EzLib!");

For developers

To use EzLib in your mod, add JitPack to your settings.gradle.

dependencyResolutionManagement {
    repositories {
        maven {
            name = "Fabric"
            url = "https://maven.fabricmc.net/"
        }

        maven {
            name = "JitPack"
            url = "https://jitpack.io"
        }

        mavenCentral()
    }
}

Then add EzLib to your build.gradle dependencies.

dependencies {
    implementation "com.github.ItsRaphaelakos:EzLib:1.0.4"
}

And add EzLib to your fabric.mod.json dependencies.

"depends": {
  "fabricloader": ">=0.19.2",
  "fabric-api": ">=0.148.0+26.1.2",
  "minecraft": "26.1.2",
  "ezlib": ">=1.0.4"
}

Compatibility

  • Minecraft: 26.1.2
  • Fabric Loader: 0.19.2
  • Fabric API: 0.148.0+26.1.2
  • Java: 25

Links

Ченджлог

1.0.5.1Релиз26.1, 26.1.1, 26.1.2 · 13 мая 2026 г.

EzLib 1.0.5.1

Fixed:

  • Updated GUI rendering support for Minecraft 26.1.2
  • Updated EzGui to use the new GuiGraphicsExtractor / Identifier API
  • Fixed ConfigScreenFactory rendering for the new screen API
  • Fixed EzKeybind compatibility with the new KeyMapping category system
  • Fixed multiple helper classes for Minecraft 26.1.2 compatibility

Added:

  • Safer HUD helper registration
  • Extra item durability helper methods for future HUD mods

Improved:

  • Better compatibility with Ez Coordinates
  • Prepared EzLib for upcoming Ez Armor HUD development
1.0.0Релиз26.1.2 · 12 мая 2026 г.

EzLib 1.0.0

Initial release of EzLib.

EzLib is an easy helper library for Ez client-side Fabric mods.

Features

  • EzLogger
  • EzConfig
  • EzColor
  • EzOutline
  • EzClient
  • EzMath
  • EzItem
  • EzInventory
  • EzPlayer
  • Basic safe helper API for future Ez mods

Compatibility

  • Minecraft 26.1.2
  • Fabric Loader 0.19.2
  • Fabric API 0.148.0+26.1.2
  • Java 25

Комментарии

Загружаем…