Skip to content

Commit c6c991f

Browse files
committed
Add overblows and overdraws
1 parent 4d78e77 commit c6c991f

7 files changed

+33
-31
lines changed

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
This is a plugin for MuseScore 1.2 to add harmonica tablature notation below the notes. It currently supports
22

33
* the Hohner Highlander only, for both side, A highlander and D - [Reference](http://musescore.org/sites/musescore.org/files/Hohner%20Highlander%20scale.jpg)
4-
* Diatonic C - [Reference](http://musescore.org/sites/musescore.org/files/Lee%20Oscar%20C.jpg)
5-
* Diatonic D - [Reference](http://musescore.org/sites/musescore.org/files/Lee%20Oskar%20Diatonic%20D.jpg)
6-
* Diatonic G - [Reference](http://musescore.org/sites/musescore.org/files/Lee%20Oskar%20%20Diatonic%20G.jpg)
7-
* Diatonic Bb - [Reference](http://musescore.org/sites/musescore.org/files/Lee%20Oskar%20Diatonic%20Bb.jpg)
8-
* Diatonic A - [Reference](http://harmopoint.com/harmonica-virtuel/)
9-
* Diatonic F - [Reference](http://harmopoint.com/harmonica-virtuel/)
4+
* Diatonic A - [Reference](http://harmopoint.com/harmonica-virtuel/) [and for overblows and overdraws](http://www.overblow.com/?menuid=26)
5+
* Diatonic Bb - [Reference](http://musescore.org/sites/musescore.org/files/Lee%20Oskar%20Diatonic%20Bb.jpg) [and for overblows and overdraws](http://www.overblow.com/?menuid=26)
6+
* Diatonic C - [Reference](http://musescore.org/sites/musescore.org/files/Lee%20Oscar%20C.jpg) [and for overblows and overdraws](http://www.overblow.com/?menuid=26)
7+
* Diatonic D - [Reference](http://musescore.org/sites/musescore.org/files/Lee%20Oskar%20Diatonic%20D.jpg) [and for overblows and overdraws](http://www.overblow.com/?menuid=26)
8+
* Diatonic F - [Reference](http://harmopoint.com/harmonica-virtuel/) [and for overblows and overdraws](http://www.overblow.com/?menuid=26)
9+
* Diatonic G - [Reference](http://musescore.org/sites/musescore.org/files/Lee%20Oskar%20%20Diatonic%20G.jpg) [and for overblows and overdraws](http://www.overblow.com/?menuid=26)
1010
* Chromatic C, 12 holes - [Reference](http://musescore.org/sites/musescore.org/files/12%20Hole%20Chromatic%20slide%20Harmonica.txt)
1111
* Chromatic C, 16 holes - [Reference](https://coast2coastmusic.com/chromatic/tuning_charts.shtml)
1212

@@ -20,10 +20,12 @@ If you want to have your harmonica added to the it, please contact me, or better
2020
* ' = halfstep bend
2121
* " = whole step bend
2222
* "' = 3 halfsteps bend
23+
* +X° = overblow
24+
* -X° = overdraw
2325
* "<" = slide
2426

2527
Bends, over blow, over draw may be supported if it's the only way to play the note.
2628
If there are two holes for one note, a choice has been made (draw)
2729

2830
##More info
29-
See the official [project page](http://musescore.org/en/project/harmonicatablature)
31+
See the official [project page](http://musescore.org/en/project/harmonicatablature)

harmonica_diatonic_A.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
1818
//=============================================================================
1919

20-
// 57 A Bb B C C# D Eb E F F# G Ab
21-
var holes = ["+1", "-1'", "-1", "", "+2", "-2\"", "-2'", "+3", "-3\"'", "-3\"", "-3'", "-3",
22-
"+4", "-4'", "-4", "", "+5", "-5", "", "+6", "-6'", "-6", "", "-7",
23-
"+7", "", "-8", "+8'", "+8", "-9", "+9'", "+9", "", "-10", "+10\"", "+10'",
20+
// 57 A Bb B C C# D Eb E F F# G Ab
21+
var holes = ["+1", "-1'", "-1", "+1°", "+2", "-2\"", "-2'", "-2", "-3\"'", "-3\"", "-3'", "-3",
22+
"+4", "-4'", "-4", "+4°", "+5", "-5", "+5°", "+6", "-6'", "-6", "+6°", "-7",
23+
"+7", "-7°", "-8", "+8'", "+8", "-9", "+9'", "+9", "-9°", "-10", "+10\"", "+10'",
2424
"+10"
2525
];
2626

harmonica_diatonic_Bb.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
1818
//=============================================================================
1919

20-
// 58Bb B C Db D Eb E F Gb G Ab A
21-
var holes = ["+1", "-1'", "-1", "", "+2", "-2\"", "-2'", "+3", "-3\"'", "-3\"", "-3'", "-3",
22-
"+4", "-4'", "-4", "", "+5", "-5", "", "+6", "-6'", "-6", "", "-7",
23-
"+7", "", "-8", "+8'", "+8", "-9", "+9'", "+9", "", "-10", "+10\"", "+10'",
20+
// 58 Bb B C Db D Eb E F Gb G Ab A
21+
var holes = ["+1", "-1'", "-1", "+1°", "+2", "-2\"", "-2'", "-2", "-3\"'", "-3\"", "-3'", "-3",
22+
"+4", "-4'", "-4", "+4°", "+5", "-5", "+5°", "+6", "-6'", "-6", "+6°", "-7",
23+
"+7", "-7°", "-8", "+8'", "+8", "-9", "+9'", "+9", "-9°", "-10", "+10\"", "+10'",
2424
"+10"
2525
];
2626

harmonica_diatonic_C.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
1818
//=============================================================================
1919

20-
// 60 C C# D D# E F F# G G# A A# B
21-
var holes = ["+1", "-1'", "-1", "", "+2", "-2\"", "-2'", "+3", "-3\"'", "-3\"", "-3'", "-3",
22-
"+4", "-4'", "-4", "", "+5", "-5", "", "+6", "-6'", "-6", "", "-7",
23-
"+7", "", "-8", "+8'", "+8", "-9", "+9'", "+9", "", "-10", "+10\"", "+10'",
20+
// 60 C C# D D# E F F# G G# A A# B
21+
var holes = ["+1", "-1'", "-1", "+1°", "+2", "-2\"", "-2'", "-2", "-3\"'", "-3\"", "-3'", "-3",
22+
"+4", "-4'", "-4", "+4°", "+5", "-5", "+5°", "+6", "-6'", "-6", "+6°", "-7",
23+
"+7", "-7°", "-8", "+8'", "+8", "-9", "+9'", "+9", "-9°", "-10", "+10\"", "+10'",
2424
"+10"
2525
];
2626

harmonica_diatonic_D.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
1818
//=============================================================================
1919

20-
// 60D Eb E F F# G Ab A Bb B C C#
21-
var holes = ["+1", "-1'", "-1", "", "+2", "-2\"", "-2'", "+3", "-3\"'", "-3\"", "-3'", "-3",
22-
"+4", "-4'", "-4", "", "+5", "-5", "", "+6", "-6'", "-6", "", "-7",
23-
"+7", "", "-8", "+8'", "+8", "-9", "+9'", "+9", "", "-10", "+10\"", "+10'",
20+
// 60D Eb E F F# G Ab A Bb B C C#
21+
var holes = ["+1", "-1'", "-1", "+1°", "+2", "-2\"", "-2'", "-2", "-3\"'", "-3\"", "-3'", "-3",
22+
"+4", "-4'", "-4", "+4°", "+5", "-5", "+5°", "+6", "-6'", "-6", "+6°", "-7",
23+
"+7", "-7°", "-8", "+8'", "+8", "-9", "+9'", "+9", "-9°", "-10", "+10\"", "+10'",
2424
"+10"
2525
];
2626

harmonica_diatonic_F.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
1818
//=============================================================================
1919

20-
// 53 F F# G Ab A Bb B C C# D Eb E
21-
var holes = ["+1", "-1'", "-1", "", "+2", "-2\"", "-2'", "+3", "-3\"'", "-3\"", "-3'", "-3",
22-
"+4", "-4'", "-4", "", "+5", "-5", "", "+6", "-6'", "-6", "", "-7",
23-
"+7", "", "-8", "+8'", "+8", "-9", "+9'", "+9", "", "-10", "+10\"", "+10'",
20+
// 53 F F# G Ab A Bb B C C# D Eb E
21+
var holes = ["+1", "-1'", "-1", "+1°", "+2", "-2\"", "-2'", "-2", "-3\"'", "-3\"", "-3'", "-3",
22+
"+4", "-4'", "-4", "+4°", "+5", "-5", "+5°", "+6", "-6'", "-6", "+6°", "-7",
23+
"+7", "-7°", "-8", "+8'", "+8", "-9", "+9'", "+9", "-9°", "-10", "+10\"", "+10'",
2424
"+10"
2525
];
2626

harmonica_diatonic_G.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
1818
//=============================================================================
1919

20-
// 55 G G# A A# B C C# D D# E F F#
21-
var holes = ["+1", "-1'", "-1", "", "+2", "-2\"", "-2'", "+3", "-3\"'", "-3\"", "-3'", "-3",
22-
"+4", "-4'", "-4", "", "+5", "-5", "", "+6", "-6'", "-6", "", "-7",
23-
"+7", "", "-8", "+8'", "+8", "-9", "+9'", "+9", "", "-10", "+10\"", "+10'",
20+
// 55 G G# A A# B C C# D D# E F F#
21+
var holes = ["+1", "-1'", "-1", "+1°", "+2", "-2\"", "-2'", "-2", "-3\"'", "-3\"", "-3'", "-3",
22+
"+4", "-4'", "-4", "+4°", "+5", "-5", "+5°", "+6", "-6'", "-6", "+6°", "-7",
23+
"+7", "-7°", "-8", "+8'", "+8", "-9", "+9'", "+9", "-9°", "-10", "+10\"", "+10'",
2424
"+10"
2525
];
2626

0 commit comments

Comments
 (0)