├── .gitignore ├── ExpandChordSymbols.js ├── ExpandChordSymbols.zip ├── LICENSE ├── README.md ├── expandChordSymbols.qml ├── images ├── eighth dotted rest.png ├── eighth dotted.png ├── eighth rest.png ├── eighth.png ├── half dotted rest.png ├── half dotted.png ├── half rest.png ├── half.png ├── quarter dotted rest.png ├── quarter dotted.png ├── quarter rest.png ├── quarter.png ├── sixteenth rest.png ├── sixteenth.png ├── unknown rest.png ├── unknown.png ├── whole rest.png └── whole.png ├── scoresToJSON.qml └── test ├── bad scores ├── Amazing_Grace_Jazz.mscz ├── In_the_Bleak_Midwinter.mscz ├── Swan_Lake.mscz └── score_8558437_ae8d0853bd742c96ca09fbb9bdd48ffe5bed0b8d.mscz ├── misc scores ├── Another_Rainy_Day melody compare.mscz ├── Another_Rainy_Day melody.mscz ├── As_You_Sow.mscz ├── Beale_St._Blues.mscz ├── Happy_Birthday_Jazz_Leadsheet_Advanced.mscz ├── Hark_the_Herald_piano_bass_final.mscz ├── Here_Am_I_Lord__Psalm_40_-_Cantor_with_Chords.mscz ├── If_Today_You_Hear_His_Voice__Psalm_95_-_Cantor_with_Chords.mscz ├── In_the_hall_of_the_mountain_King.mscz ├── Jazz_Reharmonization_Test_1.mscz ├── Jesus_Loves_Me-chords only compare.mscz ├── Jesus_Loves_Me.mscz ├── Maidens_Prayer.mscz ├── Marcha_Nupcial_-_Mendelssohn.mscz ├── Misc Chords.mscz ├── Moonlight_Sonata_Jazz_Lead_Sheet.mscz ├── On_the_Manchurian_Hills_-_melody_wchords.mscz ├── Realize Expand Compare.mscz ├── Sleep_Soond_Ida_Moarnin.mscz ├── St._Louis_Blues.mscz ├── Traditional_music_-_Connaughtmans_Rambles_D_major__B_minor.mscz ├── Twinkle_Twinkle_Little_Star.mscz ├── Whiskey_in_the_Jar.mscz ├── elsewhere-test.mscz └── prune test.mscz └── regression ├── expected test results ├── Chord_Symbol_Voicings_for_Playback.json ├── In_the_Hall_of_the_Mountain_King.json ├── Indian_Summer.json ├── Moonlight_Sonata_(leadsheet).json ├── Night_and_Day rev5(Guiter chord).json ├── Parentheses.json ├── The_Entertainer_UrbanSmash_Solo_by_Scott_Joplin.json ├── The_Swan_-_Jazz_Lead_Sheet__Peter_Cole.json └── Twinkle_Twinkle_Little_Star.json └── test files ├── Chord_Symbol_Voicings_for_Playback.mscz ├── In_the_Hall_of_the_Mountain_King.mscz ├── Indian_Summer.mscz ├── Moonlight_Sonata_(leadsheet).mscz ├── Night_and_Day rev5(Guiter chord).mscz ├── Parentheses.mscz ├── Patterns.mscz ├── The_Entertainer_UrbanSmash_Solo_by_Scott_Joplin.mscz ├── The_Swan_-_Jazz_Lead_Sheet__Peter_Cole.mscz └── Twinkle_Twinkle_Little_Star.mscz /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/.gitignore -------------------------------------------------------------------------------- /ExpandChordSymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/ExpandChordSymbols.js -------------------------------------------------------------------------------- /ExpandChordSymbols.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/ExpandChordSymbols.zip -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/README.md -------------------------------------------------------------------------------- /expandChordSymbols.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/expandChordSymbols.qml -------------------------------------------------------------------------------- /images/eighth dotted rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/images/eighth dotted rest.png -------------------------------------------------------------------------------- /images/eighth dotted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/images/eighth dotted.png -------------------------------------------------------------------------------- /images/eighth rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/images/eighth rest.png -------------------------------------------------------------------------------- /images/eighth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/images/eighth.png -------------------------------------------------------------------------------- /images/half dotted rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/images/half dotted rest.png -------------------------------------------------------------------------------- /images/half dotted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/images/half dotted.png -------------------------------------------------------------------------------- /images/half rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/images/half rest.png -------------------------------------------------------------------------------- /images/half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/images/half.png -------------------------------------------------------------------------------- /images/quarter dotted rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/images/quarter dotted rest.png -------------------------------------------------------------------------------- /images/quarter dotted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/images/quarter dotted.png -------------------------------------------------------------------------------- /images/quarter rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/images/quarter rest.png -------------------------------------------------------------------------------- /images/quarter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/images/quarter.png -------------------------------------------------------------------------------- /images/sixteenth rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/images/sixteenth rest.png -------------------------------------------------------------------------------- /images/sixteenth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/images/sixteenth.png -------------------------------------------------------------------------------- /images/unknown rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/images/unknown rest.png -------------------------------------------------------------------------------- /images/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/images/unknown.png -------------------------------------------------------------------------------- /images/whole rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/images/whole rest.png -------------------------------------------------------------------------------- /images/whole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/images/whole.png -------------------------------------------------------------------------------- /scoresToJSON.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/scoresToJSON.qml -------------------------------------------------------------------------------- /test/bad scores/Amazing_Grace_Jazz.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/bad scores/Amazing_Grace_Jazz.mscz -------------------------------------------------------------------------------- /test/bad scores/In_the_Bleak_Midwinter.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/bad scores/In_the_Bleak_Midwinter.mscz -------------------------------------------------------------------------------- /test/bad scores/Swan_Lake.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/bad scores/Swan_Lake.mscz -------------------------------------------------------------------------------- /test/bad scores/score_8558437_ae8d0853bd742c96ca09fbb9bdd48ffe5bed0b8d.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/bad scores/score_8558437_ae8d0853bd742c96ca09fbb9bdd48ffe5bed0b8d.mscz -------------------------------------------------------------------------------- /test/misc scores/Another_Rainy_Day melody compare.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/Another_Rainy_Day melody compare.mscz -------------------------------------------------------------------------------- /test/misc scores/Another_Rainy_Day melody.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/Another_Rainy_Day melody.mscz -------------------------------------------------------------------------------- /test/misc scores/As_You_Sow.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/As_You_Sow.mscz -------------------------------------------------------------------------------- /test/misc scores/Beale_St._Blues.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/Beale_St._Blues.mscz -------------------------------------------------------------------------------- /test/misc scores/Happy_Birthday_Jazz_Leadsheet_Advanced.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/Happy_Birthday_Jazz_Leadsheet_Advanced.mscz -------------------------------------------------------------------------------- /test/misc scores/Hark_the_Herald_piano_bass_final.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/Hark_the_Herald_piano_bass_final.mscz -------------------------------------------------------------------------------- /test/misc scores/Here_Am_I_Lord__Psalm_40_-_Cantor_with_Chords.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/Here_Am_I_Lord__Psalm_40_-_Cantor_with_Chords.mscz -------------------------------------------------------------------------------- /test/misc scores/If_Today_You_Hear_His_Voice__Psalm_95_-_Cantor_with_Chords.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/If_Today_You_Hear_His_Voice__Psalm_95_-_Cantor_with_Chords.mscz -------------------------------------------------------------------------------- /test/misc scores/In_the_hall_of_the_mountain_King.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/In_the_hall_of_the_mountain_King.mscz -------------------------------------------------------------------------------- /test/misc scores/Jazz_Reharmonization_Test_1.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/Jazz_Reharmonization_Test_1.mscz -------------------------------------------------------------------------------- /test/misc scores/Jesus_Loves_Me-chords only compare.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/Jesus_Loves_Me-chords only compare.mscz -------------------------------------------------------------------------------- /test/misc scores/Jesus_Loves_Me.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/Jesus_Loves_Me.mscz -------------------------------------------------------------------------------- /test/misc scores/Maidens_Prayer.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/Maidens_Prayer.mscz -------------------------------------------------------------------------------- /test/misc scores/Marcha_Nupcial_-_Mendelssohn.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/Marcha_Nupcial_-_Mendelssohn.mscz -------------------------------------------------------------------------------- /test/misc scores/Misc Chords.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/Misc Chords.mscz -------------------------------------------------------------------------------- /test/misc scores/Moonlight_Sonata_Jazz_Lead_Sheet.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/Moonlight_Sonata_Jazz_Lead_Sheet.mscz -------------------------------------------------------------------------------- /test/misc scores/On_the_Manchurian_Hills_-_melody_wchords.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/On_the_Manchurian_Hills_-_melody_wchords.mscz -------------------------------------------------------------------------------- /test/misc scores/Realize Expand Compare.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/Realize Expand Compare.mscz -------------------------------------------------------------------------------- /test/misc scores/Sleep_Soond_Ida_Moarnin.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/Sleep_Soond_Ida_Moarnin.mscz -------------------------------------------------------------------------------- /test/misc scores/St._Louis_Blues.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/St._Louis_Blues.mscz -------------------------------------------------------------------------------- /test/misc scores/Traditional_music_-_Connaughtmans_Rambles_D_major__B_minor.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/Traditional_music_-_Connaughtmans_Rambles_D_major__B_minor.mscz -------------------------------------------------------------------------------- /test/misc scores/Twinkle_Twinkle_Little_Star.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/Twinkle_Twinkle_Little_Star.mscz -------------------------------------------------------------------------------- /test/misc scores/Whiskey_in_the_Jar.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/Whiskey_in_the_Jar.mscz -------------------------------------------------------------------------------- /test/misc scores/elsewhere-test.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/elsewhere-test.mscz -------------------------------------------------------------------------------- /test/misc scores/prune test.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/misc scores/prune test.mscz -------------------------------------------------------------------------------- /test/regression/expected test results/Chord_Symbol_Voicings_for_Playback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/regression/expected test results/Chord_Symbol_Voicings_for_Playback.json -------------------------------------------------------------------------------- /test/regression/expected test results/In_the_Hall_of_the_Mountain_King.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/regression/expected test results/In_the_Hall_of_the_Mountain_King.json -------------------------------------------------------------------------------- /test/regression/expected test results/Indian_Summer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/regression/expected test results/Indian_Summer.json -------------------------------------------------------------------------------- /test/regression/expected test results/Moonlight_Sonata_(leadsheet).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/regression/expected test results/Moonlight_Sonata_(leadsheet).json -------------------------------------------------------------------------------- /test/regression/expected test results/Night_and_Day rev5(Guiter chord).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/regression/expected test results/Night_and_Day rev5(Guiter chord).json -------------------------------------------------------------------------------- /test/regression/expected test results/Parentheses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/regression/expected test results/Parentheses.json -------------------------------------------------------------------------------- /test/regression/expected test results/The_Entertainer_UrbanSmash_Solo_by_Scott_Joplin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/regression/expected test results/The_Entertainer_UrbanSmash_Solo_by_Scott_Joplin.json -------------------------------------------------------------------------------- /test/regression/expected test results/The_Swan_-_Jazz_Lead_Sheet__Peter_Cole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/regression/expected test results/The_Swan_-_Jazz_Lead_Sheet__Peter_Cole.json -------------------------------------------------------------------------------- /test/regression/expected test results/Twinkle_Twinkle_Little_Star.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/regression/expected test results/Twinkle_Twinkle_Little_Star.json -------------------------------------------------------------------------------- /test/regression/test files/Chord_Symbol_Voicings_for_Playback.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/regression/test files/Chord_Symbol_Voicings_for_Playback.mscz -------------------------------------------------------------------------------- /test/regression/test files/In_the_Hall_of_the_Mountain_King.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/regression/test files/In_the_Hall_of_the_Mountain_King.mscz -------------------------------------------------------------------------------- /test/regression/test files/Indian_Summer.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/regression/test files/Indian_Summer.mscz -------------------------------------------------------------------------------- /test/regression/test files/Moonlight_Sonata_(leadsheet).mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/regression/test files/Moonlight_Sonata_(leadsheet).mscz -------------------------------------------------------------------------------- /test/regression/test files/Night_and_Day rev5(Guiter chord).mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/regression/test files/Night_and_Day rev5(Guiter chord).mscz -------------------------------------------------------------------------------- /test/regression/test files/Parentheses.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/regression/test files/Parentheses.mscz -------------------------------------------------------------------------------- /test/regression/test files/Patterns.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/regression/test files/Patterns.mscz -------------------------------------------------------------------------------- /test/regression/test files/The_Entertainer_UrbanSmash_Solo_by_Scott_Joplin.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/regression/test files/The_Entertainer_UrbanSmash_Solo_by_Scott_Joplin.mscz -------------------------------------------------------------------------------- /test/regression/test files/The_Swan_-_Jazz_Lead_Sheet__Peter_Cole.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/regression/test files/The_Swan_-_Jazz_Lead_Sheet__Peter_Cole.mscz -------------------------------------------------------------------------------- /test/regression/test files/Twinkle_Twinkle_Little_Star.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshepherd/ExpandChordSymbols/HEAD/test/regression/test files/Twinkle_Twinkle_Little_Star.mscz --------------------------------------------------------------------------------