mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2024-11-23 06:34:54 +03:00
Fix MeshCentral version comparisons. (Breaking for versions -a through -c)
This commit is contained in:
parent
02aa261f38
commit
7be2e3d9ac
@ -285,8 +285,8 @@ module.exports.pluginHandler = function (parent) {
|
|||||||
var s = require('semver');
|
var s = require('semver');
|
||||||
// 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 the letter to ASCII for a "true" version number comparison
|
// Convert the letter to ASCII for a "true" version number comparison
|
||||||
var mcCurVer = parent.currentVer.replace(/-(.)$/, (m, p1) => { return p1.charCodeAt(0); });
|
var mcCurVer = parent.currentVer.replace(/-(.)$/, (m, p1) => { return ("000" + p1.charCodeAt(0)).substr(-3,3); });
|
||||||
var piCompatVer = newconf.meshCentralCompat.replace(/-(.)\b/g, (m, p1) => { return p1.charCodeAt(0); });
|
var piCompatVer = newconf.meshCentralCompat.replace(/-(.)\b/g, (m, p1) => { return ("000" + p1.charCodeAt(0)).substr(-3,3); });
|
||||||
latestRet.push({
|
latestRet.push({
|
||||||
'id': curconf._id,
|
'id': curconf._id,
|
||||||
'installedVersion': curconf.version,
|
'installedVersion': curconf.version,
|
||||||
|
Loading…
Reference in New Issue
Block a user