Bumped version to 3.5.0
parent
02c746ae41
commit
76687d8c45
|
@ -6,6 +6,11 @@ Not yet released
|
||||||
----------------
|
----------------
|
||||||
\-
|
\-
|
||||||
|
|
||||||
|
v3.5.0 (released May 1, 2020)
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
* See https://github.com/phpservermon/phpservermon/compare/v3.4.5...v3.5.0
|
||||||
|
|
||||||
v3.4.5 (released September 30, 2019)
|
v3.4.5 (released September 30, 2019)
|
||||||
------------------------------------
|
------------------------------------
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ PHP Server Monitor
|
||||||
:alt: Join the chat at https://gitter.im/erickrf/nlpnet
|
:alt: Join the chat at https://gitter.im/erickrf/nlpnet
|
||||||
:target: https://gitter.im/phpservermon/phpservermon
|
:target: https://gitter.im/phpservermon/phpservermon
|
||||||
|
|
||||||
Version 3.4.5
|
Version 3.5.0
|
||||||
|
|
||||||
PHP Server Monitor is a script that checks whether your websites and servers are up and running.
|
PHP Server Monitor is a script that checks whether your websites and servers are up and running.
|
||||||
It comes with a web based user interface where you can manage your services and websites,
|
It comes with a web based user interface where you can manage your services and websites,
|
||||||
|
|
|
@ -51,9 +51,9 @@ copyright = u'2008-2017, Pepijn Over'
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '3.4.6'
|
version = '3.5.0'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '3.4.6-beta.3'
|
release = '3.5.0'
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
/**
|
/**
|
||||||
* Current PSM version
|
* Current PSM version
|
||||||
*/
|
*/
|
||||||
define('PSM_VERSION', '3.4.6-beta.3');
|
define('PSM_VERSION', '3.5.0');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* URL to check for updates. Will not be checked if turned off on config page.
|
* URL to check for updates. Will not be checked if turned off on config page.
|
||||||
|
|
|
@ -354,8 +354,8 @@ class Installer
|
||||||
if (version_compare($version_from, '3.4.2', '<')) {
|
if (version_compare($version_from, '3.4.2', '<')) {
|
||||||
$this->upgrade342();
|
$this->upgrade342();
|
||||||
}
|
}
|
||||||
if (version_compare($version_from, '3.4.6-beta.3', '<')) {
|
if (version_compare($version_from, '3.5.0', '<')) {
|
||||||
$this->upgrade346();
|
$this->upgrade350();
|
||||||
}
|
}
|
||||||
psm_update_conf('version', $version_to);
|
psm_update_conf('version', $version_to);
|
||||||
}
|
}
|
||||||
|
@ -673,9 +673,9 @@ class Installer
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Upgrade for v3.4.6 release
|
* Upgrade for v3.5.0 release
|
||||||
*/
|
*/
|
||||||
protected function upgrade346()
|
protected function upgrade350()
|
||||||
{
|
{
|
||||||
$queries = array();
|
$queries = array();
|
||||||
$queries[] = "ALTER TABLE `" . PSM_DB_PREFIX . "servers`
|
$queries[] = "ALTER TABLE `" . PSM_DB_PREFIX . "servers`
|
||||||
|
|
Loading…
Reference in New Issue