diff --git a/CHANGELOG.md b/CHANGELOG.md index bd50ae54..4ca551a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,32 @@ # PopTracker Changelog +## v0.20.0 + +* Fixes + * Detect access/visibility rule recursion + * Fix order of events for Archipelago auto-tracking + * Make consumable decrement step default to increment step +* App Features + * Automatically switch between horizontal and vertical layout + * Limit maximum min window size based on screen size + * Limit window size to 96x96 - 8kx4k + * Add drag&drop support for packs and saves into the main window + * Add option to set usb2snes ip/host to PopTracker.json +* Pack Features + * Add support for more legacy packs + * Add support for `margin` + * Add partial support for `h_alignment` in item grids + * Add `item_h_alignment` + * Allow rules to be arrays instead of comma separated strings + * Allow most integers to be in quotes in json + ## v0.19.0 * Fixes * Fix modifying watches from watch callbacks * Fix vertical strech of some widgets * Fix/ignore composite toggles with bad left/right - * Fix what codes a composite toggles provides + * Fix what codes composite toggles provide * Fix setting progressive with allow_disabled from Lua * Change progressive with allow_disabled to what people expect * App Features diff --git a/README.md b/README.md index 33fc0d40..09aa7ce7 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ See [BUILD.md](BUILD.md). *more to be tested* Join the [Community Discord](https://discord.com/invite/gwThqMCPgK) to find pack -repositories and get updates. +repositories, follow updates and get support. ## Auto-tracking ### SNES Games diff --git a/src/poptracker.h b/src/poptracker.h index da741118..8f75fe93 100644 --- a/src/poptracker.h +++ b/src/poptracker.h @@ -64,7 +64,7 @@ class PopTracker final : public App { virtual ~PopTracker(); static constexpr const char APPNAME[] = "PopTracker"; - static constexpr const char VERSION_STRING[] = "0.19.0"; + static constexpr const char VERSION_STRING[] = "0.20.0"; static constexpr int AUTOSAVE_INTERVAL = 60; // 1 minute protected: