This commit is contained in:
Garrett 2021-05-09 04:10:59 +00:00
parent 507f29b045
commit 1e85ebb2cf
10 changed files with 13 additions and 13 deletions

View File

@ -5,7 +5,7 @@ ChangeLog for PatchCableMgr
**************************************************** ****************************************************
Contents Contents
- Changes Introduced In 0.4.0 - Changes Introduced In 0.3.16
- Changes Introduced In 0.3.15 - Changes Introduced In 0.3.15
- Changes Introduced In 0.3.14 - Changes Introduced In 0.3.14
- Changes Introduced In 0.3.13 - Changes Introduced In 0.3.13
@ -35,7 +35,7 @@ Contents
**************************************************** ****************************************************
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
**Changes introduced in 0.4.0 **Changes introduced in 0.3.16
[Feature] Port description [Feature] Port description
[Enhance] Improved password hashing [Enhance] Improved password hashing
[Enhance] Added support for ST connectors [Enhance] Added support for ST connectors

View File

@ -1 +1 @@
# 0.4.0 # 0.3.16

Binary file not shown.

After

Width:  |  Height:  |  Size: 547 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 545 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 825 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 816 B

View File

@ -105,7 +105,7 @@ var $qls;
} else if($this->currentVersion == '0.3.14') { } else if($this->currentVersion == '0.3.14') {
$this->update_0314_to_0315(); $this->update_0314_to_0315();
} else if($this->currentVersion == '0.3.15') { } else if($this->currentVersion == '0.3.15') {
$this->update_0315_to_040(); $this->update_0315_to_0316();
} else { } else {
return true; return true;
} }
@ -116,13 +116,13 @@ var $qls;
/** /**
* Update from version 0.3.15 to 0.4.0 * Update from version 0.3.15 to 0.3.16
* @return Boolean * @return Boolean
*/ */
function update_0315_to_040() { function update_0315_to_0316() {
$incrementalVersion = '0.4.0'; $incrementalVersion = '0.3.16';
// Set app version to 0.4.0 // Set app version to 0.3.16
$this->qls->SQL->update('app_organization_data', array('version' => $incrementalVersion), array('id' => array('=', 1))); $this->qls->SQL->update('app_organization_data', array('version' => $incrementalVersion), array('id' => array('=', 1)));
// Update password hash // Update password hash

View File

@ -300,15 +300,15 @@ for($x=1; $x<MAX_TEMPLATE_RU; $x++) {
} }
.port.ST { .port.ST {
background-image: url("/assets/images/portIcons/SFP-black.png"); background-image: url("/assets/images/portIcons/ST-black.png");
} }
.port.ST.populated { .port.ST.populated {
background-image: url("/assets/images/portIcons/SFP-red.png") !important; background-image: url("/assets/images/portIcons/ST-red.png") !important;
} }
.port.ST.endpointTrunked { .port.ST.endpointTrunked {
background-image: url("/assets/images/portIcons/SFP-gray.png"); background-image: url("/assets/images/portIcons/ST-gray.png");
} }
.port { .port {

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.4.0'); define('PCM_VERSION', '0.3.16');
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.4.0'; var $app_version = '0.3.16';
/** /**
* @var string $install_error - Contains the installation error * @var string $install_error - Contains the installation error