Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Harmonic Minor tune #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions harmonica_tablature.qml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ MuseScore {
ListElement { text: "Richter valved"; tuning: 2 }
ListElement { text: "Paddy Richter (Brendan Power), valved"; tuning: 10 }
ListElement { text: "Natural Minor"; tuning: 7 }
ListElement { text: "Harmonic Minor"; tuning: 13 }
ListElement { text: "Melody Maker"; tuning: 8 }
ListElement { text: "Country"; tuning: 3 }
ListElement { text: "Circular (Seydel), valved"; tuning: 5 }
Expand Down Expand Up @@ -181,6 +182,11 @@ MuseScore {
"+7", "-7o", "-8", "+8", "-8o", "-9", "+9b", "+9", "-9o", "-10", "+10bb", "+10b",
"+10", "-10o" ]; //Labeled by blow 1 like Hohner. Seydel and Lee Okar labels by draw 2

var harmonicMinor = ["+1", "-1b", "-1", "+2", "-2bbb", "-2bb", "-2b", "-2", "-3bbb", "-3bb", "-3b", "-3",
"+4", "-4b", "-4", "+5", "-5b", "-5", "+5o", "+6", "-6", "+6o", , "-7",
"+7", "-7o", "-8", "+8", "-8o", "-9", "+9b", "+9", "-10", "+10bbb", "+10bb", "+10b",
"+10", "-10o" ]; //Labeled by blow 1 like Hohner, Seydel and Lee Okar

var melodyMaker = [ , , , , , // label by draw 2
"+1", "-1b", "-1", "+1o","+2", "-2bb","-2b", "-2", "+2o", "+3", "-3b", "-3",
"+4", "-4b", "-4", "+4o", "+5", "-5b", "-5", "+6", "-6b", "-6", "+6o", "-7",
Expand Down Expand Up @@ -220,6 +226,7 @@ MuseScore {
case 10: tuning = paddyRichter; break;
case 11: tuning = powerBender; break;
case 12: tuning = powerDraw; break;
case 13: tuning = harmonicMinor; break;
default: tuning = richter; break;
}

Expand Down