Назад до магазину
Mod Menu
Modrinth Mod

Mod Menu

Adds a mod menu to view the list of mods you have installed.

Інформація про Minecraft-продукт

Важливе про товар

Сумісність, версії Minecraft, завантажувачі та дані зовнішнього джерела.

Тип

Mod

Доступ

Безкоштовно

Остання версія

21.0.0-alpha.1

Завантаження

123 977 506

Завантажувачі / Платформи

fabric quilt

Minecraft версії

1.14.4 1.15.2 1.16.1 1.16.4 – 1.21.11 26.1 26.1.1 26.1.2 26.2

Категорії

utility

Опис

Докладна інформація

# Mod Menu ![Screenshot of the Mods screen, showing a list of a few mods on the left side below a search bar and filters button, where Mod Menu is selected. On the right side of the screen, it shows more details about the mod, such as authors, a description, links, credits, and a button to configure the mod.](https://cdn.modrinth.com/data/mOgUt4GM/images/155dd2b006883b168b1279ec0ff21e753946518b.png) Mod Menu lets you view the mods you have installed and, if supported by the mod, enables quick and easy access to the mod's config screens. Mod Menu also supports some more advanced features, such as translatable mod names and descriptions, support for [QuickText formatting](https://placeholders.pb4.eu/user/quicktext/) in mod descriptions thanks to [Patbox](https://ko-fi.com/patbox)'s [Text Placeholder API](https://modrinth.com/mod/placeholder-api), filters library mods out from regular mods, a mod update checker for mods hosted on Modrinth or that provide their own update sources, and deep configuration for all the features we provide. ### Supported Platforms Mod Menu is currently available for Fabric or Quilt on Minecraft: Java Edition 1.14 or newer. ## Developers Mod Menu includes a number of APIs for developers to improve how their mod appears in Mod Menu. These come in the form of language keys, JSON metadata, and even a Java API. ### Translation API You can translate your mod's name, summary, and description all without touching any Java code. Simply add translation keys in the supported format to any language you'd like. <details> <summary>Translation API Documentation</summary> Here's an example of Mod Menu's translations into Pirate Speak. To create your own, simply replace `modmenu` at the end (***NOT*** the one in the beginning) of the translation key with your own mod ID, for example `modmenu.descriptionTranslation.traverse`. `en_pt.json` ```json "modmenu.nameTranslation.modmenu": "Menu o' mods!", "modmenu.descriptionTranslation.modmenu": "Menu o' mods ye installed matey!", "modmenu.summaryTranslation.modmenu": "Menu o' mods ye installed matey!" ``` > The summary translation is redundant here and does not need to be included because it's the same as the description, but it was included to show that you may translate the summary (a short, one-sentence description of the mod) separately from the description, even in English! </details> ### Fabric Metadata API There's a number of things you can add just with metadata in your `fabric.mod.json`. All of these are added to a custom block in your `fabric.mod.json` for Mod Menu's metadata. Here's an example usage of many of the features this API provides: `fabric.mod.json` ```json5 { ... "custom": { "modmenu": { "links": { "modmenu.discord": "https://discord.gg/jEGF5fb" }, "badges": [ "library", "deprecated" ], "parent": { "id": "example-api", "name": "Example API", "description": "Modular example library", "icon": "assets/example-api-module-v1/parent_icon.png", "badges": [ "library" ] }, "update_checker": true } } } ``` <details> <summary>Fabric Metadata API Documentation</summary> #### Badges (`"badges": [ ]`) While the `Client` badge is added automatically to mods set as client-side only (set `"environment": "client"` in `fabric.mod.json` to do this.), other badges such as the `Library` and `Deprecated` badges require definition here. Supported values: - `library` - should be assigned to mods that are purely dependencies for other mods that should not be shown to the user by default unless they toggle them on. - `deprecated` - should be assigned to mods that exist purely for legacy reasons, such as an old API module or such. Any others will be ignored, and Mod Menu does not support adding your own badges. You may open an issue [here](https://github.com/TerraformersMC/ModMenu/issues) if you have a compelling use case for a new badge. #### Links (`"links": { }`) The `links` object allows mod authors to add custom hyperlinks to the end of their description. If you specify a `sources` contact in the official `fabric.mod.json` metadata, it will also be included in the links section. Any key in the `links` object will be included in the links section, with the key being used as a translation key. For example, this: `fabric.mod.json` ```json "custom": { "modmenu": { "links": { "modmenu.discord": "https://discord.gg/jEGF5fb" } } } ``` will show as a link with the text "Discord", since "Discord" is the English translation of "modmenu.discord" provided by Mod Menu. Mod Menu provides several default translations that can be used for links. A full list can be seen in Mod Menu's language file [here](https://github.com/TerraformersMC/ModMenu/blob/-/src/main/resources/assets/modmenu/lang/en_us.json). All default link translation keys take the form `modmenu.<type>`. You can also provide your own translations if you would like to add custom links. Make sure to use ***your own namespace*** (as opposed to `modmenu`) for any custom keys. #### Parents (`"parent": "mod_id" or { }`) <img align="right" width="400" src="https://i.imgur.com/ZutCprf.png" alt="Image showing the Fabric API parent mod and some Fabric API child mods displayed hierarchically in ModMenu"> Parents are used to display a mod as a child of another one. This is meant to be used for mods divided into different modules. The following element in a `fabric.mod.json` will define the mod as a child of the mod 'flamingo': `fabric.mod.json` ```json "custom": { "modmenu": { "parent": "flamingo" } } ``` However, if you want to group mods under a parent, but the parent isn't an actual mod, you can do that too. In the example below, a mod is defining metadata for a parent. Make sure that this metadata is included in all of the children that use the fake/dummy parent. This can also be used as a fallback for an optional parent, it will be replace by the mod's real metadata if present. `fabric.mod.json` ```json "custom": { "modmenu": { "parent": { "id": "this-mod-isnt-real", "name": "Fake Mod", "description": "Do cool stuff with this fake mod", "icon": "assets/real-mod/fake-mod-icon.png", "badges": [ "library" ] } } } ``` Dummy parent mods only support the following metadata: - `id` (String) - `name` (String) - `description` (String) - `icon` (String) - `badges` (Array of Strings) #### Disable update checker (`"update_checker": false`) By default, Mod Menu's update checker will use the hash of your mod's jar to lookup the latest version on Modrinth. If it finds a matching project, it will check for the latest version that supports your mod loader and Minecraft version, and if it has a different hash from your existing file, it will prompt the user that there is an update available. You can disable the update checker by setting `update_checker` to false in your Mod Menu metadata like so: `fabric.mod.json` ```json "custom": { "modmenu": { "update_checker": false } } ``` </details> ### Quilt Metadata API Since Mod Menu supports Quilt as well, the same APIs in the Fabric Metadata API section are also available for Quilt mods, but the format for custom metadata is slightly different. Instead of a `"modmenu"` block inside of a `"custom"` block, you put the `"modmenu"` block as an element in the root object. So it should look like: `quilt.mod.json` ```json5 { ... "modmenu": { // Here's where your links, badges, etc. stuff goes } } ``` ### Java API To use the Java API, you'll need to add Mod Menu as a compile-time dependency in your gradle project. This won't make your mod require Mod Menu, but it'll be present in your environment for you to test with. `build.gradle` ```gradle // Add the Terraformers maven repo to your repositories block repositories { maven { name = "Terraformers" url = "https://maven.terraformersmc.com/" } } // Add Mod Menu as a dependency in your environment dependencies { // Prior to Minecraft 26.x, use "modImplementation" instead implementation("com.terraformersmc:modmenu:${project.modmenu_version}") } ``` Then, define the version of Mod Menu you're using in your `gradle.properties`. You can get the latest version number [here](https://modrinth.com/mod/modmenu/version/latest), but you may need a different version if you're not using the latest Minecraft version. See the [versions page](https://modrinth.com/mod/modmenu/versions) for a full list of versions. `gradle.properties` ```properties modmenu_version=VERSION_NUMBER_HERE ``` > If you don't want it in your environment for testing but still want to compile against Mod Menu for using the Java API, you can use `modCompileOnly` instead of `modImplementation` (this will work even if Mod Menu is not updated to the version of Minecraft you're running). <details> <summary>Java API Documentation</summary> ### Getting Started To use the API, implement the ModMenuApi interface on a class and add that as an entry point of type "modmenu" in your `fabric.mod.json` like this: `fabric.mod.json` ```json "entrypoints": { "modmenu": [ "com.example.mod.ExampleModMenuApiImpl" ] } ``` ### Mod Config Screens Mods can provide a Screen factory to provide a custom config screen to open with the config button. Implement the `getModConfigScreenFactory` method in your API implementation to do this. The intended use case for this is for mods to provide their own config screens. The mod id of the config screen is automagically determined by the source mod container that the entrypoint originated from. ### Provided Config Screens Mods can provide Screen factories to provide a custom config screens to open with the config buttons for other mods as well. Implement the `getProvidedConfigScreenFactories` method in your API implementation for this. The intended use case for this is for a mod like Cloth Config to provide config screens for mods that use its API. ### Modpack Badges Mods can give other mods the `Modpack` badge by implementing the `attachModpackBadges` method, such as through the following: ```java @Override public void attachModpackBadges(Consumer<String> consumer) { consumer.accept("modmenu"); // Indicates that 'modmenu' is part of the modpack } ``` Note that 'internal' mods such as Minecraft itself and the mod loader cannot be given the modpack badge, as they are not distributed within a typical modpack. ### Static Helper Methods `ModMenuApi` also offers a few helper methods for mods that want to work with Mod Menu better, like making their own Mods buttons. #### Creating a Mods screen instance You can call this method to get an instance of the Mods screen: ```java Screen createModsScreen(Screen previous) ``` #### Creating a Mods button `Text` You can call this method to get the Text that would be displayed on a Mod Menu Mods button: ```java Text createModsButtonText() ``` </details>

Розробник

gniftygnome

Профіль і дані отримано з Modrinth

Відкрити на Modrinth

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

Зображення проєкту

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

Mod Menu Banner

Fancy ModMenu banner

Mod Menu v11 Screenshot

Modern ModMenu screenshot from 2024

Mod Menu

ModMenu screenshot from 2022, showing classic Minecraft dirt background

modmen ubanner

Alternative ModMenu banner

Список змін

Версії проєкту

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

21.0.0-alpha.1 Актуальна Alpha 23.07.2026

v21.0.0-alpha.1 for 26.3-snapshot-5

Підтримувані версії Minecraft
26.3-snapshot-5
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Update to 26.3-snapshot-5 - Publish to gnomecraft maven - Update to 26.3-snapshot; thanks Jab125 and EnderPhantomWing
20.0.1 Release 09.07.2026

v20.0.1 for 26.2

Підтримувані версії Minecraft
26.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fix allowing 26.3-snapshot-1 and -2
17.0.1-beta.1 Beta 09.07.2026

v17.0.1-beta.1 for 1.21.11

Підтримувані версії Minecraft
1.21.11
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Again fix selection and scroll amount not restoring, thanks fishstiz (resolves #1020) - Apply SHOW_LIBRARIES config to child mods; thanks to NotRyken - Fix mod list entry width after filtering thanks to Zaxoosh (resolves #1015) - Improve how update checking is executed (thanks litetex) - Fix extra comma in es_es.json - Delete untranslated l18n files (thanks Madis0) - Delete untranslated l18n files (thanks Madis0) - Fix non-numeric update versions getting v prefix (thanks JustPyrrha) - Add timeouts for HTTP workers to prevent hangs (thanks litetex)
18.0.0 Release 09.07.2026

v18.0.0 for 26.1

Підтримувані версії Minecraft
26.1 26.1.1 26.1.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Update zh_tw.json, thanks StarsShine11904 - Update en_ud.json, thanks Fhilips613 - Update Malay and Malay (Jawi) translations (thanks NuruddinPlays) - Update Estonian translation, thanks Madis0 - Again fix selection and scroll amount not restoring, thanks fishstiz (resolves #1020) - Apply SHOW_LIBRARIES config to child mods; thanks to NotRyken - Update uk_ua.json, thanks StarmanMine142
20.0.0 Release 08.07.2026

v20.0.0 for 26.2

Підтримувані версії Minecraft
26.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Releasing stable for 26.2 - Update zh_tw.json, thanks StarsShine11904 - Update en_ud.json, thanks Fhilips613
20.0.0-beta.4 Beta 22.06.2026

v20.0.0-beta.4 for 26.2

Підтримувані версії Minecraft
26.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Update uk_ua.json, thanks StarmanMine142 - Update Malay and Malay (Jawi) translations (thanks NuruddinPlays) - Change small buttons to SpriteIconButton (mod compat) (thanks, samswi)
20.0.0-beta.3 Beta 18.06.2026

v20.0.0-beta.3 for 26.2

Підтримувані версії Minecraft
26.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Update to 26.2 release - Update Estonian translation, thanks Madis0 - Add new default option to show only configurable libraries, thanks Patbox
20.0.0-beta.2 Beta 14.06.2026

v20.0.0-beta.2 for 26.2-rc-2

Підтримувані версії Minecraft
26.2-rc-2 26.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Identical to beta.1; testing CF work-around
20.0.0-beta.1 Beta 13.06.2026

v20.0.0-beta.1 for 26.2-rc-2

Підтримувані версії Minecraft
26.2-rc-2 26.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Again fix selection and scroll amount not restoring, thanks fishstiz (resolves #1020) - Apply SHOW_LIBRARIES config to child mods; thanks to NotRyken - Improve handling of "modded version" in TitleScreen; thanks litetex - Update to Minecraft 26.2-rc-2, thanks Jab125
20.0.0-alpha.1 Alpha 29.05.2026

v20.0.0-alpha.1 for 26.2-pre-2

Підтримувані версії Minecraft
26.2-pre-2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Bump Text Placeholder API - Update Korean "Buy Me a Coffee" (Resolves #1029) - Update to 26.2-pre-2 (thanks, Jab125)
19.0.0-alpha.1 Alpha 09.05.2026

v19.0.0-alpha.1 for 26.2-snapshot-6

Підтримувані версії Minecraft
26.2-snapshot-6
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Update to 26.2-snapshot-6
18.0.0-beta.1 Beta 09.05.2026

v18.0.0-beta.1 for 26.1

Підтримувані версії Minecraft
26.1 26.1.1 26.1.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fix mod list entry width after filtering thanks to Zaxoosh (resolves #1015) - Minor updates to Polish translation thanks to lumiscosity - Update Korean localization thanks to minejango2 - Update fil_ph.json thanks to StartsMercury
18.0.0-alpha.8 Alpha 25.03.2026

v18.0.0-alpha.8 for 26.1

Підтримувані версії Minecraft
26.1 26.1.1 26.1.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Prevent dev dependency on Text Placeholder API - Restore Text Placeholders
17.0.0 Release 25.03.2026

v17.0.0 for 1.21.11

Підтримувані версії Minecraft
1.21.11
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fix inversion of config mode (thanks sisby-folk)
16.0.1 Release 25.03.2026

v16.0.1 for 1.21.9

Підтримувані версії Minecraft
1.21.9 1.21.10
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fix inversion of config mode (thanks sisby-folk)
15.0.2 Release 25.03.2026

v15.0.2 for 1.21.8

Підтримувані версії Minecraft
1.21.6 1.21.7 1.21.8
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fix inversion of config mode (thanks sisby-folk)
14.0.2 Release 25.03.2026

v14.0.2 for 1.21.5

Підтримувані версії Minecraft
1.21.5
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fix inversion of config mode (thanks sisby-folk)
13.0.4 Release 25.03.2026

v13.0.4 for 1.21.4

Підтримувані версії Minecraft
1.21.4
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fix inversion of config mode (thanks sisby-folk)
12.0.1 Release 25.03.2026

v12.0.1 for 1.21.3

Підтримувані версії Minecraft
1.21.2 1.21.3
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fix inversion of config mode (thanks sisby-folk)
11.0.4 Release 25.03.2026

v11.0.4 for 1.21

Підтримувані версії Minecraft
1.21 1.21.1
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fix inversion of config mode (thanks sisby-folk)
18.0.0-alpha.7 Alpha 24.03.2026

v18.0.0-alpha.7 for 26.1

Підтримувані версії Minecraft
26.1
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Improve how update checking is executed (thanks litetex) - Update French translations (thanks p-sage) - Update Chinese translation for pause menu (thanks EastCation) - Add Filipino (Philippines) translation by wackycreeper - Fix inversion of config mode (thanks sisby-folk) - Bump versions for Minecraft 26.1.
18.0.0-alpha.6 Alpha 14.03.2026

v18.0.0-alpha.6 for 26.1-pre-2

Підтримувані версії Minecraft
26.1-pre-2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Update to Minecraft 26.1-pre-2 - Fix extra comma in es_es.json
18.0.0-alpha.5 Alpha 22.01.2026

v18.0.0-alpha.5 for 26.1-snapshot-4

Підтримувані версії Minecraft
26.1-snapshot-4 26.1-snapshot-5
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Update to Minecraft 26.1-snapshot-4 - Delete untranslated l18n files (thanks Madis0) - Update Estonian translations (thanks Madis0) - Fix non-numeric update versions getting v prefix (thanks JustPyrrha) - Add timeouts for HTTP workers to prevent hangs (thanks litetex)
16.0.0 Release 11.01.2026

v16.0.0 for 1.21.9

Підтримувані версії Minecraft
1.21.9 1.21.10
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Initially select top mod entry - Translations
15.0.1 Release 11.01.2026

v15.0.1 for 1.21.8

Підтримувані версії Minecraft
1.21.6 1.21.7 1.21.8
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Add links to contacts' e-mail if present in fmj - Translations
14.0.1 Release 10.01.2026

v14.0.1 for 1.21.5

Підтримувані версії Minecraft
1.21.5
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Improves style match with vanilla - Fixes mod selection box (resolves #843)
17.0.0-beta.2 Beta 10.01.2026

v17.0.0-beta.2 for 1.21.11

Підтримувані версії Minecraft
1.21.11
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Initially select top mod entry
18.0.0-alpha.4 Alpha 10.01.2026

v18.0.0-alpha.4 for 26.1-snapshot-2

Підтримувані версії Minecraft
26.1-snapshot-2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Initially select top mod entry - Prevents config button click crash - Update for FAPI 0.140.3 and above - Text placeholders will not work until Text Placeholder API is ported
18.0.0-alpha.3 Alpha 24.12.2025

v18.0.0-alpha.3 for 26.1-snapshot-1

Підтримувані версії Minecraft
26.1-snapshot-1
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fix crash when loading the pause menu - Text placeholders will not work until Text Placeholder API is ported
18.0.0-alpha.2 Alpha 24.12.2025

v18.0.0-alpha.2 for 26.1-snapshot-1

Підтримувані версії Minecraft
26.1-snapshot-1
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Moving myself to Authors - Reverting to the old mod icon - Port to 26.1-snapshot-1 deobfuscated; thanks to `henkelmax` - Text placeholders will not work until Text Placeholder API is ported
16.0.0-rc.2 Beta 23.12.2025

v16.0.0-rc.2 for 1.21.9

Підтримувані версії Minecraft
1.21.9 1.21.10
Завантажувачі / Платформи
fabric quilt
Показати зміни
- ModMenu no longer displays a configuration icon for mods which implement the API but do not override `ModMenuApi.getModConfigScreenFactory()` (thanks `rcubedev`) - This does not change the API - Add Feature: Mail-To Contacts - Open the right mods folder (resolves #937) - Make "Update" icon y match Realms icon - Don't scroll when show/hide children (Resolves #911) - Reverse traversal of sort button when SHIFT is pressed (resolves #897) - Make HAS_UPDATE sort include child updates
17.0.0-beta.1 Beta 22.12.2025

v17.0.0-beta.1 for 1.21.11

Підтримувані версії Minecraft
1.21.11
Завантажувачі / Платформи
fabric quilt
Показати зміни
- ModMenu no longer displays a configuration icon for mods which implement the API but do not override `ModMenuApi.getModConfigScreenFactory()` (thanks `rcubedev`) - This does not change the API - Bundle fabric-resource-loader-v1 not v0 - Add Feature: Mail-To Contacts - Open the right mods folder (resolves #937) - Make "Update" icon y match Realms icon - Don't scroll when show/hide children (Resolves #911) - Reverse traversal of sort button when SHIFT is pressed (resolves #897) - Make HAS_UPDATE sort include child updates
14.0.0 Release 13.11.2025

v14.0.0 for 1.21.5

Підтримувані версії Minecraft
1.21.5
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Release unchanged stable for 1.21.5
17.0.0-alpha.1 Alpha 12.11.2025

v17.0.0-alpha.1 for 1.21.11

Підтримувані версії Minecraft
25w46a 1.21.11-pre1 1.21.11-pre2 1.21.11-pre3 1.21.11-pre4 1.21.11-pre5 1.21.11-rc1 1.21.11-rc2 1.21.11-rc3 1.21.11
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Add Bluesky translation - Update to 25w46a
16.0.0-rc.1 Beta 02.10.2025

v16.0.0-rc.1 for 1.21.9

Підтримувані версії Minecraft
1.21.9 1.21.10-rc1 1.21.10
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated to Minecraft 1.21.9
15.0.0 Release 30.08.2025

v15.0.0 for 1.21.8

Підтримувані версії Minecraft
1.21.6 1.21.7 1.21.8
Завантажувачі / Платформи
fabric quilt
Показати зміни
No Changelog Available
15.0.0-beta.3 Beta 20.06.2025

v15.0.0-beta.3 for 1.21.6

Підтримувані версії Minecraft
1.21.6 1.21.7 1.21.8
Завантажувачі / Платформи
fabric quilt
Показати зміни
No Changelog Available
15.0.0-beta.2 Beta 18.06.2025

v15.0.0-beta.2 for 1.21.6

Підтримувані версії Minecraft
1.21.6
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fix description list Background-gradient widget / scroll bar (thanks sakura-ryoko)
15.0.0-beta.1 Beta 17.06.2025

v15.0.0-beta.1 for 1.21.6-rc1

Підтримувані версії Minecraft
1.21.6-rc1 1.21.6
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Update to 1.21.6-rc1 thanks to lowercasebtw
14.0.0-rc.2 Beta 25.03.2025

v14.0.0-rc.2 for 1.21.5-rc1

Підтримувані версії Minecraft
1.21.5-rc1 1.21.5-rc2 1.21.5
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fixed concurrency issue when loading mod metadata
14.0.0-rc.1 Beta 25.03.2025

v14.0.0-rc.1 for 1.21.5-rc1

Підтримувані версії Minecraft
1.21.5-rc1 1.21.5-rc2 1.21.5
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated to 1.21.5
14.0.0-beta.2 Beta 11.03.2025

v14.0.0-beta.2 for 25w10a

Підтримувані версії Minecraft
25w09a 25w09b 25w10a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Removed redundant stacetrace logging for mod icon errors - Updated Ukrainian translation - Fix scroll position being reset when returning to the Mods screen - Optimize description rendering - Make generated mods appear as children of their containing mod - Update to 25w09a
13.0.3 Release 11.03.2025

v13.0.3 for 1.21.4

Підтримувані версії Minecraft
1.21.4
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Removed redundant stacetrace logging for mod icon errors - Updated Ukrainian translation - Fix scroll position being reset when returning to the Mods screen - Optimize description rendering - Make generated mods appear as children of their containing mod
14.0.0-beta.1 Beta 12.02.2025

v14.0.0-beta.1 for 25w06a

Підтримувані версії Minecraft
25w06a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated to 25w06a
13.0.2 Release 12.02.2025

v13.0.2 for 1.21.4

Підтримувані версії Minecraft
1.21.4
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated German translations - Updated Slovak translations - Updated Ukrainian translations
13.0.1 Release 21.01.2025

v13.0.1 for 1.21.4

Підтримувані версії Minecraft
1.21.4
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated Vietnamese translation - Updated Tartar translation - Updated Slovakian translation
13.0.0 Release 06.01.2025

v13.0.0 for 1.21.4

Підтримувані версії Minecraft
1.21.4
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fix crash when using keyboard navigation at the end of the list
13.0.0-beta.1 Beta 03.12.2024

v13.0.0-beta.1 for 1.21.4-rc3

Підтримувані версії Minecraft
1.21.4-rc3 1.21.4
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Port to 1.21.4 - Add sort option to sort by update
12.0.0 Release 03.12.2024

v12.0.0 for 1.21.3

Підтримувані версії Minecraft
1.21.2-pre1 1.21.2-pre2 1.21.2-pre3 1.21.2-pre4 1.21.2-pre5 1.21.2-rc1 1.21.2 1.21.3
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Add sort option to sort by update
12.0.0-beta.1 Beta 14.10.2024

v12.0.0-beta.1 for 1.21.2-pre3

Підтримувані версії Minecraft
1.21.2-pre1 1.21.2-pre2 1.21.2-pre3 1.21.2-pre4 1.21.2-pre5 1.21.2-rc1 1.21.2-rc2 1.21.2 1.21.3
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated to 1.21.2-pre3 - Fix Mods screen being slow to open the first time - Config screen errors no longer show until after a user has tried to open them - Fix drag-n-drop not supporting Quilt mods - Updated Polish translation - Fixed issue with drag-n-drop toast having the same line displayed twice - Updated Korean translations - Fixed Belarusian translation - Fixed issues with parent mods - Improve compatibility with other mods' mixins
11.0.3 Release 14.10.2024

v11.0.3 for 1.21

Підтримувані версії Minecraft
1.21 1.21.1
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fix Mods screen being slow to open the first time - Config screen errors no longer show until after a user has tried to open them - Fix drag-n-drop not supporting Quilt mods - Updated Polish translation - Fixed issue with drag-n-drop toast having the same line displayed twice - Updated Korean translations - Fixed Belarusian translation - Fixed issues with parent mods
11.0.2 Release 25.08.2024

v11.0.2 for 1.21

Підтримувані версії Minecraft
1.21 1.21.1
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Improve compatibility with other mods' mixins
12.0.0-alpha.1 Alpha 25.08.2024

v12.0.0-alpha.1 for 24w34a

Підтримувані версії Minecraft
24w33a 24w34a 24w35a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Improve compatibility with other mods' mixins - Update for 24w31a
11.0.1 Release 21.06.2024

v11.0.1 for 1.21

Підтримувані версії Minecraft
1.21 1.21.1-rc1 1.21.1
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fixed "Server Links" button overlapping Mods button in "Insert" mode
11.0.0 Release 18.06.2024

v11.0.0 for 1.21

Підтримувані версії Minecraft
1.21
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fixed mods button not showing up on servers with Server Links - Changed functionality of Game Mode display option "Replace Bugs" to "Replace", which now replaces both Give Feedback and Report Bugs, these are now both found in Mod Menu under the Minecraft entry. "Below Bugs" is now "Insert
9.2.0 Release 18.06.2024

v9.2.0 for 1.20.4

Підтримувані версії Minecraft
1.20.4
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fixed broken Chinese translation - Fixed update checker exception - Fixed update checker promoting downgrades - Added support for QuickText in mod descriptions - Newlines in descriptions are no longer forced to be paragraphs, so single linebreaks are now allowed - Fixed update checker promoting downgrades - Fixed crash with unknown badges - Updated Belarusian Translation - Updated Polish Translation - Updated Tatar Translation - Update Chinese Translation - Fixed credits role translation keys not being lowercased - Fixed contributors being sorted
10.0.0 Release 18.06.2024

v10.0.0 for 1.20.6

Підтримувані версії Minecraft
1.20.5 1.20.6
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fixed broken Chinese translation - Fixed update checker exception - Fixed update checker promoting downgrades - Updated Belarusian Translation - Updated Polish Translation - Updated Tatar Translation - Update Chinese Translation - Fixed credits role translation keys not being lowercased - Fixed contributors being sorted - Added support for QuickText in mod descriptions - Newlines in descriptions are no longer forced to be paragraphs, so single linebreaks are now allowed - Fixed update checker promoting downgrades - Fixed text now having shadows properly - Fixed crash with unknown badges
11.0.0-rc.4 Beta 16.06.2024

v11.0.0-rc.4 for 1.21

Підтримувані версії Minecraft
1.21
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fixed broken Chinese translation
11.0.0-rc.2 Beta 15.06.2024

v11.0.0-rc.2 for 1.21

Підтримувані версії Minecraft
1.21
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fixed Options screen rendering twice - Fixed update checker exception - Fixed update checker promoting downgrades - Fixed text not having shadows properly - Fixed crash with unknown badges - Updated Belarusian Translation - Updated Polish Translation - Updated Tatar Translation - Update Chinese Translation - Fixed credits role translation keys not being lowercased - Fixed contributors being sorted - Added support for QuickText in mod descriptions - Newlines in descriptions are no longer forced to be paragraphs, so single linebreaks are now allowd
11.0.0-rc.1 Beta 15.06.2024

v11.0.0-rc.1 for 1.21

Підтримувані версії Minecraft
1.21
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fixed Options screen rendering twice - Fixed update checker exception - Fixed update checker promoting downgrades - Fixed text not having shadows properly - Fixed crash with unknown badges - Updated Belarusian Translation - Updated Polish Translation - Updated Tatar Translation - Update Chinese Translation - Fixed credits role translation keys not being lowercased - Fixed contributors being sorted - Added support for QuickText in mod descriptions - Newlines in descriptions are no longer forced to be paragraphs, so single linebreaks are now allowd
11.0.0-beta.2 Beta 14.06.2024

v11.0.0-beta.2 for 1.21-pre2

Підтримувані версії Minecraft
1.21
Завантажувачі / Платформи
fabric quilt
Показати зміни
No Changelog Available
11.0.0-beta.1 Beta 04.06.2024

v11.0.0-beta.1 for 1.21-pre2

Підтримувані версії Minecraft
1.21-pre2 1.21-pre3 1.21-pre4 1.21-rc1 1.21
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fix update checker not being run when config screen is closed without the Done button
10.0.0-beta.1 Beta 22.04.2024

v10.0.0-beta.1 for 1.20.5-rc3

Підтримувані версії Minecraft
1.20.5-rc3 1.20.5 1.20.6-rc1 1.20.6 24w18a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Add update checkers for Fabric Loader and Quilt Loader - Add API for mods to provide update checkers for other mods - Fix Mod Menu build metadata not being properly stripped from the User Agent string generation for privacy - Group mod credits together by role - No longer promotes updates to beta or alpha versions by default - Fixed disable_update_checker config option not working - Delay loading API implementations until it's first needed in attempt to fix Architectury API's usage (beta) - Change Twitter name to X (Twitter)
9.2.0-beta.2 Beta 22.04.2024

v9.2.0-beta.2 for 1.20.4

Підтримувані версії Minecraft
1.20.4
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fix update checker not being run when config screen is closed without the Done button
9.2.0-beta.1 Beta 22.04.2024

v9.2.0-beta.1 for 1.20.4

Підтримувані версії Minecraft
1.20.4
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Add update checkers for Fabric Loader and Quilt Loader - Add API for mods to provide update checkers for other mods - Fix Mod Menu build metadata not being properly stripped from the User Agent string generation for privacy - Group mod credits together by role - No longer promotes updates to beta or alpha versions by default - Fixed disable_update_checker config option not working
9.1.0-beta.1 Beta 04.04.2024

v9.1.0-beta.1 for 1.20.4

Підтримувані версії Minecraft
1.20.4
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Delay loading API implementations until it's first needed in attempt to fix Architectury API's usage (beta) - Change Twitter name to X (Twitter)
10.0.0-alpha.3 Alpha 08.03.2024

v10.0.0-alpha.3 for 24w10a

Підтримувані версії Minecraft
24w10a 24w11a 24w12a 24w13a 24w14potato 24w14a 1.20.5-pre1
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Change Twitter name to X (Twitter) - Update Belarusian translations
10.0.0-alpha.1 Alpha 29.02.2024

v10.0.0-alpha.1 for 24w09a

Підтримувані версії Minecraft
24w09a 24w10a
Завантажувачі / Платформи
fabric quilt
Показати зміни
No Changelog Available
9.0.0 Release 18.12.2023

v9.0.0 for 1.20.4

Підтримувані версії Minecraft
1.20.3-pre4 1.20.3-rc1 1.20.3 1.20.4-rc1 1.20.4 23w51a 23w51b 24w03a 24w03b 24w04a 24w05a 24w05b 24w06a 24w07a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fix missing error icon on mod icons
8.0.1 Release 18.12.2023

v8.0.1 for 1.20.2

Підтримувані версії Minecraft
1.20.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fix missing error icon on mod icons
9.0.0-pre.1 Beta 29.11.2023

v9.0.0-pre.1 for 1.20.3-pre4

Підтримувані версії Minecraft
1.20.3-pre4 1.20.3-rc1 1.20.3 1.20.4-rc1 1.20.4
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated to 1.20.3-pre4 - Updated Belarusian translations - Updated Chinese translations - Updated Norwegian Bokmål translations
9.0.0-alpha.3 Alpha 17.11.2023

v9.0.0-alpha.3 for 23w46a

Підтримувані версії Minecraft
23w46a 1.20.3-pre1 1.20.3-pre2 1.20.3-pre3 1.20.3-pre4
Завантажувачі / Платформи
fabric quilt
Показати зміни
No Changelog Available
9.0.0-alpha.2 Alpha 03.11.2023

v9.0.0-alpha.2 for 23w44a

Підтримувані версії Minecraft
23w44a 23w45a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated to 23w44a
9.0.0-alpha.1 Alpha 18.10.2023

v9.0.0-alpha.1 for 23w42a

Підтримувані версії Minecraft
23w42a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated to 23w42a
8.0.0 Release 25.09.2023

v8.0.0 for 1.20.2

Підтримувані версії Minecraft
1.20.2 23w40a
Завантажувачі / Платформи
fabric quilt
Показати зміни
No Changelog Available
8.0.0-beta.2 Beta 08.09.2023

v8.0.0-beta.2 for 1.20.2

Підтримувані версії Minecraft
23w31a 23w32a 23w33a 23w35a 1.20.2-pre1 1.20.2-pre2 1.20.2-pre3 1.20.2-pre4 1.20.2-rc1 1.20.2-rc2 1.20.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Update Tatar translations - Update Vietnamese translations - Fix child mods hidden via config not being hidden
7.2.2 Release 08.09.2023

v7.2.2 for 1.20.1

Підтримувані версії Minecraft
1.20.1
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Update Tatar translations - Update Vietnamese translations - Fix child mods hidden via config not being hidden
8.0.0-beta.1 Beta 08.09.2023

v8.0.0-beta.1 for 1.20.2-pre2

Підтримувані версії Minecraft
23w31a 23w32a 23w33a 23w35a 1.20.2-pre1 1.20.2-pre2
Завантажувачі / Платформи
fabric quilt
Показати зміни
No Changelog Available
6.3.1 Release 18.07.2023

v6.3.1 for 1.19.4

Підтримувані версії Minecraft
1.19.4 23w12a 23w13a 23w13a_or_b 23w14a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Add the library badge to Fabric Language Kotlin - Add a search term for updateable mods
7.2.1 Release 18.07.2023

v7.2.1 for 1.20.1

Підтримувані версії Minecraft
1.20.1
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Add the library badge to Fabric Language Kotlin - Add a search term for updateable mods
5.1.0 Release 18.07.2023

v5.1.0 for 1.19.3

Підтримувані версії Minecraft
1.19.3
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Update French translations - Updates Tatar translations - Add dev env tag to update checker user agent - Fix update checker not working for Quilt mods - Fixed update checker error when it could not find a primary file on Modrinth - Changed mod names to be prioritized when searching - Removed April Fools "virus checker" joke - Updated translations - Updated translations
6.3.0 Release 18.07.2023

v6.3.0 for 1.19.4

Підтримувані версії Minecraft
1.19.4 23w12a 23w13a 23w13a_or_b 23w14a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Update French translations - Updates Tatar translations - Strip version prefixes in update checker message - Hide update indicator for hidden mods - Hide child libraries of non-library parents when libraries are hidden - Add dev env tag to update checker user agent - Fix text wrapping in mod descriptions - Fix update checker not working for Quilt mods - Fixed update checker error when it could not find a primary file on Modrinth - Fixes double-clicking on a mod sometimes activating on a single click - Changes double-click to prioritize opening the config of a parent mod if Quick Configure is enabled - Changed mod names to be prioritized when searching
7.2.0 Release 18.07.2023

v7.2.0 for 1.20.1

Підтримувані версії Minecraft
1.20.1
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Update French translations - Updates Tatar translations - Strip version prefixes in update checker message - Hide update indicator for hidden mods - Fix shadows rendering behind the scrollable description text - Hide child libraries of non-library parents when libraries are hidden - Add dev env tag to update checker user agent - Fix text wrapping in mod descriptions - Fix update checker not working for Quilt mods
7.1.0 Release 17.06.2023

v7.1.0 for 1.20.1

Підтримувані версії Minecraft
1.20.1
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Changed mod names to be prioritized when searching - Fixed update checker error when it could not find a primary file on Modrinth - Fixes double-clicking on a mod sometimes activating on a single click - Changes double-click to prioritize opening the config of a parent mod if Quick Configure is enabled
6.2.3 Release 08.06.2023

v6.2.3 for 1.19.4

Підтримувані версії Minecraft
1.19.4 23w12a 23w13a 23w13a_or_b 23w14a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Removed April Fools "virus checker" joke
7.0.1 Release 08.06.2023

v7.0.1 for 1.20

Підтримувані версії Minecraft
1.20 1.20.1-rc1 1.20.1
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Removed April Fools "virus checker" joke
7.0.0 Release 07.06.2023

v7.0.0 for 1.20

Підтримувані версії Minecraft
1.20
Завантажувачі / Платформи
fabric quilt
Показати зміни
No Changelog Available
6.2.2 Release 29.04.2023

v6.2.2 for 1.19.4

Підтримувані версії Minecraft
1.19.4 23w12a 23w13a 23w13a_or_b 23w14a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Changed the way buttons are moved on the title screen to only move button widgets.
7.0.0-beta.2 Beta 29.04.2023

v7.0.0-beta.2 for 23w17a

Підтримувані версії Minecraft
23w17a 23w18a 1.20-pre1 1.20-pre2 1.20-pre3 1.20-pre4 1.20-pre5 1.20-pre6 1.20-pre7 1.20-rc1
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Changed the way buttons are moved on the title screen to only move button widgets.
7.0.0-beta.1 Beta 20.04.2023

v7.0.0-beta.1 for 23w16a

Підтримувані версії Minecraft
23w16a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated to 23w16a
6.2.1 Release 20.04.2023

v6.2.1 for 1.19.4

Підтримувані версії Minecraft
1.19.4 23w12a 23w13a 23w13a_or_b 23w14a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Change the Java background color to always be red by default - Implemented a workaround for an issue with mods relying on the time the API's config screen factory providers are used.
1.14.5+build.30 Release 18.04.2023

v1.14.5+build.30 for 1.16.1

Підтримувані версії Minecraft
1.16.1
Завантажувачі / Платформи
fabric
6.2.0 Release 18.04.2023

Mod Menu v6.2.0 for 1.19.4

Підтримувані версії Minecraft
1.19.4 23w12a 23w13a 23w13a_or_b 23w14a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fixed a crash when other mods added non-clickable widgets to the Game Menu - Optimized loading of config screen factory providers - Fixed partially obscured description entries not being rendered
6.1.0 Release 16.04.2023

Mod Menu v6.1.0 for 1.19.4

Підтримувані версії Minecraft
1.19.4 23w12a 23w13a 23w13a_or_b 23w14a
Завантажувачі / Платформи
fabric quilt
Показати зміни
No Changelog Available
6.1.0-rc.4 Beta 17.03.2023

Mod Menu v6.1.0-rc.4 for 1.19.4–23w14a

Підтримувані версії Minecraft
1.19.4 23w12a 23w13a 23w13a_or_b 23w14a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fixed config button overlay being too large on compact mode - Fixed parent mod child toggle button area being too large on compact mode - Added ability to double-click parent mods to expand and collapse
6.1.0-rc.3 Beta 17.03.2023

Mod Menu v6.1.0-rc.3 for 1.19.4

Підтримувані версії Minecraft
1.19.4
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Added ability to double-click a mod or click its icon to access its configuration screen - Fixed the Mods button being one pixel too high in the Game Menu in Icon mode
6.1.0-rc.2 Beta 16.03.2023

Mod Menu v6.1.0-rc.2 for 1.19.4

Підтримувані версії Minecraft
1.19.4
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fixed the Mods button in the Game Menu - Added a separate config option for the button positioning in the Game Menu - Added support for High Contrast mode
6.1.0-rc.1 Beta 14.03.2023

Mod Menu v6.1.0-rc.1 for 1.19.4

Підтримувані версії Minecraft
23w07a 1.19.4-pre1 1.19.4-pre2 1.19.4-pre3 1.19.4-pre4 1.19.4-rc1 1.19.4-rc2 1.19.4-rc3 1.19.4
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated to 1.19.4 RC 3 - Updated translations
6.1.0-beta.3 Beta 18.02.2023

Mod Menu v6.1.0-beta.3 for 23w07a

Підтримувані версії Minecraft
23w07a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Strip Mod Menu build metadata from user agent for privacy - Include mod loader and MC version in user agent
5.1.0-beta.4 Beta 18.02.2023

Mod Menu v5.1.0-beta.4 for 1.19.3

Підтримувані версії Minecraft
1.19.3
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Strip Mod Menu build metadata from user agent for privacy - Include mod loader and MC version in user agent
4.2.0-beta.2 Beta 18.02.2023

v4.2.0-beta.2 for 1.19.2

Підтримувані версії Minecraft
1.19.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Strip Mod Menu build metadata from user agent for privacy - Include mod loader and MC version in user agent
4.2.0-beta.1 Beta 17.02.2023

Mod Menu v4.2.0-beta.1 for 1.19.2

Підтримувані версії Minecraft
1.19.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fixed modpack badge being added to builtin mods - Updated translations - Fixed a crash on the pause screen - Use translation keys for default Minecraft and Java descriptions - Update Mod Menu credits list - Give builtin "java" mod more pleasing random background colors - Updated translations - Allow mod names to be localized - Added an option to disable the random colors of the builtin 'java' mod - Added options to disable mod name and description localization. - Builtin 'java' mod is now named "Java" with vendor details in the description - Add "Config mode" option for modpack creators - Add option for modpack creators to hide specific mods' config menus - Added Modrinth mod update checker - Added config for modpack authors to disable specific mods' update checkers - Fix hash checking sometimes disregarded on Quilt - Updated translations
5.1.0-beta.3 Beta 17.02.2023

Mod Menu v5.1.0-beta.3 for 1.19.3

Підтримувані версії Minecraft
1.19.3
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fix hash checking sometimes disregarded on Quilt - Fix missing translation for update indicator option
6.1.0-beta.2 Beta 17.02.2023

Mod Menu v6.1.0-beta.2 for 23w07a

Підтримувані версії Minecraft
23w07a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fix hash checking sometimes disregarded on Quilt - Fix missing translation for update indicator option
6.1.0-beta.1 Beta 17.02.2023

Mod Menu v6.1.0-beta.1 for 23w07a

Підтримувані версії Minecraft
23w07a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Update checker now only makes a single Modrinth API request - Added config for modpack authors to disable specific mods' update checkers - Updated translations - Updated to 23w07a
5.1.0-beta.2 Beta 17.02.2023

Mod Menu v5.1.0-beta.2 for 1.19.3

Підтримувані версії Minecraft
1.19.3
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Update checker now only makes a single Modrinth API request - Added config for modpack authors to disable specific mods' update checkers
5.1.0-beta.1 Beta 17.02.2023

Mod Menu v5.1.0-beta.1 for 1.19.3

Підтримувані версії Minecraft
1.19.3
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Added Modrinth mod update checker - Add "Config mode" option for modpack creators - Add option for modpack creators to hide specific mods' config menus - Allow mod names to be localized - Added an option to disable the random colors of the builtin 'java' mod - Added options to disable mod name and description localization. - Builtin 'java' mod is now named "Java" with vendor details in the description - Updated translations - Give builtin "java" mod more pleasing random background colors - Update Mod Menu credits list - Use translation keys for default Minecraft and Java descriptions
6.1.0-alpha.2 Alpha 17.02.2023

Mod Menu v6.1.0-alpha.2 for 23w07a

Підтримувані версії Minecraft
23w07a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated translations - Updated to 23w07a
6.1.0-alpha.1 Alpha 06.02.2023

Mod Menu v6.1.0-alpha.1 for 23w05a

Підтримувані версії Minecraft
23w05a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated to 23w05a - Add "Config mode" option for modpack creators - Add option for modpack creators to hide specific mods' config menus - Allow mod names to be localized - Added an option to disable the random colors of the builtin 'java' mod - Added options to disable mod name and description localization. - Builtin 'java' mod is now named "Java" with vendor details in the description - Give builtin "java" mod more pleasing random background colors - Update Mod Menu credits list - Use translation keys for default Minecraft and Java descriptions
6.0.0-beta.1 Beta 21.01.2023

Mod Menu v6.0.0-beta.1 for 23w03a

Підтримувані версії Minecraft
23w03a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated to Snapshot 23w03a
5.0.2 Release 10.12.2022

Mod Menu v5.0.2 for 1.19.3

Підтримувані версії Minecraft
1.19.3
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fixed a crash on the pause screen
2.0.17 Release 08.12.2022

v2.0.17 for 1.17

Підтримувані версії Minecraft
1.17 1.17.1
Завантажувачі / Платформи
fabric
Показати зміни
- Updated translations
3.2.5 Release 08.12.2022

v3.2.5 for 1.18.2

Підтримувані версії Minecraft
1.18.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated translations
4.1.2 Release 08.12.2022

Mod Menu v4.1.2 for 1.19.2

Підтримувані версії Minecraft
1.19.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated translations
5.0.1 Release 08.12.2022

Mod Menu v5.0.1 for 1.19.3

Підтримувані версії Minecraft
1.19.3
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated translations - Updated to 1.19.3
5.0.0 Release 08.12.2022

Mod Menu v5.0.0 for 1.19.3

Підтримувані версії Minecraft
1.19.3
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated to 1.19.3
5.0.0-alpha.4 Alpha 20.11.2022

Mod Menu v5.0.0-alpha.4 for 22w46a

Підтримувані версії Minecraft
22w43a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fixed modpack badge being added to builtin mods
4.1.1 Release 20.11.2022

Mod Menu v4.1.1 for 1.19.2

Підтримувані версії Minecraft
1.19.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fixed modpack badge being added to builtin mods
5.0.0-alpha.3 Alpha 17.11.2022

Mod Menu v5.0.0-alpha.3 for 22w46a

Підтримувані версії Minecraft
22w43a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated to 22w46a
5.0.0-alpha.2 Alpha 10.11.2022

Mod Menu v5.0.0-alpha.2 for 22w45a

Підтримувані версії Minecraft
22w43a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated to 22w45a
5.0.0-alpha.1 Alpha 04.11.2022

Mod Menu v5.0.0-alpha.1 for 22w43a

Підтримувані версії Minecraft
22w43a
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated to 22w43a - Added the modpack badge - Updated translations
4.1.0 Release 04.11.2022

Mod Menu v4.1.0 for 1.19.2

Підтримувані версії Minecraft
1.19.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Added the modpack badge - Updated translations
3.2.4 Release 03.11.2022

Mod Menu v3.2.4 for 1.18.2

Підтримувані версії Minecraft
1.18.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated translations
2.0.16 Release 03.11.2022

Mod Menu v2.0.16 for 1.17

Підтримувані версії Minecraft
1.17 1.17.1
Завантажувачі / Платформи
fabric
Показати зміни
- Updated translations
1.10.7 Release 17.10.2022

v1.10.7 for 1.15.2

Підтримувані версії Minecraft
1.15.2
Завантажувачі / Платформи
fabric
Показати зміни
- Fixed crash when sort mode is null
1.7.17 Release 07.09.2022

v1.7.17 for 1.14.4

Підтримувані версії Minecraft
1.14.4
Завантажувачі / Платформи
fabric
4.0.6 Release 06.08.2022

Mod Menu v4.0.6 for 1.19.2

Підтримувані версії Minecraft
1.19.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated to 1.19.2
4.0.5 Release 27.07.2022

Mod Menu v4.0.5 for 1.19.1

Підтримувані версії Minecraft
1.19.1
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Update to 1.19.1
4.0.4 Release 13.07.2022

v4.0.4 for 1.19

Підтримувані версії Minecraft
1.19
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fix Fabric API icon if Fabric API fatjar is not present
4.0.3 Release 12.07.2022

Mod Menu v4.0.3 for 1.19

Підтримувані версії Minecraft
1.19
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fixed broken mod icon log spam - Fixed overflowing credit entries
4.0.2 Beta 04.07.2022

Mod Menu v4.0.2 for 1.19.1-pre2

Підтримувані версії Minecraft
1.19.1-pre2
Завантажувачі / Платформи
fabric quilt
4.0.1 Beta 27.06.2022

Mod Menu v4.0.1 for 1.19.1-rc1

Підтримувані версії Minecraft
1.19.1-rc1
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Update translations - Add keybind - Added support for Quilt Loader's contributor roles - Added hardcoding to give Quilt Loader the library badge
3.2.3 Release 27.06.2022

Mod Menu v3.2.3 for 1.18.2

Підтримувані версії Minecraft
1.18.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Add keybind - Updated translations - Fixed Thai Language
2.0.15 Release 27.06.2022

Mod Menu v2.0.15 for 1.17

Підтримувані версії Minecraft
1.17 1.17.1
Завантажувачі / Платформи
fabric
Показати зміни
- Disabled deprecation warnings by default - Update translations - Add keybind
1.16.23 Release 27.06.2022

v1.16.23 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Disabled deprecation warnings by default - Add keybind - Updated translations
4.0.0 Release 07.06.2022

Mod Menu v4.0.0 for 1.19

Підтримувані версії Minecraft
1.19 22w24a
Завантажувачі / Платформи
fabric
Показати зміни
- Fixed Thai Language
3.2.2 Release 13.05.2022

Mod Menu v3.2.2 for 1.18.2

Підтримувані версії Minecraft
1.18.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Updated Chinese (Traditional) translation - Updated Chinese (Simplified) translation - Updated Chinese (Literary) translation - Fix search terms - Updated Thai translation - Updated Spanish (Mexico) translation - Updated Thai translation - Updated Thai translation - Updated Russian translation - Updated Russian translation - Updated Estonian translation - Updated Estonian translation - Updated Russian translation - Updated Thai translation - Updated Chinese (Traditional) translation - Updated Thai translation - Updated Thai translation - Updated Chinese (Simplified) translation - Added Thai translation - Updated Chinese (Simplified) translation - Updated Vietnamese translation - Updated Vietnamese translation - Updated Chinese (Simplified) translation - Updated Chinese (Simplified) translation - Updated Chinese (Simplified) translation - Updated Chinese (Simplified) translation - Updated Chinese (Simplified) translation - Added Vietnamese translation - Updated Chinese (Simplified) translation - Updated Malay translation - Updated Czech translation - Updated Malay translation - Updated Russian translation - Updated Polish translation - Updated Japanese translation - Updated Estonian translation - Updated German translation - Added Czech translation - Updated Polish translation - Updated Polish translation
3.2.1 Release 25.04.2022

Mod Menu v3.2.1 for 1.18.2

Підтримувані версії Minecraft
1.18.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Added support for Quilt Loader's contributor roles - Added hardcoding to give Quilt Loader the library badge
4.0.0-beta.4 Beta 21.04.2022

Mod Menu v4.0.0-beta.4 for 22w16b

Підтримувані версії Minecraft
22w16b 22w17a 22w18a 22w19a 1.19-pre1 1.19-pre2 1.19-pre3 1.19-pre4
Завантажувачі / Платформи
fabric
Показати зміни
- Fixed a spammy debug line being shipped
4.0.0-beta.3 Beta 21.04.2022

Mod Menu v4.0.0-beta.3 for 22w16b

Підтримувані версії Minecraft
22w16b
Завантажувачі / Платформи
fabric
Показати зміни
- Updated to 22w16b
4.0.0-beta.2 Beta 16.04.2022

Mod Menu v4.0.0-beta.2 for 22w15a

Підтримувані версії Minecraft
22w15a
Завантажувачі / Платформи
fabric
Показати зміни
- Updated to 1.19 Snapshot 22w15a - Added a bunch of credits
3.1.1 Release 11.04.2022

Mod Menu v3.1.1 for 1.18.2

Підтримувані версії Minecraft
1.18.2
Завантажувачі / Платформи
fabric quilt
Показати зміни
- Fixed Mojang's copyright notice missing on the title screen - Updated Russian translation - Updated Japanese translation - Updated Estonian translation
3.1.0 Release 01.03.2022

Mod Menu v3.1.0 for 1.18.2

Підтримувані версії Minecraft
1.18.2
Завантажувачі / Платформи
fabric
Показати зміни
- Watching the Minecraft Credits will return you back to the Mods screen - Updated Portuguese translation - Updated Arabic translation - Updated Chinese (Traditional) translation - Updated Chinese (Simplified) translation - Updated Turkish translation - Updated Swedish translation - Updated Russian translation - Updated Portuguese (Brazil) translation - Updated Polish translation - Updated lzh (generated) (lzh) translation - Updated Mongo (lol_US) translation - Updated Korean translation - Updated Japanese translation - Updated Italian translation - Updated French translation - Updated Finnish translation - Updated Persian translation - Updated Estonian translation - Updated Spanish (Mexico) translation - Updated English (en_WS) translation - Updated English (en_UD) translation - Updated English (en_PT) translation - Updated German translation - Updated Catalan translation - Updated Bulgarian translation - Updated Malay translation - Updated Portuguese translation - Updated Arabic translation - Updated Chinese (Traditional) translation - Updated Chinese (Simplified) translation - Updated Swedish translation - Updated Russian translation - Updated Portuguese (Brazil) translation - Updated Polish translation - Updated lzh (generated) (lzh) translation - Updated Korean translation - Updated Japanese translation - Updated Italian translation - Updated French translation - Updated Finnish translation - Updated Persian translation - Updated Spanish (Mexico) translation - Updated English (en_WS) translation - Updated English (en_UD) translation - Updated English (en_PT) translation - Updated German translation - Updated Bulgarian translation - Added Malay translation - Updated Catalan translation - Updated Spanish (Mexico) translation - Updated Chinese (Simplified) translation - Updated Portuguese translation - Updated Portuguese translation - Updated Russian translation - Updated Estonian translation - Added Portuguese translation - Added more metadata for the "Java" entry - Update Minecraft license to display Minecraft EULA - Updated to Minecraft 1.18.2 - Add some default metadata for Fabric API parent group - Updated Portuguese translation - Updated Arabic translation - Updated Chinese (Traditional) translation - Updated Chinese (Simplified) translation - Updated Turkish translation - Updated Swedish translation - Updated Russian translation - Updated Portuguese (Brazil) translation - Updated Polish translation - Updated lzh (generated) (lzh) translation - Updated Mongo (lol_US) translation - Updated Korean translation - Updated Japanese translation - Updated Italian translation - Updated French translation - Updated Finnish translation - Updated Persian translation - Updated Estonian translation - Updated Spanish (Mexico) translation - Updated English (en_WS) translation - Updated English (en_UD) translation - Updated English (en_PT) translation - Updated German translation - Updated Catalan translation - Updated Bulgarian translation - Updated Malay translation - Updated Portuguese translation - Updated Arabic translation - Updated Chinese (Traditional) translation - Updated Chinese (Simplified) translation - Updated Swedish translation - Updated Russian translation - Updated Portuguese (Brazil) translation - Updated Polish translation - Updated lzh (generated) (lzh) translation - Updated Korean translation - Updated Japanese translation - Updated Italian translation - Updated French translation - Updated Finnish translation - Updated Persian translation - Updated Estonian translation - Updated Spanish (Mexico) translation - Updated English (en_WS) translation - Updated English (en_UD) translation - Updated English (en_PT) translation - Updated German translation - Updated Bulgarian translation - Added Malay translation - Updated Catalan translation - Updated Spanish (Mexico) translation - Updated Chinese (Simplified) translation - Updated Portuguese translation - Updated Portuguese translation - Updated Russian translation - Updated Estonian translation - Added Portuguese translation
3.0.1 Release 18.12.2021

Mod Menu v3.0.1 for 1.18.1

Підтримувані версії Minecraft
1.18 1.18.1-pre1 1.18.1-rc1 1.18.1-rc2 1.18.1-rc3 1.18.1 22w03a 22w05a 22w06a 22w07a 1.18.2-pre1 1.18.2-pre2 1.18.2-pre3 1.18.2-rc1 1.18.2
Завантажувачі / Платформи
fabric
Показати зміни
- Updated Estonian translation - Made badge-based search terms translatable - Added description and summary search
3.0.0 Release 03.10.2021

Mod Menu v3.0.0 for 1.18

Підтримувані версії Minecraft
1.18
Завантажувачі / Платформи
fabric
Показати зміни
- Removed deprecated Mod Menu API, mods must use `com.terraformersmc.modmenu.api.ModMenuApi` now - Removed deprecated custom value loading, mods must use the `modmenu` container custom value now
2.0.14 Release 03.10.2021

Mod Menu v2.0.14 for 1.17

Підтримувані версії Minecraft
1.17 1.17.1
Завантажувачі / Платформи
fabric
Показати зміни
- Added config option to disable deprecation warnings - Added Arabic translation - Updated Russian translation - Updated Portuguese (Brazil) translation - Updated Turkish translation - Updated German translation
1.16.22 Release 03.10.2021

Mod Menu v1.16.22 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Added config option to disable deprecation warnings - Added Arabic translation - Updated Russian translation - Updated Portuguese (Brazil) translation - Updated Turkish translation - Updated German translation
1.16.21 Release 27.09.2021

Mod Menu v1.16.21 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Fixed immediate crash when using Java 1.8
2.1.1 Release 26.09.2021

Mod Menu v2.1.1 for 21w38a

Підтримувані версії Minecraft
21w37a 21w38a
Завантажувачі / Платформи
fabric
Показати зміни
- Removed deprecated Mod Menu API, mods must use `com.terraformersmc.modmenu.api.ModMenuApi` now - Removed deprecated custom value loading, mods must use the `modmenu` container custom value now
2.0.13 Release 26.09.2021

Mod Menu v2.0.13 for 1.17

Підтримувані версії Minecraft
1.17 1.17.1
Завантажувачі / Платформи
fabric
Показати зміни
- Updated English (en_PT) translation - Updated Mongo (lol_US) translation
1.16.20 Release 26.09.2021

Mod Menu v1.16.20 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Updated English (en_PT) translation - Updated Mongo (lol_US) translation
2.1.0 Release 21.09.2021

Mod Menu v2.1.0 for 21w37a

Підтримувані версії Minecraft
21w37a 21w38a
Завантажувачі / Платформи
fabric
Показати зміни
No Changelog Available
2.0.12 Release 21.09.2021

Mod Menu v2.0.12 for 1.17

Підтримувані версії Minecraft
1.17 1.17.1
Завантажувачі / Платформи
fabric
Показати зміни
- Fixed Minecraft crash caused by broken mod config screens - Updated German translation
1.16.19 Release 21.09.2021

Mod Menu v1.16.19 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Fixed Minecraft crash caused by broken mod config screens - Updated German translation
2.0.11 Release 17.09.2021

Mod Menu v2.0.11 for 1.17

Підтримувані версії Minecraft
1.17 1.17.1
Завантажувачі / Платформи
fabric
Показати зміни
- Updated Russian translation - Updated Russian translation - Updated Bulgarian translation - Updated English (en_PT) translation - Updated English (en_UD) translation - Updated English (en_WS) translation - Updated Italian translation
1.16.18 Release 17.09.2021

Mod Menu v1.16.18 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Updated Russian translation - Updated Bulgarian translation - Updated English (en_PT) translation - Updated English (en_UD) translation - Updated English (en_WS) translation - Updated Italian translation - Updated Russian translation
2.0.10 Release 06.09.2021

Mod Menu v2.0.10 for 1.17

Підтримувані версії Minecraft
1.17 1.17.1
Завантажувачі / Платформи
fabric
Показати зміни
- Fixed Java icon loosing background color when selected
1.16.17 Release 06.09.2021

Mod Menu v1.16.17 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Updated Portuguese (Brazil) translation
2.0.9 Release 02.09.2021

Mod Menu v2.0.9 for 1.17

Підтримувані версії Minecraft
1.17 1.17.1
Завантажувачі / Платформи
fabric
Показати зміни
- Fixed a crash when optional dependencies were used in mod config screens
1.16.16 Release 02.09.2021

Mod Menu v1.16.16 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Fixed a crash when optional dependencies were used in mod config screens
1.16.15 Release 01.09.2021

Mod Menu v1.16.15 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Updated Portuguese (Brazil) translation
2.0.8 Release 01.09.2021

Mod Menu v2.0.8 for 1.17

Підтримувані версії Minecraft
1.17 1.17.1
Завантажувачі / Платформи
fabric
Показати зміни
- Updated Portuguese (Brazil) translation - Updated Swedish translation
2.0.7 Release 30.08.2021

Mod Menu v2.0.7 for 1.17

Підтримувані версії Minecraft
1.17 1.17.1
Завантажувачі / Платформи
fabric
Показати зміни
- Updated ɥsᴉꞁᵷuƎ translation - Updated LOLCAT translation - Updated Portuguese (Brazil) translation - Updated Swedish translation
1.16.14 Release 30.08.2021

Mod Menu v1.16.14 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Updated ɥsᴉꞁᵷuƎ translation - Updated LOLCAT translation - Updated Portuguese (Brazil) translation - Updated Swedish translation
2.0.6 Release 27.08.2021

Mod Menu v2.0.6 for 1.17

Підтримувані версії Minecraft
1.17 1.17.1
Завантажувачі / Платформи
fabric
Показати зміни
- Added mod list hotkeys: SPACE to open/close a list of child mods, LEFT to select the parent or close the list, RIGHT to open the list or select the first child
1.16.13 Release 27.08.2021

Mod Menu v1.16.13 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Added mod list hotkeys: SPACE to open/close a list of child mods, LEFT to select the parent or close the list, RIGHT to open the list or select the first child
2.0.5 Release 19.08.2021

Mod Menu v2.0.5 for 1.17

Підтримувані версії Minecraft
1.17 1.17.1
Завантажувачі / Платформи
fabric
Показати зміни
- Fixed a crash when mods declare themselves as their own parent - Updated Italian translation - Added Classical Chinese Language translation - Updated German translation - Updated French translation - Updated Turkish translation - Updated Persian translation
1.16.12 Release 19.08.2021

Mod Menu v1.16.12 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Fixed a crash when mods declare themselves as their own parent - Updated German translation - Updated French translation - Updated Turkish translation - Updated Persian translation
2.0.4 Release 25.07.2021

Mod Menu v2.0.4 for 1.17

Підтримувані версії Minecraft
1.17 1.17.1
Завантажувачі / Платформи
fabric
Показати зміни
- Fixed sounds resuming when exiting Mod Menu with ESC while paused - Update Polish Translation
1.16.11 Release 25.07.2021

Mod Menu v1.16.11 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Fixed sounds resuming when exiting Mod Menu with ESC while paused - Update Polish Translation
2.0.3 Release 20.07.2021

Mod Menu v2.0.3 for 1.17

Підтримувані версії Minecraft
1.17 1.17.1
Завантажувачі / Платформи
fabric
Показати зміни
No Changelog Available
1.16.10 Release 20.07.2021

Mod Menu v1.16.10 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Added Korean Translation
2.0.2 Release 12.06.2021

Mod Menu v2.0.2 for 1.17

Підтримувані версії Minecraft
1.17 1.17.1
Завантажувачі / Платформи
fabric
Показати зміни
- Update Persian Translation - Allow for more "dynamic" provider factories through the API - Added Korean Translation - Fixed some rendering issues from the 21w14a port - Update Russian Translation - Updated Catalan translation - Handle errors in API implementations more gracefully - Updated Simplified Chinese Translation - Updated to 21w14a - Re-ported Mod Menu v1.16.7 to Minecraft Snapshot 20w06a (from Minecraft 1.16.5)
2.0.0-beta.7 Beta 31.05.2021

Mod Menu v2.0.0-beta.7 for 1.17-pre1

Підтримувані версії Minecraft
1.17-pre1
Завантажувачі / Платформи
fabric
Показати зміни
- Update Persian Translation - Allow for more "dynamic" provider factories through the API - Added Korean Translation - Fixed some rendering issues from the 21w14a port - Update Russian Translation - Updated Catalan translation - Handle errors in API implementations more gracefully - Updated Simplified Chinese Translation - Updated to 21w14a - Re-ported Mod Menu v1.16.7 to Minecraft Snapshot 20w06a (from Minecraft 1.16.5)
2.0.0-beta.5 Beta 29.05.2021

Mod Menu v2.0.0-beta.5 for 1.17-pre1

Підтримувані версії Minecraft
1.17-pre1
Завантажувачі / Платформи
fabric
Показати зміни
No Changelog Available
1.10.6 Release 10.04.2021

Mod Menu v1.10.6 for 1.15.2

Підтримувані версії Minecraft
1.15.2
Завантажувачі / Платформи
fabric
Показати зміни
- Fix crash with default API getId implementation resulting in NPE
2.0.0-beta.4 Beta 10.04.2021

Mod Menu v2.0.0-beta.4 for 21w14a

Підтримувані версії Minecraft
21w14a
Завантажувачі / Платформи
fabric
Показати зміни
- Update Persian Translation - Allow for more "dynamic" provider factories through the API - Added Korean Translation - Fixed some rendering issues from the 21w14a port
2.0.0-beta.3 Beta 08.04.2021

Mod Menu v2.0.0-beta.3 for 21w14a

Підтримувані версії Minecraft
21w14a
Завантажувачі / Платформи
fabric
Показати зміни
- Update Russian Translation - Updated Catalan translation - Handle errors in API implementations more gracefully - Updated Simplified Chinese Translation - Updated to 21w14a
1.16.9 Release 08.04.2021

Mod Menu v1.16.9 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Allow for more "dynamic" provider factories through the API - Updated Persian Translation - Updated Catalan translation - Updated Russian Translation
1.16.8 Release 20.02.2021

Mod Menu v1.16.8 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Handle errors in API implementations more gracefully - Updated Simplified Chinese Translation
2.0.0-beta.2 Beta 11.02.2021

Mod Menu v2.0.0-beta.2 for 21w06a

Підтримувані версії Minecraft
21w06a
Завантажувачі / Платформи
fabric
Показати зміни
- Re-ported Mod Menu v1.16.7 to Minecraft Snapshot 21w06a (from Minecraft 1.16.5)
1.10.5 Release 11.02.2021

Mod Menu v1.10.5 for 1.15.2

Підтримувані версії Minecraft
1.15.2
Завантажувачі / Платформи
fabric
Показати зміни
- Added a default implementation to getModId to allow for backwards compatible mods
1.16.7 Release 11.02.2021

Mod Menu v1.16.7 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Include fabric-api-base - Added translations for Wiki and Crowdin link keys
1.16.6 Release 05.02.2021

Mod Menu v1.16.6 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Mark Better Mod Button as incompatible - Handle errors from other mods' config factories more gracefully, will now just log and remove the mod's config button.
1.16.5 Release 03.02.2021

Mod Menu v1.16.5 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Added additional link key translations for common links
1.16.4 Release 03.02.2021

Mod Menu v1.16.4 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Moved the licensing information above credits - Changed the order of the config buttons - Updated Finnish translation
1.16.3 Release 02.02.2021

Mod Menu v1.16.3 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Fixed incorrect error being logged when a mod defines an invalid icon - Fixed an error being logged when no icon is at the default path
1.16.2 Release 02.02.2021

Mod Menu v1.16.2 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Fixed icons for mods that were using the default icon path - Added the old button textures to the Programmer Art resource pack - Update Catalan translation - Updated Turkish translation
1.16.1 Release 01.02.2021

Mod Menu v1.16.1 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Updated Estonian translation - Fixed a bug with the mod count - Added mod id tooltip for fake mods
1.16.0 Release 01.02.2021

Mod Menu v1.16.0 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Fixed two of the Mods button style names being wrong - Added an API for getting the Mods button text
1.15.0 Release 01.02.2021

Mod Menu v1.15.0 for 1.16.5

Підтримувані версії Minecraft
1.16.4 1.16.5
Завантажувачі / Платформи
fabric
Показати зміни
- Major internal refactors - Added links, contributors, and license information - Added an options screen for Mod Menu - Added a compact list mode option - Added an options to change Mods button style to: Below Realms (Default), Shrink Realms, Replace Realms, and Fabric Icon - Added an option to hide mod badges - Added an option to move where the mod count is displayed (on button, on title screen, both, neither) - Added options to specify whether or not to count libraries, children, and hidden mods in the mod count - Added options to hide mod links, credits, or license info - Added options to disable the modification of the title screen and/or game menu screen - Changed the hardcoded icon for "java - Probably more that got forgotten about in this massive update
1.14.15 Release 23.01.2021

Mod Menu v1.14.15 for 1.16.5

Підтримувані версії Minecraft
1.16.5
Завантажувачі / Платформи
fabric