From 18bfe2607ac86974479d7014e19cff2e0175c3eb Mon Sep 17 00:00:00 2001 From: black-sliver <> Date: Sat, 24 Apr 2021 21:36:59 +0200 Subject: [PATCH] prepare release v0.14.0 --- CHANGELOG.md | 17 +++++++++++++++++ src/poptracker.h | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7128c71..6322ecb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # PopTracker Changelog +## v0.14.0 + +* App Features + * Accept mouse clicks when window is not focused + * Add support for zipped packs (no need to unpack anymore) + * Auto-save should now always work + * More debug output +* Pack Features + * arguments to lua access rules + * `JsonItem.MaxCount` now readable and writable + * dummy `LocationSection.CapturedItem` to allow packs to load + * Make items' pink background transparent +* Fixes + * don't let SNES auto-tracking block unloading packs + * fix bug in creating (auto-save) directories + * fix a memory leak when creating directories + ## v0.12.1 * Fixes diff --git a/src/poptracker.h b/src/poptracker.h index c127a4c9..06690fd6 100644 --- a/src/poptracker.h +++ b/src/poptracker.h @@ -47,7 +47,7 @@ class PopTracker final : public App { virtual ~PopTracker(); static constexpr const char APPNAME[] = "PopTracker"; - static constexpr const char VERSION_STRING[] = "0.12.1"; + static constexpr const char VERSION_STRING[] = "0.14.0"; protected: virtual bool start();