Skip to content

Changelog Notes

This page explains the current documentation sync focus and provides an upgrade checklist. For complete release information, also check the root release-notes.md, module CHANGELOG.md files, default configuration files, and the release package you are using.

Current documentation sync focus

This documentation line has been rechecked against the current source tree for commands, permissions, configuration directories, and major runtime capabilities. It also reflects the most important behavior and configuration changes from the latest 20 commits.

Latest 20-commit sync focus

  • Platform and scheduling
    • Plugin descriptors now declare Folia support. CoreLib provides the Folia scheduler adapter, and business modules route delayed tasks, async work, GUI return-to-main-thread refreshes, and display refreshes through unified scheduling entry points.
    • Requirements now mention the current Folia support declaration in addition to Spigot/Bukkit 1.21+.
  • Web Console
    • The structured editor now includes a variable-map editor, changed-path tracking, and highlighted changed fields before saving.
    • actions, effects, and economyProvider are unified CoreLib field types. Modules should not implement separate effect-list editors or text/enum economy provider fields for the same use cases.
    • The workspace tree supports folder nodes and lazy-loaded glob child files for directories such as recipes, gui, items, and skills.
  • GUI and item presentation
    • GUI slots use item as the current structured item-source field. Dynamic information, confirmation, and preview slots prefer template item, display_name, lore, and component settings.
    • EmakiGem inlay/open/upgrade GUIs no longer auto-fill the target item from the player's main hand or inventory when opened. Players must place target equipment and materials manually.
    • EmakiSkills skill panels, trigger selection, and EmakiStrengthen preview/confirmation dynamic slots now follow the same template-first GUI rule.
  • Attributes and PDC
    • Attribute supports ranged random values. Lore/PDC parsing can represent percentage and integer ranges, and snapshots keep minimum, maximum, and resolved values for ranged contributions.
    • variables and ea_attributes are separated more strictly: variables are text/placeholder context, while real attribute output should use explicit ea_attributes.
    • Recent cleanup removed ea_attribute_meta logic; materials, gems, items, and strengthen configs should not rely on it as the current attribute metadata entry.
  • Cooking recipes
    • Recipe results now use the unified result.<branch>.outputs/actions structure. Success, early, over, undercooked, overcooked, and invalid branches follow the same model.
    • Recipe completion conditions were added, and station interaction keys were adjusted to the current source behavior.
    • Station floating text, display backend, and refresh configuration are part of the current configuration line.
  • Forge / Gem / Strengthen / Item / Skills
    • Forge material effects show only payload fields for the selected effect type. quality_modify uses tier, and capacity_bonus uses value.
    • Gem items are refreshed from the current gem definition when obtained, after reloads, and when reconstructed inside GUIs.
    • Skills, Strengthen, Forge, Gem, and Item use the es_skills list form for skill effects in current examples and documentation.

Added and expanded

  • Attribute
    • Configuration directory documentation for config.yml, attribute_balance.yml, attributes/, damage_types/, conditions/, and lore_formats/.
    • Scaling curve documentation for logarithmic, sqrt, and piecewise_linear rules.
    • Damage documentation now includes synthetic hit feedback when vanilla damage is intercepted.
  • Gem
    • Socket opener documentation for socket_openers, opener items, socket type filtering, and failure feedback.
    • Inlay success rate documentation for the current inlay_success structure.
    • Gem resonance documentation now covers min_level, priority, exclusive_group, and the actual effects object structure.
  • Skills
    • Action bar documentation for templates, update interval, and cast mode display.
    • Script engine limits, including per-phase action count and per-action target limits.
    • Passive trigger settings and combo_attack behavior.
  • Cooking
    • Command and permission documentation for /ec debug, oven, juicer, and fermentation barrel permissions.
    • Station documentation for display entities, display distance, refresh interval, wok animation, and scald damage.
  • Forge
    • Forge history documentation for audit records, auto-save, and troubleshooting.
    • Quality documentation keeps quality pools, guarantee counters, quality item metadata, and deterministic algorithm notes.
  • Strengthen
    • Branch tree documentation for branch recipe files and transfer design notes.
  • Item
    • Command documentation includes /ei debug and emakiitem.debug.

Removed or corrected

  • Gem commands
    • Removed old admin entries that are not in the current command router.
    • Current command set: /emakigem gui <inlay|open|upgrade>, reload, inspect, clearstate, and debug.
    • Current permissions: emakigem.use, emakigem.reload, emakigem.admin, and emakigem.debug.
  • Skills commands
    • GUI entry is /eskills gui.
    • Old trigger management commands were removed.
    • /eskills clearslot <player> <slot> is documented.
    • castmode is documented as /eskills castmode <on|off|toggle>.
  • Cooking permissions
    • Juicer collect permission is emakicooking.station.juicer.collect.
    • Fermentation barrel start permission is emakicooking.station.fermentation_barrel.start.
    • Station permissions use the emakicooking.station.* form.

Module version lines

The current source tree does not use one single version number for every module. Prefer each module's src/main/resources/config.yml and pom.xml when upgrading:

ModuleCurrent default config version
EmakiCoreLib4.1.0
EmakiAttribute4.1.0
EmakiForge4.1.0
EmakiStrengthen4.1.0
EmakiCooking3.1.0
EmakiGem2.1.0
EmakiSkills2.1.0
EmakiItem2.1.0

Different version lines reflect separate release cadence, not feature importance.

  1. Read the target module overview page to confirm responsibilities and dependencies.
  2. Read commands and permissions before configuring permission groups.
  3. Read configuration directory or core feature pages to understand default files.
  4. Read feature-specific pages such as socket openers, skill triggers, attribute scaling, forge quality, or cooking stations.
  5. After editing configuration, verify with the module's reload, inspect, debug, or lint command if available.
  6. Before upgrading a live server, test with real equipment and player data on a staging server.

Upgrade checklist

  • Back up all plugins/Emaki*/ configuration directories.
  • Back up player data, equipment data, Cooking station data, and economy data.
  • Do not blindly overwrite old configuration files; compare defaults and merge new fields manually.
  • Check whether commands and permission nodes match the current documentation.
  • Check whether Attribute hard_lock_damage and environmental damage mapping fit your server.
  • Check whether Gem has merged socket_openers, inlay_success, and global upgrade configuration.
  • Check whether Skills has merged actionbar, script_engine, and passive_trigger_settings.
  • Check whether Cooking has merged oven, juicer, fermentation barrel station settings, GUI files, and permissions.
  • Check whether Forge quality, history, and condition failure strategies match your gameplay.
  • Check whether Item auto-update and repair configuration affect old items.