From 5df5c64e4f9c15eb7dbb0f99f1c1b7d2ead10560 Mon Sep 17 00:00:00 2001 From: slawkens Date: Tue, 26 Nov 2024 18:34:51 +0100 Subject: [PATCH] Update to v0.8.20 --- CHANGELOG.md | 22 ++++++++++++++++++++++ common.php | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a2a031b73..44117a7e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [0.8.20 - 26.11.2024] + +Small fix regarding the latest release and the linux system. + +Download this one, instead of the 0.8.19 if you are using linux. + +If you are using 0.8.19, make this update: + +The fix is to make this change in the system/libs/hooks.php + +Change +``` +require_once LIBS . 'src/plugins.php'; +``` + +Into: +``` +require_once LIBS . 'src/Plugins.php'; +``` + +Yeah, we just changed 'p' to 'P' - that's just case-sensitive nature of linux. + ## [0.8.19 - 19.11.2024] ### Added diff --git a/common.php b/common.php index a852a6de5..6014e0ee6 100644 --- a/common.php +++ b/common.php @@ -26,7 +26,7 @@ if (version_compare(phpversion(), '7.2.5', '<')) die('PHP version 7.2.5 or higher is required.'); define('MYAAC', true); -define('MYAAC_VERSION', '0.8.20-dev'); +define('MYAAC_VERSION', '0.8.20'); define('DATABASE_VERSION', 33); define('TABLE_PREFIX', 'myaac_'); define('START_TIME', microtime(true));