Check for plugin minor version gives wrong output in case it is greater than SCRIPT_MINOR_VERSION
The code in trunk r5458 reads:
else if (minorVersion > SCRIPT_MINOR_VERSION) { qDebug("Your MuseScore version may be too old to run script <%s> (minor version %d > %d)\n", qPrintable(pluginPath), minorVersion, SCRIPT_MAJOR_VERSION);
This is oviously wrong and really needs to be:
else if (minorVersion > SCRIPT_MINOR_VERSION) { qDebug("Your MuseScore version may be too old to run script <%s> (minor version %d > %d)\n", qPrintable(pluginPath), minorVersion, SCRIPT_MINOR_VERSION);
Comments
minor, as this is debug output only
fixed in r5485
Automatically closed -- issue fixed for 2 weeks with no activity.