diff --git a/CHANGELOG b/CHANGELOG index 6b557e9..116cc50 100755 --- a/CHANGELOG +++ b/CHANGELOG @@ -5,6 +5,7 @@ ChangeLog for PatchCableMgr **************************************************** Contents + - Changes Introduced In 0.3.17 - Changes Introduced In 0.3.16 - Changes Introduced In 0.3.15 - Changes Introduced In 0.3.14 @@ -35,6 +36,9 @@ Contents **************************************************** \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +**Changes introduced in 0.3.17 +[Fix] Port description field spins after edit + **Changes introduced in 0.3.16 [Feature] Port description [Enhance] Improved password hashing diff --git a/README.md b/README.md index 2e2c4f0..9dc1065 100755 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# 0.3.16 \ No newline at end of file +# 0.3.17 \ No newline at end of file diff --git a/assets/images/portIcons/ST-black.png b/assets/images/portIcons/ST-black.png old mode 100644 new mode 100755 diff --git a/assets/images/portIcons/ST-gray.png b/assets/images/portIcons/ST-gray.png old mode 100644 new mode 100755 diff --git a/assets/images/portIcons/ST-red.png b/assets/images/portIcons/ST-red.png old mode 100644 new mode 100755 diff --git a/includes/Update.class.php b/includes/Update.class.php index e80319a..7ddb6de 100755 --- a/includes/Update.class.php +++ b/includes/Update.class.php @@ -106,6 +106,8 @@ var $qls; $this->update_0314_to_0315(); } else if($this->currentVersion == '0.3.15') { $this->update_0315_to_0316(); + } else if($this->currentVersion == '0.3.16') { + $this->update_0316_to_0317(); } else { return true; } @@ -114,6 +116,17 @@ var $qls; return false; } + /** + * Update from version 0.3.16 to 0.3.17 + * @return Boolean + */ + function update_0316_to_0317() { + $incrementalVersion = '0.3.17'; + + // Set app version to 0.3.17 + $this->qls->SQL->update('app_organization_data', array('version' => $incrementalVersion), array('id' => array('=', 1))); + + } /** * Update from version 0.3.15 to 0.3.16 diff --git a/includes/definitions.php b/includes/definitions.php index e4709bb..614ebb1 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.16'); +define('PCM_VERSION', '0.3.17'); define('NEW_OBJECT_PREFIX', 'Object_'); define('NEW_LOCATION_PREFIX', 'Location_'); diff --git a/install/Install.class.php b/install/Install.class.php index f0cfeb9..ff30f85 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.16'; +var $app_version = '0.3.17'; /** * @var string $install_error - Contains the installation error