From dcdeb83ba4ca2a43009c808cd05588b9977e8181 Mon Sep 17 00:00:00 2001 From: looptailG <99362337+looptailG@users.noreply.github.com> Date: Wed, 1 May 2024 20:49:13 +0200 Subject: [PATCH] Updated version number --- source/31EdoTuner.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/31EdoTuner.qml b/source/31EdoTuner.qml index 04ba166..1170362 100644 --- a/source/31EdoTuner.qml +++ b/source/31EdoTuner.qml @@ -24,7 +24,7 @@ MuseScore { menuPath: "Plugins.Tuner.31EDO"; description: "Retune the selection, or the whole score if nothing is selected, to 31EDO."; - version: "1.5.1-alpha.6"; + version: "1.5.1"; Component.onCompleted: { @@ -426,8 +426,8 @@ MuseScore // on its tonal pitch class. tuningOffset = baseNotesOffset[noteLetter]; // Add the tuning offset due to the accidental. Each semitone adds 7 - // fifth deviations to the note tuning, because we have to move 7 steps - // in the circle of fifths to get to the altered note. + // fifth deviations to the note's tuning, because we have to move 7 + // steps in the circle of fifths to get to the altered note. var tpcAccidental = Math.floor((note.tpc + 1) / 7) - 2; tuningOffset -= tpcAccidental * 7 * fifthDeviation; logMessage("Base tuning offset: " + tuningOffset);