From d8f2388635b7d04cf437689e7db2f38d662b8ad6 Mon Sep 17 00:00:00 2001 From: Kelsi Date: Tue, 5 May 2026 12:21:00 -0700 Subject: [PATCH] =?UTF-8?q?milestone(editor):=20commit=20#200=20=E2=80=94?= =?UTF-8?q?=20v1.0.0=20complete,=2011.5k=20lines,=20all=20formats=20open?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- tools/editor/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/editor/main.cpp b/tools/editor/main.cpp index d223fac1..43b058ec 100644 --- a/tools/editor/main.cpp +++ b/tools/editor/main.cpp @@ -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"); }