Назад в магазин
Minecraft SQLite JDBC
Modrinth Plugin

Minecraft SQLite JDBC

Up-to-date SQLite JDBC driver wrapped as a universal Forge/Fabric/Bukkit library for plugins like Dynmap and Grim.

Информация о Minecraft-продукте

Важное о товаре

Совместимость, версии Minecraft, загрузчики и данные внешнего источника.

Тип

Plugin

Доступ

Бесплатно

Последняя версия

3.53.2.0+2026-06-06

Загрузки

21 818

Загрузчики / Платформы

bukkit fabric folia forge neoforge paper purpur quilt spigot

Minecraft версии

1.12.2 – 1.21.11 26.1 26.1.1 26.1.2

Категории

library optimization utility

Описание

Подробная информация

# SQLite JDBC for Minecraft A maintained fork of the dormant SQLite JDBC for Minecraft mod, now tracking the **latest [Xerial sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) release** with auto-bumps whenever upstream cuts a new version. The mod does nothing on its own — it ships the SQLite JDBC driver onto the server's classpath so other plugins/mods that want to read or write `.db`/`.sqlite` files via JDBC don't each have to bundle their own copy. Typical consumers: [Dynmap](https://www.curseforge.com/minecraft/mc-mods/dynmap), [Plan](https://github.com/plan-player-analytics/Plan), [LuckPerms](https://luckperms.net/), [Grim Anti-Cheat](https://github.com/GrimAnticheat/Grim), and any plugin that wants embedded SQLite without redistributing 10MB of native binaries themselves. ## What's in the jar `org.xerial:sqlite-jdbc:3.53.0.0` plus minimal loader stubs for Spigot, Forge 1.12, Forge 1.13–1.16, Forge 1.17–1.20, NeoForge 1.21+, and Fabric. The driver classes stay at their canonical `org.sqlite.*` paths — no relocation — so consumers find them with plain `Class.forName("org.sqlite.JDBC")`. `META-INF/services/java.sql.Driver` is preserved so the driver auto-registers with `DriverManager`. The xerial driver bundles native SQLite binaries for every common platform/architecture (linux x64/aarch64, macos x64/arm64, windows x64). They get extracted to the JVM's tempdir on first use. ## Compatibility | Loader | MC versions | Notes | |---|---|---| | Bukkit / Spigot / Paper / Folia / Purpur | 1.8 → current | drop into `plugins/` | | Fabric | 1.16.1 → current | needs Fabric Loader 0.14+ | | Forge | 1.12 → 1.20 | universal jar, no Mixins | | NeoForge | 1.21 → current | drop into `mods/` | Java 8+ required. Plain BukkitAPI servers without Java 8 (anything older than ~1.8.8) won't be able to load any modern xerial release; that's an upstream constraint, not this mod. ### When you actually need this mod CraftBukkit/Spigot/Paper have shipped `sqlite-jdbc` on the server's parent classloader since the 1.4-era ebeans commit. Plugin classloaders delegate parent-first, so for the **default JDBC path** (`Class.forName("org.sqlite.JDBC")` / `DriverManager.getConnection`) the bundled driver always wins, regardless of what's in `plugins/`. Tested empirically on Paper 1.12.2 and 1.21.11. You need this mod when: - You're on **Fabric** or **NeoForge** — vanilla Minecraft ships no JDBC drivers at all - You're on a **Bukkit fork that's stripped the bundled driver** (rare, but happens on minified server builds) - You want a **newer SQLite engine version than your server bundles** — for `RETURNING`, `STRICT` tables, modern UPSERT on a 1.8–1.12 server, or just to track the latest Xerial release. See [Using a newer engine via the public API](#using-a-newer-engine-via-the-public-api) below. ### Using a newer engine via the public API The default path uses the bundled driver. To use *this* mod's driver instead, your plugin softdepends on this holder and calls `MinecraftSqliteJdbc.connect(url)` directly: ```java // in your plugin.yml softdepend: [sqlite-jdbc] ``` ```java // in your plugin code Connection c; try { c = MinecraftSqliteJdbc.connect("jdbc:sqlite:foo.db"); } catch (NoClassDefFoundError | ClassNotFoundException notInstalled) { // holder isn't installed — fall back to the bundled driver c = DriverManager.getConnection("jdbc:sqlite:foo.db"); } ``` `MinecraftSqliteJdbc` wraps a child-first `URLClassLoader` pointing at this jar's URL, parented to the platform classloader so `org.sqlite.*` must come from this jar (not the bundled chain). The returned `Connection` is a standard `java.sql.Connection` — keep your casts to `java.sql.*` interfaces; the impl class `org.sqlite.SQLiteConnection` lives in the child-first classloader and won't down-cast across the boundary. Verified on Paper 1.12.2 (bundled engine 3.21.0) — same JVM, same boot: ``` baseline DriverManager.getConnection → engine 3.21.0 MinecraftSqliteJdbc.connect() → engine 3.53.0 ``` API surface (all static): | Method | Returns | |---|---| | `connect(String url)` | open `Connection` through this driver | | `connect(String url, Properties props)` | as above with props | | `driver()` | the `java.sql.Driver` instance | | `engineVersion()` | SQLite engine version (e.g. `"3.53.0"`) | | `driverVersion()` | driver version string (e.g. `"3.53.0.0"`) | | `eagerInit()` | warm the classloader at plugin enable | | `shutdown()` | release file handles + JNI on plugin disable | Grim Anti-Cheat's SQLite backend uses this API automatically when this holder is installed and ships a newer engine than the bundled one — see Grim's [Database wiki page](https://github.com/GrimAnticheat/Grim/wiki/Database#using-a-newer-sqlite-engine-on-a-bukkit-family-server). ### Bundled SQLite engine versions on common Bukkit lines For reference if you're wondering what engine version your server actually ships: | CraftBukkit / Paper line | Bundled SQLite engine | |---|---| | 1.8 – 1.10 | 3.7.2 | | 1.11 | 3.16.1 | | 1.12 | 3.21.0.1 | | 1.13 | 3.25.2 | | 1.14 | 3.28.0 | | 1.15 | 3.30.1 | | 1.16 – 1.17 | 3.34.0 | | 1.20.6 | 3.45.3.0 | | Paper 1.21.4 | 3.47.0.0 | | Paper 1.21.5 – 1.21.11 | 3.49.1.0 | | master / 26.x | 3.51.3.0 | This mod ships engine 3.53.0.0 (or whatever the latest xerial release is), but **none of that matters on Bukkit-family servers** — the bundled engine is what actually runs your queries. If you need a newer engine for features like `RETURNING` (3.35+) or `STRICT` tables (3.37+), upgrade to a Paper version that bundles a recent enough driver, or move that workload to Fabric/NeoForge where you can control the driver. ## Using it from a plugin or mod Declare sqlite-jdbc as `compileOnly`: ```kotlin compileOnly("org.xerial:sqlite-jdbc:3.53.0.0") ``` Probe at startup: ```java try { Class.forName("org.sqlite.JDBC"); } catch (ClassNotFoundException e) { getLogger().warning("SQLite backend disabled — install minecraft-sqlite-jdbc"); return; } try (Connection c = DriverManager.getConnection("jdbc:sqlite:" + dataDir.resolve("data.db"))) { // ... } ``` On Paper 1.17+ each plugin's classloader is isolated. Add this mod to your `plugin.yml` `softdepend` so the driver classes are visible to your plugin: ```yaml softdepend: [minecraft-sqlite-jdbc] ``` Fabric and NeoForge unify all mods on one classloader, so no equivalent declaration is needed there. ## Versioning The jar version tracks Xerial's `sqlite-jdbc` release one-to-one. `3.53.0.0+2026-04-14` ships engine 3.53.0.0; the suffix is the build date. A scheduled GitHub Action checks Maven Central daily — when xerial cuts a new release, an auto-merge PR opens here and the Modrinth release goes out automatically. ## License Apache 2.0 (Xerial / Taro L. Saito). The repackage adds no functional changes and inherits that license. Full text in [`LICENSE`](https://github.com/Axionize/minecraft-sqlite-jdbc/blob/main/LICENSE). --- Issues, source: [GitHub](https://github.com/Axionize/minecraft-sqlite-jdbc).

Разработчик

Axionize

Профиль и данные получены с Modrinth

Открыть на Modrinth

Галерея продукта

Изображения проекта

Скриншоты и изображения из оригинальной страницы Modrinth.

Список изменений

Версии проекта

Опубликованные версии и оригинальные файлы Modrinth.

3.53.2.0+2026-06-06 Актуальная Release 06.06.2026

3.53.2.0+2026-06-06

Поддерживаемые версии Minecraft
1.12.2 1.13 1.13.1 1.13.2 1.14 1.14.1 1.14.2 1.14.3 1.14.4 1.15 1.15.1 1.15.2 1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11 26.1 26.1.1 26.1.2
Загрузчики / Платформы
bukkit fabric folia forge neoforge paper purpur quilt spigot
Показать изменения
ci: fix unterminated quote in version echo
Войти

11.44 MB

3.53.2.0+2026-06-06 Release 06.06.2026

3.53.2.0+2026-06-06

Поддерживаемые версии Minecraft
1.12.2 1.13 1.13.1 1.13.2 1.14 1.14.1 1.14.2 1.14.3 1.14.4 1.15 1.15.1 1.15.2 1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11 26.1 26.1.1 26.1.2
Загрузчики / Платформы
bukkit fabric folia forge neoforge paper purpur quilt spigot
Показать изменения
Automated bump to version **3.53.2.0**.
Войти

11.44 MB

3.53.1.0+2026-05-07 Release 07.05.2026

3.53.1.0+2026-05-07

Поддерживаемые версии Minecraft
1.12.2 1.13 1.13.1 1.13.2 1.14 1.14.1 1.14.2 1.14.3 1.14.4 1.15 1.15.1 1.15.2 1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11 26.1 26.1.1 26.1.2
Загрузчики / Платформы
bukkit fabric folia forge neoforge paper purpur quilt spigot
Показать изменения
Automated bump to version **3.53.1.0**.
Войти

11.43 MB

3.53.0.0+2026-04-14 Release 26.04.2026

3.53.0.0+2026-04-14

Поддерживаемые версии Minecraft
1.12.2 1.13 1.13.1 1.13.2 1.14 1.14.1 1.14.2 1.14.3 1.14.4 1.15 1.15.1 1.15.2 1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11 26.1 26.1.1 26.1.2
Загрузчики / Платформы
bukkit fabric folia forge neoforge paper purpur quilt spigot
Показать изменения
modrinth body: document the public API + holder-driven engine upgrade Recasts the 'this mod is inert on Bukkit' framing into the two-path distinction: - Default path (DriverManager.getConnection): bundled driver wins, this mod is no-op. - Workaround path (MinecraftSqliteJdbc.connect / MinecraftMysqlJdbc.connect): child-first classloader gives consumers explicit access to this mod's driver, useful for newer engine features the server's bundled driver doesn't have. Adds API table + softdepend + code snippet so consumer plugin authors can wire it up. Cross-references Grim's wiki for the auto-detection integration.
Войти

11.42 MB

3.53.0.0+2026-04-14 Release 26.04.2026

3.53.0.0+2026-04-14

Поддерживаемые версии Minecraft
1.12.2 1.13 1.13.1 1.13.2 1.14 1.14.1 1.14.2 1.14.3 1.14.4 1.15 1.15.1 1.15.2 1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11 26.1 26.1.1 26.1.2
Загрузчики / Платформы
bukkit fabric folia forge neoforge paper purpur quilt spigot
Показать изменения
api: child-first classloader workaround in MinecraftSqliteJdbc Bukkit/Spigot/Paper bundle sqlite-jdbc on the server's parent classloader. Plugin classloaders delegate parent-first, so any consumer plugin that does Class.forName("org.sqlite.JDBC") or DriverManager.getConnection always resolves to the bundled driver — installing this holder mod has no effect under default semantics, regardless of what's in plugins/. Verified empirically across paper-1.12.2 (engine 3.21.0 bundled) and paper-1.21.11 (engine 3.49.1.0 in libraries/) — the holder loads as a plugin but its driver class is never consulted, DriverManager registers only the bundled driver, sqlite_version() returns the bundled engine. This commit adds a public API class that gives consumers an explicit escape hatch: a child-first URLClassLoader pointing at this holder's own jar, parented to the platform classloader so org.sqlite.* must come from the holder jar (the parent chain has no org.sqlite). The Driver loaded from this classloader has a distinct class identity from the bundled copy, so DriverManager.getConnection still hits bundled but MinecraftSqliteJdbc.connect() returns a connection through the holder's engine. Verified on paper-1.12.2 in the same JVM: baseline DriverManager → engine 3.21.0 child-first holder API → engine 3.53.0 API surface: Connection connect(String url) Connection connect(String url, Properties properties) Driver driver() String engineVersion() String driverVersion() void eagerInit() void shutdown() Caveats are documented in the class javadoc — chiefly: stick to java.sql.* interfaces (the impl class org.sqlite.SQLiteConnection lives in the child-first classloader and won't down-cast across boundaries), DriverManager.getConnection won't pick this driver up (use connect() directly), and the native SQLite library is extracted twice when both bundled and holder are in use (one extraction per classloader). DEFAULT PATH IS UNCHANGED Consumer plugins that don't need a newer engine continue to use DriverManager.getConnection like always — they pick up the bundled driver and don't need to softdepend on this holder. Install this holder only on Fabric/NeoForge (no bundled driver) or when you specifically want a newer SQLite engine than what your server bundles. INTEGRATION Grim's SqliteBackend wires this in: probes for MinecraftSqliteJdbc at init, compares engineVersion() to the bundled, routes through the holder when it's strictly newer. Lets a Paper 1.8-1.12 server use modern UPSERT writers (which need engine 3.24+) by installing this mod. Implementation moved to a separate :api Gradle subproject with Java 8 toolchain so the API class compiles to bytecode runnable on every supported MC server. Root project keeps default toolchain to coexist with the neoforge-1.21 subproject's Java 21 requirement.
Войти

11.42 MB

3.53.0.0+2026-04-14 Release 26.04.2026

3.53.0.0+2026-04-14

Поддерживаемые версии Minecraft
1.12.2 1.13 1.13.1 1.13.2 1.14 1.14.1 1.14.2 1.14.3 1.14.4 1.15 1.15.1 1.15.2 1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11 26.1 26.1.1 26.1.2
Загрузчики / Платформы
bukkit fabric folia forge neoforge paper purpur quilt spigot
Показать изменения
modrinth body: holder is functionally inert when bundled driver exists Tested empirically (paper-1.12.2 with engine 3.21.0 bundled, paper-1.21.11 with engine 3.49.1.0 in libraries/) — the bundled driver wins driver-class resolution every time, regardless of whether the holder is installed. Plugin classloaders delegate to the server parent classloader first; parent already holds org.sqlite.JDBC / com.mysql.cj.jdbc.Driver; holder's PluginClassLoader is never consulted; DriverManager only ever has the bundled driver registered. Body now states this directly so operators don't install the mod expecting it to upgrade their bundled driver. Holder remains useful on Fabric/NeoForge (no bundled) and Bukkit forks that strip the driver.
Войти

11.42 MB

3.53.0.0+2026-04-14 Release 25.04.2026

3.53.0.0+2026-04-14

Поддерживаемые версии Minecraft
1.12.2 1.13 1.13.1 1.13.2 1.14 1.14.1 1.14.2 1.14.3 1.14.4 1.15 1.15.1 1.15.2 1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11 26.1 26.1.1 26.1.2
Загрузчики / Платформы
bukkit fabric folia forge neoforge paper purpur quilt spigot
Показать изменения
modrinth: managed body.md + auto-sync workflow Adds .modrinth/body.md as the source-of-truth for the Modrinth project body, and a separate workflow that PATCHes the project on every push that touches body.md. Description fixes don't have to wait for a version bump. Aligns with the body-sync pattern used in the four sibling holder repos (minecraft-{postgresql-jdbc,mysql-jdbc,mongodb-driver,jedis}).
Войти

11.42 MB

3.53.0.0+2026-04-14 Release 14.04.2026

3.53.0.0+2026-04-14

Поддерживаемые версии Minecraft
1.12.2 1.13 1.13.1 1.13.2 1.14 1.14.1 1.14.2 1.14.3 1.14.4 1.15 1.15.1 1.15.2 1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11 26.1 26.1.1 26.1.2
Загрузчики / Платформы
bukkit fabric folia forge neoforge paper purpur quilt spigot
Показать изменения
Automated bump to version **3.53.0.0**.
Войти

11.42 MB

3.51.3.0+2026-03-17 Release 17.03.2026

3.51.3.0+2026-03-17

Поддерживаемые версии Minecraft
1.12.2 1.13 1.13.1 1.13.2 1.14 1.14.1 1.14.2 1.14.3 1.14.4 1.15 1.15.1 1.15.2 1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11
Загрузчики / Платформы
bukkit fabric folia forge neoforge paper purpur quilt spigot
Показать изменения
Automated bump to version **3.51.3.0**.
Войти

13.77 MB

3.51.2.0+2026-02-10 Release 10.02.2026

3.51.2.0+2026-02-10

Поддерживаемые версии Minecraft
1.12.2 1.13 1.13.1 1.13.2 1.14 1.14.1 1.14.2 1.14.3 1.14.4 1.15 1.15.1 1.15.2 1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11
Загрузчики / Платформы
bukkit fabric folia forge neoforge paper purpur quilt spigot
Показать изменения
Automated bump to version **3.51.2.0**.
Войти

13.77 MB

3.51.1.0+2025-12-01 Release 02.01.2026

3.51.1.0+2025-12-01

Поддерживаемые версии Minecraft
1.12.2 1.13 1.13.1 1.13.2 1.14 1.14.1 1.14.2 1.14.3 1.14.4 1.15 1.15.1 1.15.2 1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11
Загрузчики / Платформы
bukkit fabric folia forge neoforge paper purpur quilt spigot
Показать изменения
Bump dependencies
Войти

13.74 MB

3.51.0.0+2025-11-13 Release 13.11.2025

3.51.0.0+2025-11-13

Поддерживаемые версии Minecraft
1.12.2 1.13 1.13.1 1.13.2 1.14 1.14.1 1.14.2 1.14.3 1.14.4 1.15 1.15.1 1.15.2 1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10
Загрузчики / Платформы
bukkit fabric folia forge neoforge paper purpur quilt spigot
Показать изменения
Automated bump to version **3.51.0.0**.
Войти

13.73 MB

3.50.3.0+2025-11-13 Release 13.11.2025

3.50.3.0+2025-11-13

Поддерживаемые версии Minecraft
1.12.2 1.13 1.13.1 1.13.2 1.14 1.14.1 1.14.2 1.14.3 1.14.4 1.15 1.15.1 1.15.2 1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10
Загрузчики / Платформы
bukkit fabric folia forge neoforge paper purpur quilt spigot
Показать изменения
Automated bump to version **3.50.3.0**.
Войти

13.69 MB

3.50.2.0+2025-11-13 Release 13.11.2025

3.50.2.0+2025-11-13

Поддерживаемые версии Minecraft
1.12.2 1.13 1.13.1 1.13.2 1.14 1.14.1 1.14.2 1.14.3 1.14.4 1.15 1.15.1 1.15.2 1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10
Загрузчики / Платформы
bukkit fabric folia forge neoforge paper purpur quilt spigot
Показать изменения
Automated bump to version **3.50.2.0**.
Войти

13.69 MB

3.50.1.0+2025-11-13 Release 13.11.2025

3.50.1.0+2025-11-13

Поддерживаемые версии Minecraft
1.12.2 1.13 1.13.1 1.13.2 1.14 1.14.1 1.14.2 1.14.3 1.14.4 1.15 1.15.1 1.15.2 1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10
Загрузчики / Платформы
bukkit fabric folia forge neoforge paper purpur quilt spigot
Показать изменения
Automated bump to version **3.50.1.0**.
Войти

13.68 MB

3.49.1.0+2025-07-12 Release 12.07.2025

3.49.1.0+2025-07-12

Поддерживаемые версии Minecraft
1.12.2 1.13 1.13.1 1.13.2 1.14 1.14.1 1.14.2 1.14.3 1.14.4 1.15 1.15.1 1.15.2 1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7
Загрузчики / Платформы
bukkit fabric folia forge neoforge paper purpur quilt spigot
Показать изменения
Fix Neoforge 1.21+ support
Войти

13.66 MB

3.49.1.0+2025-04-20 Release 20.04.2025

3.49.1.0+2025-04-20

Поддерживаемые версии Minecraft
1.12.2 1.13 1.13.1 1.13.2 1.14 1.14.1 1.14.2 1.14.3 1.14.4 1.15 1.15.1 1.15.2 1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7
Загрузчики / Платформы
bukkit fabric folia forge neoforge paper purpur quilt spigot
Войти

13.66 MB