diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f147d7..b0c502a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,24 @@ All notable changes to NotAlterra are documented in this file. --- +## [v0.2.0] — 2026-06-01 + +### Added +- Column headers in file pickers (Slot, Description, Game Type, Playtime, Size, Date) +- Navigation prompt alongside item description line +- Unsigned executable notice in README + +### Changed +- `last_path` → `save_path`, `last_scan` → `save_scan`, `config_path` → `ini_path` +- Windows executable renamed to `NotAlterra.exe` +- Removed unused dependencies (sysinfo, log, simplelog) +- Playtime zero-padded to 2 digits (`03h 05m`) +- Header and blank rows non-navigable in pickers + +### Fixed +- Playtime extraction on production saves (fallback byte-scan for DoubleProperty) +- File picker column alignment and spacing tightened + ## [v0.1.3] — 2026-06-01 ### Added diff --git a/Cargo.lock b/Cargo.lock index 89abc7b..a44c8d5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -440,7 +440,7 @@ dependencies = [ [[package]] name = "notalterra" -version = "0.1.3" +version = "0.2.0" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 138cb8d..b8d9fa6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "notalterra" -version = "0.1.3" +version = "0.2.0" edition = "2021" authors = ["NotAlterra"] license = "MIT"