From b542b140c6372e5a50be1ac016014bc8eda9de20 Mon Sep 17 00:00:00 2001 From: Michael Kaufmann Date: Fri, 22 Dec 2023 14:33:11 +0100 Subject: [PATCH] set version to 2.1.3 for bugfix release Signed-off-by: Michael Kaufmann --- install/froxlor.sql.php | 2 +- install/updates/froxlor/update_2.1.inc.php | 5 +++++ lib/Froxlor/Froxlor.php | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/install/froxlor.sql.php b/install/froxlor.sql.php index 9816747a..2ed6b534 100644 --- a/install/froxlor.sql.php +++ b/install/froxlor.sql.php @@ -726,7 +726,7 @@ opcache.validate_timestamps'), ('panel', 'logo_overridecustom', '0'), ('panel', 'settings_mode', '0'), ('panel', 'menu_collapsed', '1'), - ('panel', 'version', '2.1.2'), + ('panel', 'version', '2.1.3'), ('panel', 'db_version', '202312120'); diff --git a/install/updates/froxlor/update_2.1.inc.php b/install/updates/froxlor/update_2.1.inc.php index 914533af..8d5f3b7f 100644 --- a/install/updates/froxlor/update_2.1.inc.php +++ b/install/updates/froxlor/update_2.1.inc.php @@ -269,3 +269,8 @@ if (Froxlor::isFroxlorVersion('2.1.1')) { Update::showUpdateStep("Updating from 2.1.1 to 2.1.2", false); Froxlor::updateToVersion('2.1.2'); } + +if (Froxlor::isFroxlorVersion('2.1.2')) { + Update::showUpdateStep("Updating from 2.1.2 to 2.1.3", false); + Froxlor::updateToVersion('2.1.3'); +} diff --git a/lib/Froxlor/Froxlor.php b/lib/Froxlor/Froxlor.php index da33b130..afc45568 100644 --- a/lib/Froxlor/Froxlor.php +++ b/lib/Froxlor/Froxlor.php @@ -31,7 +31,7 @@ final class Froxlor { // Main version variable - const VERSION = '2.1.2'; + const VERSION = '2.1.3'; // Database version (YYYYMMDDC where C is a daily counter) const DBVERSION = '202312120';