set valid version

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2022-04-01 10:32:39 +02:00
parent 5f0429ef77
commit eacf383928
3 changed files with 5 additions and 5 deletions

View File

@@ -723,7 +723,7 @@ opcache.validate_timestamps'),
('panel', 'logo_image_login', ''),
('panel', 'logo_overridetheme', '0'),
('panel', 'logo_overridecustom', '0'),
('panel', 'version', '0.11.0-dev'),
('panel', 'version', '0.11.0-dev1'),
('panel', 'db_version', '202112310');

View File

@@ -26,7 +26,7 @@ if (!defined('_CRON_UPDATE')) {
// last 0.10.x release
if (\Froxlor\Froxlor::isFroxlorVersion('0.10.99')) {
showUpdateStep("Updating from 0.10.99 to 0.11.0-dev", false);
showUpdateStep("Updating from 0.10.99 to 0.11.0-dev1", false);
showUpdateStep("Removing unused table");
Database::query("DROP TABLE IF EXISTS `panel_sessions`;");
@@ -67,7 +67,7 @@ if (\Froxlor\Froxlor::isFroxlorVersion('0.10.99')) {
}
if (\Froxlor\Froxlor::isFroxlorVersion('0.10.99')) {
showUpdateStep("Updating from 0.10.99 to 0.11.0-dev", false);
\Froxlor\Froxlor::updateToVersion('0.11.0-dev');
showUpdateStep("Updating from 0.10.99 to 0.11.0-dev1", false);
\Froxlor\Froxlor::updateToVersion('0.11.0-dev1');
}
}

View File

@@ -7,7 +7,7 @@ final class Froxlor
{
// Main version variable
const VERSION = '0.11.0-dev';
const VERSION = '0.11.0-dev1';
// Database version (YYYYMMDDC where C is a daily counter)
const DBVERSION = '202112310';