Skip to content

Commit

Permalink
bump version to 0.20.1, update CHANGELOG + README
Browse files Browse the repository at this point in the history
  • Loading branch information
black-sliver committed Mar 8, 2022
1 parent b3dc250 commit 14fd92a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion doc/AUTOTRACKING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/poptracker.h
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 14fd92a

Please sign in to comment.