(Github mirror) Minecraft Clientside Mod that adds specific stuff for Fabric.
fabricmc fabric-mod fabricmc-mod minecraft minecraft-mod fabric
0

Configure Feed

Select the types of activity you want to include in your feed.

small changs -_-

* Remove stringbox from lang
* Added tooltip for Color entries in the config ingame menu
* Removed flatDir block from build.gradle.kts repository

Lukiiy (Feb 21, 2026, 11:27 PM -0300) eab45735 ccb8d703

+2 -6
-4
build.gradle.kts
··· 11 11 12 12 repositories { 13 13 maven("https://maven.terraformersmc.com/") 14 - 15 - flatDir { 16 - dirs("libs") 17 - } 18 14 } 19 15 20 16 val minecraft = project.property("minecraft_version")!!
+1
src/main/java/me/lukiiy/lysten/client/IngameConfScreen.java
··· 232 232 box.setFilter(s -> s.matches("^[0-9A-Fa-f]{0,8}$")); 233 233 box.setValue(Integer.toHexString(key.get())); 234 234 box.setResponder(s -> key.set(hexToInt(s))); 235 + box.setTooltip(Tooltip.create(Component.translatable("lysten.config.colorbox"))); 235 236 } 236 237 237 238 @Override
+1 -2
src/main/resources/assets/lysten/lang/en_us.json
··· 35 35 "lysten.setting.filteredFireLayer": "Filtered Fire Overlay", 36 36 "lysten.config.nonReloadable": "If you want to change this setting, you will need to restart your game.", 37 37 "lysten.config.intbox": "Insert a number from %s to %s", 38 - "lysten.config.colorbox": "Please insert a valid ARGB color!\nExample: \"FF57C4FF\"\nLeave it blank for default!", 39 - "lysten.config.stringbox": "You can decorate your string with bold, colors, etc;\nTry using \"[bold]\", \"italic\", \"[yellow]\" or \"[color:#6996FF]\"" 38 + "lysten.config.colorbox": "Please insert a valid ARGB color!\nExample: \"FF57C4FF\"\nLeave it blank for default!" 40 39 }