Bugfix: recognize Cb as a valid pitch.

This commit is contained in:
Jonathan Bernard 2023-02-07 12:07:55 -06:00
parent 2acfb42a38
commit e832b91443
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# Package
version = "0.4.0"
version = "0.4.1"
author = "Jonathan Bernard"
description = "Chord chart formatter compatible with Planning Center Online"
license = "MIT"

View File

@ -189,7 +189,7 @@ func parsePitch*(ctx: ParserContext, keyValue: string): ChordChartPitch =
of "gs", "gis", "g#", "ab", "a♭", "af", "aes": return ChordChartPitch.Af
of "g𝄪", "a", "a♮", "b𝄫": return ChordChartPitch.A
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 "b𝄪", "cs", "cis", "c#", "df", "db", "des": return ChordChartPitch.Df
of "c𝄪", "d", "e𝄫": return ChordChartPitch.D

View File

@ -1,4 +1,4 @@
const PCO_CHORDS_VERSION* = "0.4.0"
const PCO_CHORDS_VERSION* = "0.4.1"
const USAGE* = """Usage:
pco_chords [options]