Mods
Resource Packs
Data Packs
Modpacks
Shaders
Plugins
Mods Resource Packs Data Packs Plugins Shaders Modpacks
Get Modrinth App Upgrade to Modrinth+
Sign in
ModsPluginsData PacksShadersResource PacksModpacks
Sign in
Settings
Fzzy Config

Fzzy Config

Config API with automatic GUIs, powerful validation options, server-client sync, and more!

4.60M
529
Game Mechanics
Library

Compatibility

Minecraft: Java Edition

24w34a
1.21.x
1.20.4–1.20.6
1.20.1

Platforms

Fabric
Forge
NeoForge
Quilt

Supported environments

Client and server

90% of ad revenue goes to creators

Support creators and Modrinth ad-free with Modrinth+

Links

Report issues View source Visit wiki Join Discord server
Donate on Ko-fi

Creators

fzzyhmstrs
fzzyhmstrs Member

Details

Licensed TDL M
Published last year
Updated last month
DescriptionGalleryChangelogVersions

Show all versions

1
8
9
10
13

fzzy_config-0.5.1+1.21

by fzzyhmstrs on Oct 3, 2024
Download

fzzy_config-0.5.1+1.20.6

by fzzyhmstrs on Oct 3, 2024
Download

fzzy_config-0.5.1+1.20.4

by fzzyhmstrs on Oct 3, 2024
Download

fzzy_config-0.5.1+1.20.1

by fzzyhmstrs on Oct 3, 2024
Download

fzzy_config-0.5.1+1.21+neoforge

by fzzyhmstrs on Oct 3, 2024
Download

fzzy_config-0.5.1+1.20.6+neoforge

by fzzyhmstrs on Oct 3, 2024
Download

Additions

  • Added a decimal format to ValidatedFloat and Double; the values within will now be formatted like #.##, instead of showing the entire fractional part.
  • Added exception if a ValidatedNumber is provided with a min >= max.
  • Added Item, Block, EntityType, and Fluid as types that can be automatically wrapped with validation without having to specify it yourself.

Changes

  • Using @Translation at the config-level will add the option to use the prefix itself as a lang key for the config title.

Fixes

  • Fixed tooltip alert for the RELOAD_RESOURCES action on config-level alerts
  • Fixed @Translation not working for config sections
  • Inherited config classes fully work again
  • Fixed mapped values not instancing themselves properly; which was breaking mapped lists, maps, and other collection views in the GUI.
  • Restore config ordering from alphabetical to declared-order in the TOML outputs. Superclasses will appear after the direct class fields.

fzzy_config-0.5.1+1.20.4+neoforge

by fzzyhmstrs on Oct 3, 2024
Download

Additions

  • Added a decimal format to ValidatedFloat and Double; the values within will now be formatted like #.##, instead of showing the entire fractional part.
  • Added exception if a ValidatedNumber is provided with a min >= max.
  • Added Item, Block, EntityType, and Fluid as types that can be automatically wrapped with validation without having to specify it yourself.

Changes

  • Using @Translation at the config-level will add the option to use the prefix itself as a lang key for the config title.

Fixes

  • Fixed tooltip alert for the RELOAD_RESOURCES action on config-level alerts
  • Fixed @Translation not working for config sections
  • Inherited config classes fully work again
  • Fixed mapped values not instancing themselves properly; which was breaking mapped lists, maps, and other collection views in the GUI.
  • Restore config ordering from alphabetical to declared-order in the TOML outputs. Superclasses will appear after the direct class fields.
  • Fix client kick on trying to update a config in-game

fzzy_config-0.5.1+1.20.1+forge

by fzzyhmstrs on Oct 3, 2024
Download

Additions

  • Added a decimal format to ValidatedFloat and Double; the values within will now be formatted like #.##, instead of showing the entire fractional part.
  • Added exception if a ValidatedNumber is provided with a min >= max.
  • Added Item, Block, EntityType, and Fluid as types that can be automatically wrapped with validation without having to specify it yourself.

Changes

  • Using @Translation at the config-level will add the option to use the prefix itself as a lang key for the config title.

Fixes

  • Fixed tooltip alert for the RELOAD_RESOURCES action on config-level alerts
  • Fixed @Translation not working for config sections
  • Inherited config classes fully work again
  • Fixed mapped values not instancing themselves properly; which was breaking mapped lists, maps, and other collection views in the GUI.
  • Restore config ordering from alphabetical to declared-order in the TOML outputs. Superclasses will appear after the direct class fields.

fzzy_config-0.5.0+24w34a

by fzzyhmstrs on Sep 25, 2024
Download

fzzy_config-0.5.0+1.21

by fzzyhmstrs on Sep 25, 2024
Download

fzzy_config-0.5.0+1.20.6

by fzzyhmstrs on Sep 25, 2024
Download

fzzy_config-0.5.0+1.20.4

by fzzyhmstrs on Sep 25, 2024
Download

fzzy_config-0.5.0+1.20.1

by fzzyhmstrs on Sep 25, 2024
Download

fzzy_config-0.5.0+1.21+neoforge

by fzzyhmstrs on Sep 25, 2024
Download

fzzy_config-0.5.0+1.20.6+neoforge

by fzzyhmstrs on Sep 25, 2024
Download

fzzy_config-0.5.0+1.20.4+neoforge

by fzzyhmstrs on Sep 25, 2024
Download

fzzy_config-0.5.0+1.20.1+forge

by fzzyhmstrs on Sep 25, 2024
Download

Additions

  • Added ValidatedField mapping. Validation can be mapped to validation of any other convertible type with the new map methods.
    • New helper class ValidatedRegistryType maps ValidatedIdentifier to registry objects, allowing for easy direct implmentation of setting based on registry objects (Items, Blocks, etc) without having to later map the identifiers yourself.
  • ValidatedField now has a helper codec method for generating a Codec of the underlying type.
  • ValidatedField now has a listener system that triggers on any set of the field. This listener is a Consumer<ValidatedField<T>> and is added with withListener
  • Added EventApi and corresponding direct implementations in the Config class
    • like other sub-apis, access this Api through the ConfigApi
    • onSyncClient - fires when a config is synced to a client
    • onUpdateClient - fires when a config is updated in-game on the client side
    • onUpdateServer - fires when a config is updated in-game on the server side
  • Added ConfigAction, which can be used to add arbitrary on-click buttons in the Config GUI. Use them to link to your wiki, open a patchouli guide book, give the player an item, etc.
  • Added extremely basic PlatformApi for simple cross-loader tasks like checking if the game state is client-sided or not.

Changes

  • Specialized widgets no longer internally extend PressableWidget or ButtonWidget, which was causing issues with Visual Overhaul or any other mod that leaks the constructor of the widget. It is recommended to use the Custom variants of those classes for any custom validation implementation.

Fixes

  • ValidatedIdentifier can now bind to dynamic registries using the ofRegistryKey initializer methods.
  • Fix syncing on login not working.
  • Fixed updates on client-only configs sometimes blasting the log with the full config contents.

fzzy_config-0.4.3+24w34a

by fzzyhmstrs on Sep 14, 2024
Download

fzzy_config-0.4.3+1.21

by fzzyhmstrs on Sep 14, 2024
Download

fzzy_config-0.4.3+1.20.6

by fzzyhmstrs on Sep 14, 2024
Download
1
8
9
10
13

Modrinth is open source.

main@4bafae8

© Rinth, Inc.

Company

TermsPrivacyRulesCareers

Resources

SupportBlogDocsStatus

Interact

Discord X (Twitter) Mastodon Crowdin
Get Modrinth App Settings
NOT AN OFFICIAL MINECRAFT SERVICE. NOT APPROVED BY OR ASSOCIATED WITH MOJANG OR MICROSOFT.