set development version to 0.11.0-dev
Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
@@ -723,7 +723,7 @@ opcache.validate_timestamps'),
|
|||||||
('panel', 'logo_image_login', ''),
|
('panel', 'logo_image_login', ''),
|
||||||
('panel', 'logo_overridetheme', '0'),
|
('panel', 'logo_overridetheme', '0'),
|
||||||
('panel', 'logo_overridecustom', '0'),
|
('panel', 'logo_overridecustom', '0'),
|
||||||
('panel', 'version', '0.10.33'),
|
('panel', 'version', '0.11.0-dev'),
|
||||||
('panel', 'db_version', '202112310');
|
('panel', 'db_version', '202112310');
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -970,3 +970,8 @@ if (\Froxlor\Froxlor::isFroxlorVersion('0.10.32')) {
|
|||||||
showUpdateStep("Updating from 0.10.32 to 0.10.33", false);
|
showUpdateStep("Updating from 0.10.32 to 0.10.33", false);
|
||||||
\Froxlor\Froxlor::updateToVersion('0.10.33');
|
\Froxlor\Froxlor::updateToVersion('0.10.33');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (\Froxlor\Froxlor::isFroxlorVersion('0.10.33')) {
|
||||||
|
showUpdateStep("Updating from 0.10.33 to 0.10.34", false);
|
||||||
|
\Froxlor\Froxlor::updateToVersion('0.10.34');
|
||||||
|
}
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ if (!defined('_CRON_UPDATE')) {
|
|||||||
|
|
||||||
// last 0.10.x release
|
// last 0.10.x release
|
||||||
if (\Froxlor\Froxlor::isFroxlorVersion('0.10.99')) {
|
if (\Froxlor\Froxlor::isFroxlorVersion('0.10.99')) {
|
||||||
showUpdateStep("Updating from 0.10.99 to 0.11.0-rc1", false);
|
showUpdateStep("Updating from 0.10.99 to 0.11.0-dev", false);
|
||||||
|
|
||||||
showUpdateStep("Removing unused table");
|
showUpdateStep("Removing unused table");
|
||||||
Database::query("DROP TABLE IF EXISTS `panel_sessions`;");
|
Database::query("DROP TABLE IF EXISTS `panel_sessions`;");
|
||||||
@@ -65,4 +65,9 @@ if (\Froxlor\Froxlor::isFroxlorVersion('0.10.99')) {
|
|||||||
lastStepStatus(1, 'manual commands needed', 'Please run the following commands manually:<br><pre>' . $del_list . '</pre>');
|
lastStepStatus(1, 'manual commands needed', 'Please run the following commands manually:<br><pre>' . $del_list . '</pre>');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ final class Froxlor
|
|||||||
{
|
{
|
||||||
|
|
||||||
// Main version variable
|
// Main version variable
|
||||||
const VERSION = '0.10.33';
|
const VERSION = '0.11.0-dev';
|
||||||
|
|
||||||
// Database version (YYYYMMDDC where C is a daily counter)
|
// Database version (YYYYMMDDC where C is a daily counter)
|
||||||
const DBVERSION = '202112310';
|
const DBVERSION = '202112310';
|
||||||
|
|||||||
Reference in New Issue
Block a user