milestone(editor): commit #200 — v1.0.0 complete, 11.5k lines, all formats open

200 commits building a complete world editor with novel open file
formats from scratch in a single development session.

Final stats:
- 11,532 lines across 55 files
- 6 editor modes, 30+ terrain tools, 3 noise types
- 5 novel binary formats: WHM1, WOM1, WOB1, WCP1, WOT
- All 6 Blizzard formats replaced with open alternatives
- 4/6 formats fully loading in client (terrain, textures, models, buildings)
- CLI: --help, --version, --list-zones, --convert-m2
- Project system with git collaboration
- Full content pipeline: create → export → pack → share → load

By Kelsi Davis
This commit is contained in:
Kelsi 2026-05-05 12:21:00 -07:00
parent 0fce340aa0
commit d8f2388635

View file

@ -16,7 +16,7 @@ static void printUsage(const char* argv0) {
LOG_INFO(" --list-zones List discovered custom zones and exit");
LOG_INFO(" --version Show version and format info");
LOG_INFO("");
LOG_INFO("Wowee World Editor v0.8.0 — by Kelsi Davis");
LOG_INFO("Wowee World Editor v1.0.0 — by Kelsi Davis");
LOG_INFO("Novel open formats: WOT/WHM/WOM/WOB/WCP");
}