diff --git a/CHANGELOG b/CHANGELOG index 9bf2d8b..af1feb4 100755 --- a/CHANGELOG +++ b/CHANGELOG @@ -5,6 +5,7 @@ ChangeLog for PatchCableMgr **************************************************** Contents + - Changes Introduced In 0.4.0 - Changes Introduced In 0.3.15 - Changes Introduced In 0.3.14 - Changes Introduced In 0.3.13 @@ -34,6 +35,12 @@ Contents **************************************************** \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +**Changes introduced in 0.4.0 +[Feature] Port description +[Enhance] Improved password hashing +[Enhance] Added support for ST connectors +[Fix] Hyphen encoded in search results + **Changes introduced in 0.3.15 [Fix] Floorplan object ports not available when making new connection [Fix] HTML code for hyphens not converted when viewing floorplan object details diff --git a/README.md b/README.md index 9cc7527..a3491eb 100755 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# 0.3.15 \ No newline at end of file +# 0.4.0 \ No newline at end of file diff --git a/explore.php b/explore.php index ea3a54d..1ca8790 100755 --- a/explore.php +++ b/explore.php @@ -283,21 +283,12 @@ $qls->Security->check_auth_page('user.php');
+ Description:   +diff --git a/includes/Update.class.php b/includes/Update.class.php index 93295d6..ac45e93 100755 --- a/includes/Update.class.php +++ b/includes/Update.class.php @@ -105,7 +105,7 @@ var $qls; } else if($this->currentVersion == '0.3.14') { $this->update_0314_to_0315(); } else if($this->currentVersion == '0.3.15') { - $this->update_0315_to_0316(); + $this->update_0315_to_040(); } else { return true; } @@ -116,13 +116,13 @@ var $qls; /** - * Update from version 0.3.15 to 0.3.16 + * Update from version 0.3.15 to 0.4.0 * @return Boolean */ - function update_0315_to_0316() { - $incrementalVersion = '0.3.16'; + function update_0315_to_040() { + $incrementalVersion = '0.4.0'; - // Set app version to 0.3.16 + // Set app version to 0.4.0 $this->qls->SQL->update('app_organization_data', array('version' => $incrementalVersion), array('id' => array('=', 1))); // Update password hash @@ -156,6 +156,18 @@ var $qls; $connectorPortTypeColumns = array('value', 'name', 'defaultOption'); $connectorPortTypeValues = array(8, 'ST', 0); $this->qls->SQL->insert('shared_cable_connectorType', $connectorPortTypeColumns, $connectorPortTypeValues); + + // Add port description table + $query = ''; + $query .= 'CREATE TABLE `qls_app_port_description` ('; + $query .= '`id` int(11) NOT NULL AUTO_INCREMENT,'; + $query .= '`object_id` int(11) NOT NULL,'; + $query .= '`object_face` int(11) NOT NULL,'; + $query .= '`object_depth` int(11) NOT NULL,'; + $query .= '`port_id` int(11) NOT NULL,'; + $query .= '`description` varchar(255) NOT NULL,'; + $query .= 'PRIMARY KEY(`id`))'; + $this->qls->SQL->query($query); } /** diff --git a/includes/content-custom_style.php b/includes/content-custom_style.php index d868ba2..fa1aac1 100755 --- a/includes/content-custom_style.php +++ b/includes/content-custom_style.php @@ -299,6 +299,18 @@ for($x=1; $x--
-- -- Description:   - -- - -