From 50d649dbde70ac20687dc6292573a9937756f830 Mon Sep 17 00:00:00 2001 From: slawkens Date: Fri, 4 Apr 2025 21:25:19 +0200 Subject: [PATCH] Release v1.3.3 --- CHANGELOG-1.x.md | 11 +++++++++++ common.php | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG-1.x.md b/CHANGELOG-1.x.md index e77c30f1..473bc51b 100644 --- a/CHANGELOG-1.x.md +++ b/CHANGELOG-1.x.md @@ -1,5 +1,16 @@ # Changelog +## [1.3.3 - 04.04.2025] + +### Fixed +* Fix uninstall plugin when plugin is disabled (https://github.com/slawkens/myaac/commit/6c568fd36a271270684fc412ccd556b230273a6d) + +### Changed +* Display more useful info when error parsing config.lua (https://github.com/slawkens/myaac/commit/fa6b6aa153ffc131e0d1631a4dcd9012a5850c2e) + +### Other +* Small adjustments (https://github.com/slawkens/myaac/commit/35e2483de86e295bdf089cceffa25842eeb2e34c, https://github.com/slawkens/myaac/commit/ae639d65b0bfa491e747e907e2ebc77f83f47981) + ## [1.3.2 - 01.04.2025] ### Fixed diff --git a/common.php b/common.php index 592ce964..4c6346fe 100644 --- a/common.php +++ b/common.php @@ -26,7 +26,7 @@ if (version_compare(phpversion(), '8.1', '<')) die('PHP version 8.1 or higher is required.'); const MYAAC = true; -const MYAAC_VERSION = '1.3.3-dev'; +const MYAAC_VERSION = '1.3.3'; const DATABASE_VERSION = 43; const TABLE_PREFIX = 'myaac_'; define('START_TIME', microtime(true));