set master-branch version to next dev-version, so people don't break their database too early

Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann (d00p)
2013-12-08 14:36:04 +01:00
parent e7ce62c7ff
commit 2e9310daf1
3 changed files with 5 additions and 5 deletions

View File

@@ -521,7 +521,7 @@ INSERT INTO `panel_settings` (`settinggroup`, `varname`, `value`) VALUES
('panel', 'phpconfigs_hidestdsubdomain', '0'), ('panel', 'phpconfigs_hidestdsubdomain', '0'),
('panel', 'allow_theme_change_admin', '1'), ('panel', 'allow_theme_change_admin', '1'),
('panel', 'allow_theme_change_customer', '1'), ('panel', 'allow_theme_change_customer', '1'),
('panel', 'version', '0.9.31-rc99'); ('panel', 'version', '0.9.32-dev1');
DROP TABLE IF EXISTS `panel_tasks`; DROP TABLE IF EXISTS `panel_tasks`;

View File

@@ -2535,9 +2535,9 @@ if (isFroxlorVersion('0.9.31-rc1')) {
updateToVersion('0.9.31-rc2'); updateToVersion('0.9.31-rc2');
} }
if (isFroxlorVersion('0.9.31-rc2')) { if (isFroxlorVersion('0.9.31')) {
showUpdateStep("Updating from 0.9.31-rc2 to 0.9.31-rc99"); showUpdateStep("Updating from 0.9.31 to 0.9.32-dev1");
lastStepStatus(0); lastStepStatus(0);
showUpdateStep("Removing APS-module (deprecated)"); showUpdateStep("Removing APS-module (deprecated)");
@@ -2586,5 +2586,5 @@ if (isFroxlorVersion('0.9.31-rc2')) {
Database::query("UPDATE `".TABLE_FTP_GROUPS."` SET `members` = CONCAT(`members`, ',".$settings['system']['httpuser']."');"); Database::query("UPDATE `".TABLE_FTP_GROUPS."` SET `members` = CONCAT(`members`, ',".$settings['system']['httpuser']."');");
lastStepStatus(0); lastStepStatus(0);
updateToVersion('0.9.31-rc99'); updateToVersion('0.9.32-dev1');
} }

View File

@@ -51,6 +51,6 @@ define('TABLE_PANEL_DOMAIN_SSL_SETTINGS', 'domain_ssl_settings');
define('TABLE_DOMAINTOIP', 'panel_domaintoip'); define('TABLE_DOMAINTOIP', 'panel_domaintoip');
// VERSION INFO // VERSION INFO
$version = '0.9.31-rc99'; $version = '0.9.32-dev1';
$dbversion = '2'; $dbversion = '2';
$branding = ''; $branding = '';