0.3.17
This commit is contained in:
parent
bde93eae93
commit
b51224a071
@ -5,6 +5,7 @@ ChangeLog for PatchCableMgr
|
|||||||
****************************************************
|
****************************************************
|
||||||
|
|
||||||
Contents
|
Contents
|
||||||
|
- Changes Introduced In 0.3.17
|
||||||
- Changes Introduced In 0.3.16
|
- 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
|
||||||
@ -35,6 +36,9 @@ Contents
|
|||||||
****************************************************
|
****************************************************
|
||||||
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
|
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
|
||||||
|
|
||||||
|
**Changes introduced in 0.3.17
|
||||||
|
[Fix] Port description field spins after edit
|
||||||
|
|
||||||
**Changes introduced in 0.3.16
|
**Changes introduced in 0.3.16
|
||||||
[Feature] Port description
|
[Feature] Port description
|
||||||
[Enhance] Improved password hashing
|
[Enhance] Improved password hashing
|
||||||
|
|||||||
0
assets/images/portIcons/ST-black.png
Normal file → Executable file
0
assets/images/portIcons/ST-black.png
Normal file → Executable file
|
Before Width: | Height: | Size: 545 B After Width: | Height: | Size: 545 B |
0
assets/images/portIcons/ST-gray.png
Normal file → Executable file
0
assets/images/portIcons/ST-gray.png
Normal file → Executable file
|
Before Width: | Height: | Size: 825 B After Width: | Height: | Size: 825 B |
0
assets/images/portIcons/ST-red.png
Normal file → Executable file
0
assets/images/portIcons/ST-red.png
Normal file → Executable file
|
Before Width: | Height: | Size: 816 B After Width: | Height: | Size: 816 B |
@ -106,6 +106,8 @@ var $qls;
|
|||||||
$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_0316();
|
$this->update_0315_to_0316();
|
||||||
|
} else if($this->currentVersion == '0.3.16') {
|
||||||
|
$this->update_0316_to_0317();
|
||||||
} else {
|
} else {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -114,6 +116,17 @@ var $qls;
|
|||||||
return false;
|
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
|
* Update from version 0.3.15 to 0.3.16
|
||||||
|
|||||||
@ -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.3.16');
|
define('PCM_VERSION', '0.3.17');
|
||||||
|
|
||||||
define('NEW_OBJECT_PREFIX', 'Object_');
|
define('NEW_OBJECT_PREFIX', 'Object_');
|
||||||
define('NEW_LOCATION_PREFIX', 'Location_');
|
define('NEW_LOCATION_PREFIX', 'Location_');
|
||||||
|
|||||||
@ -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.3.16';
|
var $app_version = '0.3.17';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string $install_error - Contains the installation error
|
* @var string $install_error - Contains the installation error
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user