Bugfix: recognize Cb as a valid pitch.
This commit is contained in:
parent
2acfb42a38
commit
e832b91443
@ -1,6 +1,6 @@
|
|||||||
# Package
|
# Package
|
||||||
|
|
||||||
version = "0.4.0"
|
version = "0.4.1"
|
||||||
author = "Jonathan Bernard"
|
author = "Jonathan Bernard"
|
||||||
description = "Chord chart formatter compatible with Planning Center Online"
|
description = "Chord chart formatter compatible with Planning Center Online"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
@ -189,7 +189,7 @@ func parsePitch*(ctx: ParserContext, keyValue: string): ChordChartPitch =
|
|||||||
of "gs", "gis", "g#", "ab", "a♭", "af", "aes": return ChordChartPitch.Af
|
of "gs", "gis", "g#", "ab", "a♭", "af", "aes": return ChordChartPitch.Af
|
||||||
of "g𝄪", "a", "a♮", "b𝄫": return ChordChartPitch.A
|
of "g𝄪", "a", "a♮", "b𝄫": return ChordChartPitch.A
|
||||||
of "as", "ais", "a#", "bf", "bb", "b♭", "bes", "c𝄫": return ChordChartPitch.Bf
|
of "as", "ais", "a#", "bf", "bb", "b♭", "bes", "c𝄫": return ChordChartPitch.Bf
|
||||||
of "a𝄪", "b", "ces", "cf": return ChordChartPitch.B
|
of "a𝄪", "b", "cb", "ces", "cf": return ChordChartPitch.B
|
||||||
of "bs", "bis", "b#", "c", "d𝄫": return ChordChartPitch.C
|
of "bs", "bis", "b#", "c", "d𝄫": return ChordChartPitch.C
|
||||||
of "b𝄪", "cs", "cis", "c#", "df", "db", "des": return ChordChartPitch.Df
|
of "b𝄪", "cs", "cis", "c#", "df", "db", "des": return ChordChartPitch.Df
|
||||||
of "c𝄪", "d", "e𝄫": return ChordChartPitch.D
|
of "c𝄪", "d", "e𝄫": return ChordChartPitch.D
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
const PCO_CHORDS_VERSION* = "0.4.0"
|
const PCO_CHORDS_VERSION* = "0.4.1"
|
||||||
|
|
||||||
const USAGE* = """Usage:
|
const USAGE* = """Usage:
|
||||||
pco_chords [options]
|
pco_chords [options]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user