mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-02-12 11:01:52 +00:00
meshCentralCompat version comparison changes and updated docs for clarity
This commit is contained in:
parent
d483872aa6
commit
2a49dcac2d
2 changed files with 5 additions and 5 deletions
|
@ -276,12 +276,12 @@ module.exports.pluginHandler = function (parent) {
|
||||||
|
|
||||||
// MeshCentral doesn't adhere to semantic versioning (due to the -<alpha_char> at the end of the version)
|
// MeshCentral doesn't adhere to semantic versioning (due to the -<alpha_char> at the end of the version)
|
||||||
// Convert 1.2.3-a to 1.2.3-3 where the letter is converted to a number.
|
// Convert 1.2.3-a to 1.2.3-3 where the letter is converted to a number.
|
||||||
function versionToNumber(ver) { var x = ver.split('-'); if (x.length != 2) return ver; x[1] = x[1].toLowerCase().charCodeAt(0) - 96; return x.join('.'); }
|
obj.versionToNumber = function(ver) { var x = ver.split('-'); if (x.length != 2) return ver; x[1] = x[1].toLowerCase().charCodeAt(0) - 96; return x.join('.'); }
|
||||||
|
|
||||||
// Check if the current version of MeshCentral is at least the minimal required.
|
// Check if the current version of MeshCentral is at least the minimal required.
|
||||||
function checkMeshCentralVersion(current, minimal) {
|
obj.versionCompare = function(current, minimal) {
|
||||||
if (minimal.startsWith('>=')) { minimal = minimal.substring(2); }
|
if (minimal.startsWith('>=')) { minimal = minimal.substring(2); }
|
||||||
var c = versionToNumber(current).split('.'), m = versionToNumber(minimal).split('.');
|
var c = obj.versionToNumber(current).split('.'), m = obj.versionToNumber(minimal).split('.');
|
||||||
if (c.length != m.length) return false;
|
if (c.length != m.length) return false;
|
||||||
for (var i = 0; i < c.length; i++) { var cx = parseInt(c[i]), cm = parseInt(m[i]); if (cx > cm) { return true; } if (cx < cm) { return false; } }
|
for (var i = 0; i < c.length; i++) { var cx = parseInt(c[i]), cm = parseInt(m[i]); if (cx > cm) { return true; } if (cx < cm) { return false; } }
|
||||||
return true;
|
return true;
|
||||||
|
@ -312,7 +312,7 @@ module.exports.pluginHandler = function (parent) {
|
||||||
'installedVersion': curconf.version,
|
'installedVersion': curconf.version,
|
||||||
'version': newconf.version,
|
'version': newconf.version,
|
||||||
'hasUpdate': s.gt(newconf.version, curconf.version),
|
'hasUpdate': s.gt(newconf.version, curconf.version),
|
||||||
'meshCentralCompat': checkMeshCentralVersion(parent.currentVer, newconf.meshCentralCompat),
|
'meshCentralCompat': obj.versionCompare(parent.currentVer, newconf.meshCentralCompat),
|
||||||
'changelogUrl': curconf.changelogUrl,
|
'changelogUrl': curconf.changelogUrl,
|
||||||
'status': curconf.status
|
'status': curconf.status
|
||||||
});
|
});
|
||||||
|
|
|
@ -49,7 +49,7 @@ A valid JSON object within a file named `config.json` in the root folder of your
|
||||||
| repository.type | Yes | string | valid values are `git` and in the future, `npm` will also be supported in the future
|
| repository.type | Yes | string | valid values are `git` and in the future, `npm` will also be supported in the future
|
||||||
| repository.url | Yes | string | the URL to the project's repository
|
| repository.url | Yes | string | the URL to the project's repository
|
||||||
| versionHistoryUrl | No | string | the URL to the project's versions/tags
|
| versionHistoryUrl | No | string | the URL to the project's versions/tags
|
||||||
| meshCentralCompat | Yes | string | the semantic version string of required compatibility with the MeshCentral server
|
| meshCentralCompat | Yes | string | the minimum version string of required compatibility with the MeshCentral server, can be formatted as "0.1.2-c" or ">=0.1.2-c". Currently only supports minimum version, not full semantic checking.
|
||||||
|
|
||||||
## Plugin Hooks
|
## Plugin Hooks
|
||||||
These are separated into the following categories depending on the type of functionality the plugin should offer.
|
These are separated into the following categories depending on the type of functionality the plugin should offer.
|
||||||
|
|
Loading…
Reference in a new issue