Icon Bubbles

**This resource pack changes your hearts and hunger bar icons to be circles.**

### Features:
– Round hearts
– Round hunger bar
– Changes all types of hearts (poison, freezing, hardcore…)
– Compatible with the [AppleSkin mod](https://modrinth.com/mod/appleskin)

**♡ Make sure to follow!**

Happier Pumpkin

# **😊Happier Pumpkin🎃**

**Happier Pumpkin** makes pumpkins happier the **HAPPIEST** in the **PUMPKING KINGDOM**

![Features](https://cdn.modrinth.com/data/cached_images/2ca826a2f386d320f99fec503df40af0f0f7e584.png)

Font Tweak

Changes the look of 7, 4, w, W, and H. My first resource pack. This resource pack was made for me to test how Minecraft handles custom fonts. Feel free to use this mod without any copyright or license issues.

FConfigLib

# FConfigLib
**FConfigLib** is a simple JSON configuration library designed specifically for Fabric Mod Loader.

## Features
* **Version compatibility**: FConfigLib is compatible with every Minecraft version, supported by Fabric Loader. It works on **Ornithe**, **LegacyFabric**, **Babric**, and other such projects.

* **Support for other games**: This library is not dependent on Minecraft code, it can be run on any other Java game loaded through Fabric Loader.

* **Easy to use API**: FConfigLib has annotation-based value limiters and validators. It allows for safe version conversion via config fixers.

Java 8+ is required in order for this mod to work.

## For mod devs

How to add to your project

Add JitPack to your repositories list in build.gradle.

“`groovy
maven {
name “JitPack”
url “https://jitpack.io”
}
“`

Add the following line to your dependencies in build.gradle.

“`groovy
dependencies {

modImplementation “com.github.ForwarD-NerN:fconfiglib:1.1.0”)
}
“`

Currently, there is no documentation available, however, you can look at an example [here](https://github.com/ForwarD-NerN/fconfiglib/blob/master/src/main/java/ru/nern/fconfiglib/example/ExampleMod.java).

Fast Leaves +

Made for The Last Frontier of Dominion project

leavesplus


**If any mod creators are concerned about this resource pack supporting their mods, I’m open to communication.**

🌴 **Features:**

– Transparency **removed** from modded leaves
– Supported Mods:
– [Oh The Biomes We’ve Gone](https://modrinth.com/mod/oh-the-biomes-weve-gone)
– [Burnt](https://modrinth.com/mod/burnt)
– [Chipped](https://modrinth.com/mod/chipped)
– [IceAndFire Community Edition](https://modrinth.com/mod/iceandfire-ce)
– [Malum](https://modrinth.com/mod/malum)
– [[Let’s Do] Meadow](https://modrinth.com/mod/lets-do-meadow)
**! Hanging Birch Leaves have a temporary solution / fix, which will most likely change with updates.**
– [Nature’s Aura](https://modrinth.com/mod/natures-aura)
– [Nature’s Spirit](https://modrinth.com/mod/natures-spirit)
– [Pastel](https://modrinth.com/mod/pastel-mod)
– [Project: Vibrant Journeys](https://modrinth.com/mod/project-vibrant-journeys)
– [Regions Unexplored](https://modrinth.com/mod/regions-unexplored)
– [Roots](https://www.curseforge.com/minecraft/mc-mods/roots)
– [Thavma](https://modrinth.com/mod/thavma)

For lovers of solid foliage and mods – enjoy! 🎋


Fast Leaves

Made for The Last Frontier of Dominion project

leaves


🍀 **Features:**

– Transparency **removed** from all vanilla leaves
– Dark oak leaves are **darker** for clearer visual contrast with oak leaves
– Glow lichen **no longer has a backside** – you almost never see it, so there’s no reason for it to exist

For lovers of solid foliage – enjoy using it! 🍂


Fabric Placeholder

# Fabric Placeholder
A placeholder mod that provides the `fabric` mod ID for older mods.

## MALWARE WARNING
There is a vibe-coded version of this mod going around that downloads and runs a Remote Access Trojan (RAT). The impersonation has the mod ID `fabric-placeholder` along with code whereas this mod is called `fabric-ph` and has no code in it.

Do not run mods or modpacks from people who you do not absolutely trust, and be sure not to download anything off of Discord either.

## Do I need this?
**Probably not.** Fabric API only removed the `fabirc` mod ID in `26.1-snapshot-1`, so mods using this mod ID will need to be recompiled anyway. However, if a mod asks you to add `fabric` on 26.1 or later, you can try using this mod to resolve the error. However, it very likely won’t work. I mostly made this as a joke in the Fabric Voice Chat, so if this actually works for something, please ping @sylv256 in the Fabric Discord server because it would be extremely funny.

## Use Case
You may need this if you’re using simpler mods that support many
versions at once within one jar or simply a mod that hasn’t updated
to using the `fabric-api` mod ID as a dependency.

~~In general, it is better to install this mod than not, especially
if a mod requires `fabric` and you have Fabric API installed.~~

DockBridge

# DockBridge

Velocity plugin to auto-register Docker-backed servers (e.g., Limbo) and check for updates on Modrinth.

## Features
– Auto-discovery: Containers with label `net.uebliche.dockbridge.autoregister=true` are registered as Velocity servers. Host from container name, port from label `net.uebliche.dockbridge.server_port` (fallback: first exposed port, else 25565).
– Name collisions: Default `suffix` → append short container id (`basename-abcdef`). Alternative `overwrite` → keep basename, last writer wins.
– `/dockbridge` command (permission `dockbridge.command`): Shows label filter, duplicate strategy, last scan stats, and registered servers (no sensitive data).
– Modrinth update check on proxy start; login hint for players with permission `dockbridge.update.notify`.

## Installation
1) Download the latest DockBridge release from Modrinth (jar file).
2) Place the jar into your Velocity `plugins/` folder.
3) (Optional) If Velocity runs in Docker, mount `/var/run/docker.sock` into the Velocity container so DockBridge can discover containers.
4) Start Velocity. On first start, the config file `dockbridge.conf` is created in the Velocity data folder; adjust settings and restart.
5) Permissions:
– `dockbridge.command` for `/dockbridge`
– `dockbridge.update.notify` for update hints on login

## Configuration
`dockbridge.conf` (created in the Velocity data folder on first start):
“`
docker.endpoint=unix:///var/run/docker.sock
docker.poll_interval_seconds=30
filters.proxy_group=default
docker.autoregister.label_key=net.uebliche.dockbridge.autoregister
docker.autoregister.label_value=true
docker.autoregister.name_label=net.uebliche.dockbridge.server_name
docker.autoregister.port_label=net.uebliche.dockbridge.server_port
docker.autoregister.duplicate_strategy=suffix # suffix | overwrite
“`

## Docker labels (example)
“`
net.uebliche.dockbridge.autoregister=true
net.uebliche.dockbridge.server_name=limbo
net.uebliche.dockbridge.server_port=30000
“`


## Local testing
### Gradle run
“`
./gradlew runVelocity
“`
Downloads Velocity, builds the plugin (shadowJar), and starts the proxy with the plugin loaded.

### Docker Compose (Limbo set)
“`
docker compose up –build # or: docker compose -f docker-compose.limbo.yml up –build
“`
Includes three Limbo backends (ports 30000/30001/30002) and Velocity on host port 26678. Velocity runs via `runVelocity` inside the container and mounts your sources/config.

## Commands & permissions
– `/dockbridge` (permission `dockbridge.command`): Status and registered servers.
– Update hint on login: permission `dockbridge.update.notify`.

## Troubleshooting
– No servers registered?
– Ensure your containers have the label `net.uebliche.dockbridge.autoregister=true` and a valid `net.uebliche.dockbridge.server_port`.
– Make sure Velocity can reach Docker: mount `/var/run/docker.sock` (or set `docker.endpoint` to a reachable TCP endpoint).
– Check `/dockbridge` output for last scan count and registered servers.
– Port mismatch or forwarding errors?
– Verify the Limbo (or other backend) port matches the label and the server properties.
– For Velocity forwarding, ensure forwarding secret/mode match on both ends.
– Duplicate names?
– Default strategy is `suffix`. Switch to `overwrite` via `docker.autoregister.duplicate_strategy` if you want last-writer-wins.


## Build
“`
./gradlew build
“`
Produces the shaded jar at `build/libs/DockBridge-.jar`.

## Contributing
– Fork & PRs welcome. Keep code comments minimal but purposeful.
– Default Java 21, Gradle Kotlin DSL, Velocity API 3.4.0-SNAPSHOT for run task; 3.1.1 for compileOnly/annotationProcessor.
– Run `./gradlew build` before submitting; Docker-based tests are optional.

Dithering3D

# 🎨 Dithering3D – Surface-Stable Fractal Dithering

![Minecraft](https://img.shields.io/badge/Minecraft-1.8.9_*_1.21%2B-62B47A?style=for-the-badge)
![OptiFine](https://img.shields.io/badge/OptiFine-All_Versions-2577D0?style=for-the-badge)
![Iris](https://img.shields.io/badge/Iris-1.2.0%2B-9B59B6?style=for-the-badge)
![License](https://img.shields.io/badge/License-MPL_2.0-E67E22?style=for-the-badge)

## 🖼️ Screenshots

![Dithering3D Preview](https://media.forgecdn.net/attachments/1454/997/2026-01-07_03-01-52-jpg.jpg)

## ✨ A Revolutionary Visual Experience

Transform your Minecraft world with **Surface-Stable Fractal Dithering** — a groundbreaking rendering technique where dither dots **stick to 3D surfaces** instead of the screen, creating a unique manga/comic book aesthetic that feels alive.

> 🎬 *Based on the innovative work by [Rune Skovbo Johansen](https://github.com/runevision/Dither3D)* — **[Watch the explainer video](https://youtu.be/HPqGaIMVuLs)**

## 🖼️ What Makes This Shader Special?

### 📌 **Surface-Stable Dots**
Unlike traditional dithering where patterns “swim” on screen, Dither3D anchors each dot to the actual 3D surface. Walk around blocks, and the dots stay perfectly attached!

### 🔄 **Fractal Scaling Magic**
As you move closer or farther from surfaces, dots dynamically split or merge to maintain **constant screen-space density**. It’s mesmerizing to watch!

### 🎨 **Three Color Modes**

| Mode | Description |
|:—-:|:————|
| **Grayscale** | Classic black & white dithering — clean, minimalist, timeless |
| **RGB** | Each color channel gets its own dot layer — vibrant and unique |
| **CMYK Halftone** | Authentic newspaper/comic print simulation with rotated dot angles |

## ⚡ Features at a Glance

| Feature | Description |
|:——–|:————|
| 🎯 **Precision Dithering** | SVD-based frequency analysis for mathematically perfect dot placement |
| 🌀 **Anti-Stretch Technology** | Anisotropic smoothing keeps dots circular even on oblique surfaces |
| 🎥 **Camera Stable** | Radial compensation prevents dot swimming during camera rotation |
| ⚙️ **Highly Configurable** | 10+ parameters to fine-tune your perfect look |
| 🚀 **Performance Optimized** | Efficient 3D texture sampling for smooth gameplay |
| 📱 **Universal Compatibility** | Works with OptiFine AND Iris on virtually any Minecraft version |

## 🎛️ Customization Options

Fine-tune every aspect of the dithering effect with our intuitive in-game sliders:

### 🔧 Dither Settings
| Parameter | Range | Effect |
|———–|:—–:|——–|
| **Dot Scale** | 2 – 10 | Control overall dot size (exponential) |
| **Size Variability** | 0 – 1 | 0 = Bayer pattern, 1 = Halftone style |
| **Dot Contrast** | 0 – 2 | Sharpen or soften dot edges |
| **Stretch Smooth** | 0 – 2 | Combat stretched dots on angled surfaces |

### 💡 Input Controls
| Parameter | Range | Effect |
|———–|:—–:|——–|
| **Exposure** | 0 – 5 | Brightness multiplier |
| **Offset** | -1 to 1 | Brightness offset adjustment |

### 🎮 Additional Options
– **Inverse Dots** — Flip dot colors for a negative effect
– **Radial Compensation** — Stabilize during camera rotation *(recommended!)*
– **Quantize Layers** — Prevent dot morphing for a more “classic” look
– **Debug Mode** — Visualize fractal layers for development

## 📦 Installation

### For OptiFine Users
1. Download and extract the shader pack
2. Place the `shaders` folder in `.minecraft/shaderpacks/`
3. Launch Minecraft → Options → Video Settings → Shaders
4. Select **Dithering3D** and enjoy!

### For Iris Users (Fabric/Quilt)
1. Install Iris Shaders mod (1.2.0+)
2. Download and extract the shader pack
3. Place the `shaders` folder in `.minecraft/shaderpacks/`
4. Press **O** in-game to open shader menu
5. Select **Dithering3D**

> 💡 **Tip:** Press `F3 + T` to quickly reload shaders after making changes!

## 🎨 Preset Profiles

Choose from pre-configured profiles for instant results:

| Profile | Color Mode | Dot Scale | Best For |
|:——-:|:———-:|:———:|:———|
| 🟢 **LOW** | Grayscale | 4.0 | Performance, retro feel |
| 🟡 **MEDIUM** | Grayscale | 5.0 | Balanced experience |
| 🟠 **HIGH** | RGB | 5.0 | Colorful, artistic |
| 🔴 **ULTRA** | CMYK | 6.0 | Maximum visual impact |

## 🌟 Perfect For

| 📸 Screenshot enthusiasts | Create unique, artistic captures |
|:————————:|:——————————–|
| 🎬 **Content creators** | Stand out with a distinctive visual style |
| 🎮 **Retro lovers** | Relive the charm of 1-bit graphics |
| 🎨 **Artists** | Manga, comic book, and newspaper aesthetics |
| 🧪 **Tech enthusiasts** | Experience cutting-edge rendering techniques |

## ❓ FAQ

**Q: Does this work with other shaders?**
> Dithering3D is a standalone shader pack. Combining with other shaders may cause conflicts.

**Q: Why do some surfaces look different?**
> The sky and some special effects may appear different as surface-stable dithering reveals flat geometry.

**Q: Performance impact?**
> Moderate. The 3D texture sampling is optimized but more demanding than vanilla rendering. Most GPUs handle it smoothly.

**Q: Can I use this in my modpack?**
> Yes! Under MPL-2.0 license. Credit appreciated.

## 🔬 The Science Behind It

Dithering3D uses **Singular Value Decomposition (SVD)** to analyze UV coordinate derivatives in real-time, determining the exact frequency and direction of surface textures. This mathematical approach enables:

“`
✅ Perfectly uniform dot density regardless of distance
✅ Seamless fractal transitions between detail levels
✅ Circular dots even on extremely angled surfaces
✅ Rotation-stable patterns that don’t “swim”
“`

## 📚 Credits & Resources

| Resource | Link |
|:———|:—–|
| 🔗 **Original Algorithm** | [Rune Skovbo Johansen](https://github.com/runevision/Dither3D) |
| 🎥 **Technique Explanation** | [YouTube Video](https://youtu.be/HPqGaIMVuLs) |
| 💬 **Technical Discussion** | [FAQ Thread](https://github.com/runevision/Dither3D/discussions/12) |

## 📄 License

“`
Mozilla Public License 2.0 (MPL-2.0)
“`

🎨 Transform your world. Experience Dithering3D. 🎨

If you enjoy this shader, consider leaving a ⭐ and sharing this shader page !

(Old MC) Coordinates

# (Old MC) Coordinates

This is a jarmod that adds coordinates to Minecraft Alpha and Infdev debug menus.

Works for Minecraft versions ranging from inf-20100227 to a1.2.2 **(see downloads)**.

# Features

**The display is based off of Notch’s original implementation of coordinates in Alpha**, xyz and f on separate lines.

Since Notch didn’t add coordinates until a1.2.3, there are many older versions with infinite world gen where coordinates are a needed addition.

**There are two display options:**

The “revised” display **(left)** and the unmodified “nostalgia” display **(right)**.
This was done in case some are looking for the OG display by Notch before the various improvements were made in later versions.

These can be toggled using the N key with the debug screen on. By default, the revised display is shown.

**The revised display simply improves the original format:**

– rounds 15 leading decimals to 3
– brightens text color
– adds cardinal directions in words
– floors the y-axis to feet level (64.000 and not 65.620 when standing on a full block at y-64).

# Compatibility

Overwrites **GuiIngame.java**, the obfuscated **(GuiIngame).class** names vary with versions.

In other words, the mod will likely be compatibile with mods that don’t change the debug menu.

# Downloads

Due to various unforseen circumstances in older versions, I haven’t modded every version (yet) from inf-20100227 to a1.2.2. I managed to mod 39 versions in this range, addressing for the more notable releases. Hopefully you can find the version you’re looking for.

**The downloads are named “Coordinates_v1.0_” followed by “(version name)” ensure that you are downloading the correct version.**

**Note: ONLY read my zip file names for versions.** To upload mods, Modrinth requires default MC launcher versions and mod loader fields to be filled out. *(ex: inf-630 is shown to support inf-618 and risugami’s modloader, which is false)*

# How to install

Install [Java 8](https://www.oracle.com/java/technologies/javase/javase8-archive-downloads.html), most mods for older versions use Java 8. So it’s always a good idea to have it.

This is a jarmod so I recommend using **MultiMC, PrismLauncher, or Betacraft v2.0**. These launchers allow for jarmods to be easily setup older versions. They all have similar ways of adding jarmods… Edit your instance in said launcher, locate the add to Minecraft.jar button, and open the downloaded coords.zip.

For **Betacraft v1.0**, it’s more complex as you will need to jarmod the version yourself. You will also need a zip explorer (I like [WinRAR](https://www.win-rar.com/download.html?&L=0) for Windows)

– after downloading coords.zip for prefered version, search and open your hidden %appdata% folder
– open the .betacraft folder
– open the versions folder
– highlight and right click on the version.jar you are using (ex: a1.1.2_01.jar)
– after right click, you can choose Open with WinRAR
– with the jar open, also open the downloaded coords.zip
– move the single .class file from coords.zip to the opened version.jar.
– Press OK , done! You successfully replaced a game file with my modded game file!
– Relaunch Betacraft v1.0 and play.

# Extras

Any issues can be addressed on [Github](https://github.com/Skellz64/Old-MC-Coordinates)

You can also join the [Modification Station](https://discord.gg/8Qky5XY) discord server, a community dedicated to modding old minecraft!

Once you join the server, you can find my mod post by clicking on the mods tab and searching coordinates. This is where you can contact me directly with questions *(i.e. doesn’t warrant a ticket on Github)*

**Thanks for downloading my mod!**