0.3.16
This commit is contained in:
parent
507f29b045
commit
1e85ebb2cf
@ -5,7 +5,7 @@ ChangeLog for PatchCableMgr
|
||||
****************************************************
|
||||
|
||||
Contents
|
||||
- Changes Introduced In 0.4.0
|
||||
- Changes Introduced In 0.3.16
|
||||
- Changes Introduced In 0.3.15
|
||||
- Changes Introduced In 0.3.14
|
||||
- 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
|
||||
[Enhance] Improved password hashing
|
||||
[Enhance] Added support for ST connectors
|
||||
|
||||
BIN
assets/images/portIcons/ST-.png
Normal file
BIN
assets/images/portIcons/ST-.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 547 B |
BIN
assets/images/portIcons/ST-black.png
Normal file
BIN
assets/images/portIcons/ST-black.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 545 B |
BIN
assets/images/portIcons/ST-gray.png
Normal file
BIN
assets/images/portIcons/ST-gray.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 825 B |
BIN
assets/images/portIcons/ST-red.png
Normal file
BIN
assets/images/portIcons/ST-red.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 816 B |
@ -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_040();
|
||||
$this->update_0315_to_0316();
|
||||
} else {
|
||||
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
|
||||
*/
|
||||
function update_0315_to_040() {
|
||||
$incrementalVersion = '0.4.0';
|
||||
function update_0315_to_0316() {
|
||||
$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)));
|
||||
|
||||
// Update password hash
|
||||
|
||||
@ -300,15 +300,15 @@ for($x=1; $x<MAX_TEMPLATE_RU; $x++) {
|
||||
}
|
||||
|
||||
.port.ST {
|
||||
background-image: url("/assets/images/portIcons/SFP-black.png");
|
||||
background-image: url("/assets/images/portIcons/ST-black.png");
|
||||
}
|
||||
|
||||
.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 {
|
||||
background-image: url("/assets/images/portIcons/SFP-gray.png");
|
||||
background-image: url("/assets/images/portIcons/ST-gray.png");
|
||||
}
|
||||
|
||||
.port {
|
||||
|
||||
@ -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.4.0');
|
||||
define('PCM_VERSION', '0.3.16');
|
||||
|
||||
define('NEW_OBJECT_PREFIX', 'Object_');
|
||||
define('NEW_LOCATION_PREFIX', 'Location_');
|
||||
|
||||
@ -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.4.0';
|
||||
var $app_version = '0.3.16';
|
||||
|
||||
/**
|
||||
* @var string $install_error - Contains the installation error
|
||||
|
||||
Loading…
Reference in New Issue
Block a user