From 2712f9ff52e2897461323837ad1e1a05eaf40e51 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Thu, 21 Mar 2024 18:51:48 -0500 Subject: [PATCH] Key of C should use flats for accidentals. --- pco_chords.nimble | 2 +- src/pco_chordspkg/ast.nim | 4 ++-- src/pco_chordspkg/cliconstants.nim | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pco_chords.nimble b/pco_chords.nimble index 99d5d60..994b344 100644 --- a/pco_chords.nimble +++ b/pco_chords.nimble @@ -1,6 +1,6 @@ # Package -version = "0.5.1" +version = "0.5.2" author = "Jonathan Bernard" description = "Chord chart formatter compatible with Planning Center Online" license = "MIT" diff --git a/src/pco_chordspkg/ast.nim b/src/pco_chordspkg/ast.nim index 11f73ec..38a8bd8 100644 --- a/src/pco_chordspkg/ast.nim +++ b/src/pco_chordspkg/ast.nim @@ -88,9 +88,9 @@ func renderPitchInKey*( var scaleNames: array[(ord(high(ChordChartPitch)) + 1), string] if useSharps.isNone: scaleNames = case key - of A, B, C, D, E, G: + of A, B, D, E, G: ["G#", "A", "A#", "B", "C", "C#", "D", "D#", "E", "F", "F#", "G"] - of Af, Bf, Df, Ef, F: + of Af, Bf, C, Df, Ef, F: ["A♭", "A", "B♭", "B", "C", "D♭", "D", "E♭", "E", "F", "G♭", "G"] of Gf: ["A♭", "A", "B♭", "C♭", "C", "D♭", "D", "E♭", "E", "F", "G♭", "G"] diff --git a/src/pco_chordspkg/cliconstants.nim b/src/pco_chordspkg/cliconstants.nim index 3d3339a..b5d1ec8 100644 --- a/src/pco_chordspkg/cliconstants.nim +++ b/src/pco_chordspkg/cliconstants.nim @@ -1,4 +1,4 @@ -const PCO_CHORDS_VERSION* = "0.5.1" +const PCO_CHORDS_VERSION* = "0.5.2" const USAGE* = """Usage: pco_chords [options]