Skip to content

Latest commit

 

History

History
63 lines (44 loc) · 3.48 KB

File metadata and controls

63 lines (44 loc) · 3.48 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[0.0.7] - 2026-08-15

Fixed

  • WorkManager Proguard Keep Rules: Added explicit R8/Proguard rules for androidx.work.** and androidx.room.** to prevent startup crash (Failed to create an instance of class androidx.work.impl.WorkDatabase) in release builds with code minification enabled.

[0.0.6] - 2026-08-15

Added

  • Passive Background Icon Sync: Added LunarSyncWorker via Android WorkManager (scheduled every 6 hours / 4x daily) to calculate current moon phase from the WASM brain and update the launcher app icon automatically without requiring manual app launch.
  • Application Startup Enqueue: Added MoonPhaseApplication to arm background periodic sync automatically on process start.

[0.0.5] - 2026-05-29

Changed

  • Package Renaming: Renamed app package and application ID to com.urmanac.moonphase to reflect domain ownership.
  • SDK Upgrade: Upgraded target and compile SDK to API level 35 to meet Google Play Store requirements.
  • R8 Minification: Enabled code/resource minification for release builds (with obfuscation disabled via Proguard/R8 rules).

[0.0.4] - 2026-05-16

Fixed

  • New Moon Icon: Fixed the default app icon (used for New Moon) which was incorrectly showing a Full Moon.

[0.0.3] - 2026-05-11

Fixed

  • App Icon Swap: Fixed a critical race condition where the app was killed before it could finish disabling old activity aliases, leading to the default icon persisting indefinitely.
  • Icon Refresh: Improved cleanup logic to ensure only one icon alias is active at a time.

[0.0.2] - 2026-05-11

Fixed

  • Moon Graphics: Corrected drawing logic for waning phases in the UI. Waning crescents and gibbouses now display their correct concave/convex curves.
  • App Icon Shapes: Fixed inverted sweep flags in vector drawables that caused crescents to appear as gibbouses.
  • First-Run Exit: Resolved an issue where the app would quit immediately on the first run. Dynamic icon swapping is now deferred until the application is moved to the background (onStop), preventing the system from killing the active foreground process.
  • App Icon Visibility: Enhanced all moon icons with crater details and set the default app icon to a detailed Full Moon for better visibility in system settings and the app drawer.

[0.0.1] - 2026-05-10

Added

  • Moon Oracle App: Initial release of the Android client.
  • Zero-Split-Brain Architecture: Ported lunar math to a Rust WASM core for cross-platform consistency.
  • Phased Icon System: The app icon now updates dynamically to reflect the current moon phase.
  • Lunar Visualization: Custom MoonView in Jetpack Compose with crater textures and spherical shadow rendering.
  • The Oracle Brain: A no_std Rust library for precise moon phase and "Torment Multiplier" calculations.
  • WASM Integration: Embedded WASM execution on Android via the Chicory interpreter.
  • CI/CD: Initial GitHub Actions workflow for building the WASM brain and Android APK.

Changed

  • Renamed project from "Moon Phase" to Moon Oracle.
  • Updated documentation to reflect the Oracle's role within the broader ecosystem.

Fixed

  • UI text clipping in the Torment Gauge.
  • Improved terminator line math for more realistic lunar crescents.