diff --git a/CHANGELOG b/CHANGELOG index da14582..bdf5ec6 100755 --- a/CHANGELOG +++ b/CHANGELOG @@ -5,6 +5,7 @@ ChangeLog for PatchCableMgr **************************************************** Contents + - Changes Introduced In 0.3.13 - Changes Introduced In 0.3.12 - Changes Introduced In 0.3.11 - 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 [Enhance] When configuring template port ID, show last port ID in long abreviated list [Enhance] Cable path connections generated programatically instead of static images diff --git a/includes/Update.class.php b/includes/Update.class.php index d0993e1..d3d6f49 100755 --- a/includes/Update.class.php +++ b/includes/Update.class.php @@ -98,6 +98,8 @@ var $qls; $this->update_0310_to_0311(); } else if($this->currentVersion == '0.3.11') { $this->update_0311_to_0312(); + } else if($this->currentVersion == '0.3.12') { + $this->update_0313_to_0313(); } else { 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 */ function update_0311_to_0312() { diff --git a/includes/definitions.php b/includes/definitions.php index 363ab91..9f03886 100755 --- a/includes/definitions.php +++ b/includes/definitions.php @@ -3,7 +3,7 @@ define('AVAILABLE_CABLE_END_ID_COUNT', 100); define('MAX_WALLJACK_PORTID', 100); 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_LOCATION_PREFIX', 'Location_'); diff --git a/install/Install.class.php b/install/Install.class.php index d71cc31..e0f83d8 100755 --- a/install/Install.class.php +++ b/install/Install.class.php @@ -37,7 +37,7 @@ class Install { * @var string $system_version - The version of the system */ 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