1- # Bits
1+ <img width =" 4320 " height =" 1080 " alt =" bits_logo " src =" https://github.com/user-attachments/assets/fb7e3cc4-1533-40a9-b240-d2be153ea551 " />
2+ <p align =" center " ><b > 💾 A Utility library for Minecraft development.</b ></p >
23
3- 💾 A Utility library for Minecraft development.
44
55[ ![ License] ( https://img.shields.io/github/license/Orbitary/Bits )] ( LICENSE )
6+ [ ![ Java CI] ( https://github.com/Orbitary/Bits/actions/workflows/publish.yml/badge.svg )] ( https://github.com/Orbitary/Bits/actions/workflows/publish.yml )
7+ [ ![ Modrinth Downloads] ( https://img.shields.io/badge/dynamic/json?color=1bd96a&label=Modrinth&query=downloads&suffix=%20downloads&url=https%3A%2F%2Fapi.modrinth.com%2Fv2%2Fproject%2F8ZZ61TMj )] ( https://modrinth.com/mod/orbits )
8+
69
710## About
811
@@ -11,7 +14,8 @@ Bits is a multi-platform Minecraft utility library designed to streamline plugin
1114### Features:
1215
1316- Multi-platform support
14- - Annotation-based [ Brigadier] ( https://github.com/Mojang/brigadier ) Command API (Paper, Velocity, +)
17+ - Annotation-based [ Brigadier] ( https://github.com/Mojang/brigadier ) Command API
18+ - Sendable lifecycle builders (Actionbars, Sidebars, Waypoints, +)
1519- Automatic Text formatting
1620- Common Plugin utilities (Color, Sound, Location, Item, Math, Permission APIs)
1721
@@ -24,23 +28,22 @@ Bits is a multi-platform Minecraft utility library designed to streamline plugin
2428
2529``` kotlin
2630repositories {
27- mavenCentral()
2831 maven { url = uri(" https://repo.bitsquidd.xyz/repository/bit/" ) }
2932}
3033
3134dependencies {
3235 // Core API
33- implementation(" xyz.bitsquidd.bits:api:0.0.13 " )
36+ implementation(" xyz.bitsquidd.bits:api:0.0.14 " )
3437
3538 // Platform implementation
36- implementation(" xyz.bitsquidd.bits.paper:paper:0.0.13 " )
37- implementation(" xyz.bitsquidd.bits.velocity:velocity:0.0.13 " )
38- implementation(" xyz.bitsquidd.bits.fabric:fabric:0.0.13 " )
39+ implementation(" xyz.bitsquidd.bits.paper:paper:0.0.14 " )
40+ implementation(" xyz.bitsquidd.bits.velocity:velocity:0.0.14 " )
41+ implementation(" xyz.bitsquidd.bits.fabric:fabric:0.0.14 " )
3942
4043 // Optional: Platform-specific modules
41- implementation(" xyz.bitsquidd.bits.paper:sendable:0.0.13 " )
42- implementation(" xyz.bitsquidd.bits.paper:command:0.0.13 " )
43- implementation(" xyz.bitsquidd.bits.velocity:command:0.0.13 " )
44+ implementation(" xyz.bitsquidd.bits.paper:sendable:0.0.14 " )
45+ implementation(" xyz.bitsquidd.bits.paper:command:0.0.14 " )
46+ implementation(" xyz.bitsquidd.bits.velocity:command:0.0.14 " )
4447}
4548```
4649
@@ -60,24 +63,24 @@ dependencies {
6063<dependency >
6164 <groupId >xyz.bitsquidd.bits</groupId >
6265 <artifactId >api</artifactId >
63- <version >0.0.13 </version >
66+ <version >0.0.14 </version >
6467</dependency >
6568
6669<!-- Platform implementation (optional) -->
6770<dependency >
6871 <groupId >xyz.bitsquidd.bits.paper</groupId >
6972 <artifactId >paper</artifactId >
70- <version >0.0.13 </version >
73+ <version >0.0.14 </version >
7174</dependency >
7275<dependency >
7376 <groupId >xyz.bitsquidd.bits.velocity</groupId >
7477 <artifactId >velocity</artifactId >
75- <version >0.0.13 </version >
78+ <version >0.0.14 </version >
7679</dependency >
7780<dependency >
7881 <groupId >xyz.bitsquidd.bits.fabric</groupId >
7982 <artifactId >fabric</artifactId >
80- <version >0.0.13 </version >
83+ <version >0.0.14 </version >
8184</dependency >
8285</dependencies >
8386```
0 commit comments