This commit is contained in:
Garrett K 2021-02-10 06:08:58 +00:00
parent 9942f21e8c
commit b45e41da0a
4 changed files with 21 additions and 3 deletions

View File

@ -5,6 +5,7 @@ ChangeLog for PatchCableMgr
**************************************************** ****************************************************
Contents Contents
- Changes Introduced In 0.3.13
- Changes Introduced In 0.3.12 - Changes Introduced In 0.3.12
- Changes Introduced In 0.3.11 - Changes Introduced In 0.3.11
- Changes Introduced In 0.3.10 - Changes Introduced In 0.3.10
@ -31,6 +32,9 @@ Contents
**************************************************** ****************************************************
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
**Changes introduced in 0.3.13
[Fix] Failure to import trunk data correctly on backup restore
**Changes introduced in 0.3.12 **Changes introduced in 0.3.12
[Enhance] When configuring template port ID, show last port ID in long abreviated list [Enhance] When configuring template port ID, show last port ID in long abreviated list
[Enhance] Cable path connections generated programatically instead of static images [Enhance] Cable path connections generated programatically instead of static images

View File

@ -98,6 +98,8 @@ var $qls;
$this->update_0310_to_0311(); $this->update_0310_to_0311();
} else if($this->currentVersion == '0.3.11') { } else if($this->currentVersion == '0.3.11') {
$this->update_0311_to_0312(); $this->update_0311_to_0312();
} else if($this->currentVersion == '0.3.12') {
$this->update_0313_to_0313();
} else { } else {
return true; return true;
} }
@ -107,7 +109,19 @@ var $qls;
} }
/** /**
* Update from version 0.3.10 to 0.3.11 * Update from version 0.3.12 to 0.3.13
* @return Boolean
*/
function update_0312_to_0313() {
$incrementalVersion = '0.3.13';
// Set app version to 0.3.13
$this->qls->SQL->update('app_organization_data', array('version' => $incrementalVersion), array('id' => array('=', 1)));
}
/**
* Update from version 0.3.11 to 0.3.12
* @return Boolean * @return Boolean
*/ */
function update_0311_to_0312() { function update_0311_to_0312() {

View File

@ -3,7 +3,7 @@
define('AVAILABLE_CABLE_END_ID_COUNT', 100); define('AVAILABLE_CABLE_END_ID_COUNT', 100);
define('MAX_WALLJACK_PORTID', 100); define('MAX_WALLJACK_PORTID', 100);
define('DEFAULT_FLOORPLAN_IMG', 'floorplan-default.png'); define('DEFAULT_FLOORPLAN_IMG', 'floorplan-default.png');
define('PCM_VERSION', '0.3.12'); define('PCM_VERSION', '0.3.13');
define('NEW_OBJECT_PREFIX', 'Object_'); define('NEW_OBJECT_PREFIX', 'Object_');
define('NEW_LOCATION_PREFIX', 'Location_'); define('NEW_LOCATION_PREFIX', 'Location_');

View File

@ -37,7 +37,7 @@ class Install {
* @var string $system_version - The version of the system * @var string $system_version - The version of the system
*/ */
var $system_version = '3.1.11'; var $system_version = '3.1.11';
var $app_version = '0.3.12'; var $app_version = '0.3.13';
/** /**
* @var string $install_error - Contains the installation error * @var string $install_error - Contains the installation error