From 14fd92afdba5b8b35acb583c157d0aedb84b6c38 Mon Sep 17 00:00:00 2001 From: black-sliver <59490463+black-sliver@users.noreply.github.com> Date: Tue, 8 Mar 2022 23:01:25 +0100 Subject: [PATCH] bump version to 0.20.1, update CHANGELOG + README --- CHANGELOG.md | 13 +++++++++++++ README.md | 4 +--- doc/AUTOTRACKING.md | 2 +- src/poptracker.h | 2 +- 4 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ca551a7..c3447650 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # PopTracker Changelog +## v0.20.1 + +* Fixes + * Fix "AT" button sometimes being invisible + * Re-add memory watches when toggling "AT" + * Change background fill to cover margin + * Fix wrong min/max size of groups +* Pack Features + * Allow case mismatch of codes in layout json +* App Features + * Allow multiple auto-tracking back-ends at the same time + * Clear all checks in a location with right mouse button + ## v0.20.0 * Fixes diff --git a/README.md b/README.md index 09aa7ce7..4d18c039 100644 --- a/README.md +++ b/README.md @@ -65,15 +65,13 @@ We do not allow direct access to process memory or sockets from Lua. Instead ### Archipelago Multiworld [Archipelago](https://archipelago.gg) allows connecting to a Multiworld as a -tracker. An Archipelago client is included. Click on the grey "AT" to connect to -a server if the pack supports it. +tracker. Click on the grey "AP" to connect to a server if the pack supports it. See [doc/AUTOTRACKING.md](./doc/AUTOTRACKING.md) for more details. ### Other systems No work has been done for other systems yet. ## Version Numbering - * Major update (X.0.0) may break everything * Minor update (0.X.0) may change render output (i.e. window captures break) * Revisions (0.0.X) should only fix bugs and add non-breaking features diff --git a/doc/AUTOTRACKING.md b/doc/AUTOTRACKING.md index 071022c2..e66e4ff5 100644 --- a/doc/AUTOTRACKING.md +++ b/doc/AUTOTRACKING.md @@ -126,7 +126,7 @@ See [examples/uat-example](../examples/uat-example) for a full example. This is fully callback-driven. Archipelago auto-tracking is enabled by adding "ap" to a variant's flags in -manifest.json and clicking on "AT" when the pack is loaded. +manifest.json and clicking on "AP" in the menu when the pack is loaded. * when connection to a server is established, Clear handlers are called so the Lua script can clear all locations and items. diff --git a/src/poptracker.h b/src/poptracker.h index a4ebd1a1..330545b9 100644 --- a/src/poptracker.h +++ b/src/poptracker.h @@ -65,7 +65,7 @@ class PopTracker final : public App { virtual ~PopTracker(); static constexpr const char APPNAME[] = "PopTracker"; - static constexpr const char VERSION_STRING[] = "0.20.0"; + static constexpr const char VERSION_STRING[] = "0.20.1"; static constexpr int AUTOSAVE_INTERVAL = 60; // 1 minute protected: