Replaces the cramped two-row button strip with a proper sidebar layout:
Character Markdown Catalog Scrolls Tools
- All - MD Gear - Skills - Scan - Reload UI
- Talents - MD Enchants - Talents - Status - Debug
- Gear - MD Full - All - Help
- Enchants
Section headers in gold; full-width buttons stacked vertically.
The new "Reload UI" button calls ReloadUI() so guildies can flush a
catalog dump to disk without leaving the export window. Debug and Help
buttons route through SlashCmdList["COAE"] so the UI and slash share
one code path.
Frame is 720x500 (was 700x520); the right-side copy-out edit box keeps
its existing CoaExporter_ShowExportFrame() entry point so Core.lua is
unchanged.
Folds three previously-separate Lua addons into one for guild-member use:
- ascension-char-exporter (per-character JSON/Wiki.js Markdown via /ascx)
- CoA_SkillExporter (skills/dispels/passives catalog via /skilldump)
- CoA_TalentExporter (talent-tree catalog via /talentdumpall)
The two CoA catalog dumpers were ~90% identical entry-walkers. Pulled the
shared C_CharacterAdvancement.GetAllEntries() loop into Catalogs/Common.lua
and have Skills.lua / Talents.lua register collectors that share a single
scan pass (so /coae catalog all walks the entry list once, not twice).
Per-character collectors (Talents, Gear, Enchants, MysticScrolls,
MysticScrollProbe) and the AtlasLootAscension-derived ScrollCatalog data
are kept verbatim, just rebranded.
Slash interface:
/coae export {all|talents|gear|enchants|mdgear|mdenchants|md}
/coae catalog {all|skills|talents|dispels [class]|passives [class]|status}
/coae scrolls {scan|export|reset|status}
/coae sv on|off | debug | help
Aliases: /coaexp, /ascx, /asxc, plus legacy /skilldump /talentdumpall
/dispels /passives that map to the catalog subcommands.
SavedVariables: CoaExporterSaved, CoaExporterConfig, CoaExporterScrollCache,
CoaExporterCatalog (skills/dispels/levelPassives/talents/_meta).