From 445db8aa60903857ba3fd475386c284ac93072ff Mon Sep 17 00:00:00 2001 From: black-sliver <59490463+black-sliver@users.noreply.github.com> Date: Thu, 9 May 2024 14:46:45 +0200 Subject: [PATCH] bump version to 0.26.0, update CHANGELOG --- CHANGELOG.md | 20 ++++++++++++++++++++ src/version.h | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ceda138..8d1e1fb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # PopTracker Changelog +## v0.26.1 + +* App Features + * Properly detect visibility and fix window position on start + * Save and restore window size when loading a pack + * AP: detect common copy & paste mistakes in server:port +* Pack Features + * Don't warn for empty (`[]`) rules + * Switch DEBUG to flags and initialize DEBUG from config's "debug" + * default to none (`nil`) + * disabling FPS logging by default + * see docs/PACKS.md for more info +* Dev Features + * Add unit testing framework + * Fix building on M1 +* Fixes + * Fix rules not working correctly for renamed duplicate locations + * Fix ':' breaking '@' and '^' rules + * Fix build on M1 with homebrew + ## v0.26.0 * App Features diff --git a/src/version.h b/src/version.h index 14e49ce4..edd7b306 100644 --- a/src/version.h +++ b/src/version.h @@ -3,7 +3,7 @@ #define APP_VERSION_MAJOR 0 #define APP_VERSION_MINOR 26 -#define APP_VERSION_REVISION 0 +#define APP_VERSION_REVISION 1 #ifndef XSTR #define XSTR(s) STR(s)