Назад в магазин
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
Войти

0.81 MB

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
Войти

0.59 MB

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)
Войти

0.91 MB

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
Войти

0.82 MB

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
Войти

0.59 MB

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)
Войти

0.58 MB

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
Войти

0.61 MB

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
Войти

0.82 MB

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
Войти

0.82 MB

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
Войти

0.81 MB

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)
Войти

1.06 MB

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)
Войти

1.03 MB

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)
Войти

1.04 MB

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)
Войти

1.02 MB

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)
Войти

0.94 MB

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)
Войти

0.93 MB

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.
Войти

0.81 MB

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
Войти

0.59 MB

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)
Войти

0.59 MB

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
Войти

1.03 MB

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
Войти

1.04 MB

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)
Войти

1.02 MB

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
Войти

1.06 MB

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
Войти

0.74 MB

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
Войти

0.73 MB

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
Войти

0.97 MB

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
Войти

1.03 MB

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
Войти

1.06 MB

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
Войти

1.02 MB

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
Войти

1.03 MB

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
Войти

1.03 MB

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
Войти

1.03 MB

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
Войти

1.03 MB

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)
Войти

1.03 MB

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
Войти

1.03 MB

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
Войти

1.02 MB

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
Войти

1.02 MB

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
Войти

1.01 MB

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
Войти

0.95 MB

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
Войти

0.95 MB

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
Войти

0.95 MB

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
Войти

0.95 MB

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
Войти

0.95 MB

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
Войти

0.94 MB

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
Войти

0.94 MB

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
Войти

0.93 MB

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
Войти

0.93 MB

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
Войти

0.94 MB

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
Войти

0.93 MB

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
Войти

0.93 MB

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
Войти

0.92 MB

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
Войти

0.92 MB

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
Войти

0.93 MB

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
Войти

0.93 MB

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
Войти

0.93 MB

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
Войти

0.72 MB

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
Войти

0.72 MB

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)
Войти

0.71 MB

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
Войти

0.71 MB

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
Войти

0.71 MB

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)
Войти

0.69 MB

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
Войти

0.69 MB

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
Войти

0.69 MB

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
Войти

0.69 MB

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
Войти

0.69 MB

9.0.0-alpha.2 Alpha 03.11.2023

v9.0.0-alpha.2 for 23w44a

Поддерживаемые версии Minecraft
23w44a 23w45a
Загрузчики / Платформы
fabric quilt
Показать изменения
- Updated to 23w44a
Войти

0.69 MB

9.0.0-alpha.1 Alpha 18.10.2023

v9.0.0-alpha.1 for 23w42a

Поддерживаемые версии Minecraft
23w42a
Загрузчики / Платформы
fabric quilt
Показать изменения
- Updated to 23w42a
Войти

0.69 MB

8.0.0 Release 25.09.2023

v8.0.0 for 1.20.2

Поддерживаемые версии Minecraft
1.20.2 23w40a
Загрузчики / Платформы
fabric quilt
Показать изменения
No Changelog Available
Войти

0.69 MB

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
Войти

0.69 MB

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
Войти

0.69 MB

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
Войти

0.69 MB

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
Войти

0.69 MB

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
Войти

0.69 MB

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
Войти

0.68 MB

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
Войти

0.69 MB

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
Войти

0.69 MB

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
Войти

0.68 MB

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
Войти

0.69 MB

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
Войти

0.68 MB

7.0.0 Release 07.06.2023

v7.0.0 for 1.20

Поддерживаемые версии Minecraft
1.20
Загрузчики / Платформы
fabric quilt
Показать изменения
No Changelog Available
Войти

0.69 MB

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.
Войти

0.69 MB

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.
Войти

0.69 MB

7.0.0-beta.1 Beta 20.04.2023

v7.0.0-beta.1 for 23w16a

Поддерживаемые версии Minecraft
23w16a
Загрузчики / Платформы
fabric quilt
Показать изменения
- Updated to 23w16a
Войти

0.69 MB

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.
Войти

0.69 MB

1.14.5+build.30 Release 18.04.2023

v1.14.5+build.30 for 1.16.1

Поддерживаемые версии Minecraft
1.16.1
Загрузчики / Платформы
fabric
Войти

0.08 MB

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
Войти

0.69 MB

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
Войти

0.69 MB

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
Войти

0.69 MB

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
Войти

0.69 MB

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
Войти

0.69 MB

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
Войти

0.67 MB

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
Войти

0.65 MB

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
Войти

0.65 MB

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
Войти

0.66 MB

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
Войти

0.66 MB

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
Войти

0.65 MB

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
Войти

0.65 MB

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
Войти

0.65 MB

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
Войти

0.65 MB

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
Войти

0.65 MB

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
Войти

0.63 MB

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
Войти

0.63 MB

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
Войти

0.61 MB

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
Войти

0.61 MB

2.0.17 Release 08.12.2022

v2.0.17 for 1.17

Поддерживаемые версии Minecraft
1.17 1.17.1
Загрузчики / Платформы
fabric
Показать изменения
- Updated translations
Войти

0.52 MB

3.2.5 Release 08.12.2022

v3.2.5 for 1.18.2

Поддерживаемые версии Minecraft
1.18.2
Загрузчики / Платформы
fabric quilt
Показать изменения
- Updated translations
Войти

0.56 MB

4.1.2 Release 08.12.2022

Mod Menu v4.1.2 for 1.19.2

Поддерживаемые версии Minecraft
1.19.2
Загрузчики / Платформы
fabric quilt
Показать изменения
- Updated translations
Войти

0.59 MB

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
Войти

0.61 MB

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
Войти

0.59 MB

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
Войти

0.58 MB

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
Войти

0.59 MB

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
Войти

0.59 MB

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
Войти

0.59 MB

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
Войти

0.58 MB

3.2.4 Release 03.11.2022

Mod Menu v3.2.4 for 1.18.2

Поддерживаемые версии Minecraft
1.18.2
Загрузчики / Платформы
fabric quilt
Показать изменения
- Updated translations
Войти

0.55 MB

2.0.16 Release 03.11.2022

Mod Menu v2.0.16 for 1.17

Поддерживаемые версии Minecraft
1.17 1.17.1
Загрузчики / Платформы
fabric
Показать изменения
- Updated translations
Войти

0.52 MB

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
Войти

0.11 MB

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
Войти

0.43 MB

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
Войти

0.43 MB

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
Войти

0.42 MB

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
Войти

0.42 MB

4.0.2 Beta 04.07.2022

Mod Menu v4.0.2 for 1.19.1-pre2

Поддерживаемые версии Minecraft
1.19.1-pre2
Загрузчики / Платформы
fabric quilt
Войти

0.42 MB

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
Войти

0.42 MB

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
Войти

0.34 MB

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
Войти

0.29 MB

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
Войти

0.29 MB

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
Войти

0.28 MB

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
Войти

0.28 MB

4.0.0-beta.3 Beta 21.04.2022

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

Поддерживаемые версии Minecraft
22w16b
Загрузчики / Платформы
fabric
Показать изменения
- Updated to 22w16b
Войти

0.28 MB

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
Войти

0.28 MB

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
Войти

0.28 MB

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
Войти

0.26 MB

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
Войти

0.26 MB

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
Войти

0.25 MB

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
Войти

0.25 MB

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
Войти

0.24 MB

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
Войти

0.24 MB

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
Войти

0.25 MB

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
Войти

0.25 MB

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
Войти

0.24 MB

2.1.0 Release 21.09.2021

Mod Menu v2.1.0 for 21w37a

Поддерживаемые версии Minecraft
21w37a 21w38a
Загрузчики / Платформы
fabric
Показать изменения
No Changelog Available
Войти

0.25 MB

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
Войти

0.25 MB

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
Войти

0.24 MB

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
Войти

0.25 MB

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
Войти

0.24 MB

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
Войти

0.24 MB

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
Войти

0.24 MB

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
Войти

0.24 MB

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
Войти

0.24 MB

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
Войти

0.24 MB

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
Войти

0.24 MB

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
Войти

0.24 MB

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
Войти

0.24 MB

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
Войти

0.24 MB

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
Войти

0.24 MB

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
Войти

0.24 MB

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
Войти

0.24 MB

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
Войти

0.23 MB

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
Войти

0.24 MB

1.16.10 Release 20.07.2021

Mod Menu v1.16.10 for 1.16.5

Поддерживаемые версии Minecraft
1.16.5
Загрузчики / Платформы
fabric
Показать изменения
- Added Korean Translation
Войти

0.23 MB

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)
Войти

0.24 MB

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)
Войти

0.24 MB

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
Войти

0.24 MB

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
Войти

0.11 MB

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
Войти

0.24 MB

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
Войти

0.23 MB

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
Войти

0.23 MB

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
Войти

0.23 MB

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)
Войти

0.23 MB

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
Войти

0.11 MB

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
Войти

0.23 MB

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.
Войти

0.22 MB

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
Войти

0.22 MB

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
Войти

0.22 MB

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
Войти

0.22 MB

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
Войти

0.22 MB

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
Войти

0.21 MB

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
Войти

0.21 MB

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
Войти

0.21 MB

1.14.15 Release 23.01.2021

Mod Menu v1.14.15 for 1.16.5

Поддерживаемые версии Minecraft
1.16.5
Загрузчики / Платформы
fabric
Войти

0.14 MB