From 596e9c6910c7d64124d1956927cf54f0d90af791 Mon Sep 17 00:00:00 2001 From: black-sliver <> Date: Sun, 25 Apr 2021 11:30:49 +0200 Subject: [PATCH] prepare release v0.14.2 --- CHANGELOG.md | 6 ++++++ src/poptracker.h | 2 +- src/uilib/colorhelper.h | 1 + src/uilib/imagefilter.cpp | 1 + 4 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b57760c3..92aaae97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # PopTracker Changelog +## v0.14.2 + +* Pack Features + * work around bug in IoGR's logic with random starting location + * added `composite_toggle` item type + ## v0.14.1 * Fixes diff --git a/src/poptracker.h b/src/poptracker.h index 4e92b255..8c74e0e7 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.14.1"; + static constexpr const char VERSION_STRING[] = "0.14.2"; protected: virtual bool start(); diff --git a/src/uilib/colorhelper.h b/src/uilib/colorhelper.h index 4a0eb8bb..2a8890ea 100644 --- a/src/uilib/colorhelper.h +++ b/src/uilib/colorhelper.h @@ -2,6 +2,7 @@ #define _UILIB_COLORHELPER_H #include +#include #include #include diff --git a/src/uilib/imagefilter.cpp b/src/uilib/imagefilter.cpp index 89b2c9d9..28b2faa2 100644 --- a/src/uilib/imagefilter.cpp +++ b/src/uilib/imagefilter.cpp @@ -1,5 +1,6 @@ #include "imagefilter.h" #include "colorhelper.h" +#include namespace Ui {