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, andeconomyProviderare 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
itemas the current structured item-source field. Dynamic information, confirmation, and preview slots prefer templateitem,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.
- GUI slots use
- 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.
variablesandea_attributesare separated more strictly: variables are text/placeholder context, while real attribute output should use explicitea_attributes.- Recent cleanup removed
ea_attribute_metalogic; 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/actionsstructure. 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.
- Recipe results now use the unified
- Forge / Gem / Strengthen / Item / Skills
- Forge material effects show only payload fields for the selected effect type.
quality_modifyusestier, andcapacity_bonususesvalue. - 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_skillslist form for skill effects in current examples and documentation.
- Forge material effects show only payload fields for the selected effect type.
Added and expanded
- Attribute
- Configuration directory documentation for
config.yml,attribute_balance.yml,attributes/,damage_types/,conditions/, andlore_formats/. - Scaling curve documentation for
logarithmic,sqrt, andpiecewise_linearrules. - Damage documentation now includes synthetic hit feedback when vanilla damage is intercepted.
- Configuration directory documentation for
- Gem
- Socket opener documentation for
socket_openers, opener items, socket type filtering, and failure feedback. - Inlay success rate documentation for the current
inlay_successstructure. - Gem resonance documentation now covers
min_level,priority,exclusive_group, and the actualeffectsobject structure.
- Socket opener documentation for
- 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_attackbehavior.
- 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.
- Command and permission documentation for
- 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 debugandemakiitem.debug.
- Command documentation includes
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, anddebug. - Current permissions:
emakigem.use,emakigem.reload,emakigem.admin, andemakigem.debug.
- Skills commands
- GUI entry is
/eskills gui. - Old trigger management commands were removed.
/eskills clearslot <player> <slot>is documented.castmodeis documented as/eskills castmode <on|off|toggle>.
- GUI entry is
- 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.
- Juicer collect permission is
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:
| Module | Current default config version |
|---|---|
| EmakiCoreLib | 4.1.0 |
| EmakiAttribute | 4.1.0 |
| EmakiForge | 4.1.0 |
| EmakiStrengthen | 4.1.0 |
| EmakiCooking | 3.1.0 |
| EmakiGem | 2.1.0 |
| EmakiSkills | 2.1.0 |
| EmakiItem | 2.1.0 |
Different version lines reflect separate release cadence, not feature importance.
Recommended reading order
- Read the target module overview page to confirm responsibilities and dependencies.
- Read commands and permissions before configuring permission groups.
- Read configuration directory or core feature pages to understand default files.
- Read feature-specific pages such as socket openers, skill triggers, attribute scaling, forge quality, or cooking stations.
- After editing configuration, verify with the module's reload, inspect, debug, or lint command if available.
- 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_damageand environmental damage mapping fit your server. - Check whether Gem has merged
socket_openers,inlay_success, and globalupgradeconfiguration. - Check whether Skills has merged
actionbar,script_engine, andpassive_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.