MoonWell Launcher
MoonWell Launcher is the desktop launcher for MoonWell, a private World of Warcraft: Wrath of the Lich King server focused on a player-friendly experience without excessive grind and with stronger social play.
The launcher is responsible for:
- logging in to a player's MoonWell account
- downloading and synchronizing client files
- displaying launcher news
- launching the game client
Stack
- Flutter desktop
- Dart
flutter_blocfor launcher UI stateget_itandinjectablefor dependency injectiondiofor Web API and file download requestsflutter_secure_storagefor launcher sessionsshared_preferencesfor non-sensitive launcher preferences
Prerequisites
Install FVM. The repository .fvmrc tracks the latest stable Flutter channel,
and all Dart and Flutter commands are run through FVM.
fvm flutter pub get
Verify the configured SDK with fvm flutter --version.
Configuration
Set the launcher Web API base URL at compile time:
--dart-define=MOONWELL_API_BASE_URL=https://host
Set the public AppCast feed URL to enable Windows launcher self-updates:
--dart-define=MOONWELL_APPCAST_URL=https://host/launcher/updates/appcast.xml
The updater is disabled when MOONWELL_APPCAST_URL is omitted. Production
feeds must use HTTPS.
Example run command:
fvm flutter run -d windows --dart-define=MOONWELL_API_BASE_URL=https://host --dart-define=MOONWELL_APPCAST_URL=https://host/launcher/updates/appcast.xml
Development
Run the component catalog from its standalone workspace:
cd widgetbook
fvm dart run build_runner build
fvm flutter run -d windows
See docs/widgetbook.md for the required use-case naming, knobs, callback,
asset, and coverage conventions.
Regenerate dependency injection after changing injectable services:
fvm dart run build_runner build --delete-conflicting-outputs
Run static analysis:
fvm flutter analyze
See docs/linting.md for the full format, analyze, test, and Lefthook
pre-commit workflow.
Build the Windows launcher:
fvm flutter build windows --dart-define=MOONWELL_API_BASE_URL=https://host --dart-define=MOONWELL_APPCAST_URL=https://host/launcher/updates/appcast.xml
The Inno Setup installer script lives at installer/moonwell_launcher.iss.
See docs/launcher_self_update.md for the AppCast format, signing keys, and
manual release procedure.
Architecture
The UI lives in lib/app. Presentation-only design-system components live in
lib/app/design_system and are catalogued by the standalone widgetbook/
workspace before they are integrated into production screens.
Launcher domain models, sync use cases, API clients, installation services, and
preferences live under lib/features.
The launcher sync flow is manifest-based:
- authenticate against the MoonWell Web API
- fetch the client manifest
- scan the selected installation directory
- compare local files to the manifest
- remove stale files outside ignored directories
- download missing or changed files to temporary part files
- verify size and SHA-256 before replacing client files
- launch
Wow.exefrom the selected client directory
See docs/launcher_web_api_spec.md for the API and sync contract.
Documentation
AGENTS.md: architecture, commands, and repository rules for contributorsTODO.md: remaining verification and maintenance tasksdocs/linting.md: format, analyze, test, and Lefthook workflowdocs/project_review.md: project review with strengths, weaknesses, and upgrade feasibility notesdocs/launcher_web_api_spec.md: current launcher Web API and sync behaviordocs/launcher_self_update.md: Windows self-update and release operationsdocs/widgetbook.md: Widgetbook use-case generation and catalog conventions