Key of C should use flats for accidentals.

This commit is contained in:
Jonathan Bernard 2024-03-21 18:51:48 -05:00
parent 8271129b90
commit 2712f9ff52
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# Package # Package
version = "0.5.1" version = "0.5.2"
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"

View File

@ -88,9 +88,9 @@ func renderPitchInKey*(
var scaleNames: array[(ord(high(ChordChartPitch)) + 1), string] var scaleNames: array[(ord(high(ChordChartPitch)) + 1), string]
if useSharps.isNone: if useSharps.isNone:
scaleNames = case key 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"] ["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"] ["A♭", "A", "B♭", "B", "C", "D♭", "D", "E♭", "E", "F", "G♭", "G"]
of Gf: of Gf:
["A♭", "A", "B♭", "C♭", "C", "D♭", "D", "E♭", "E", "F", "G♭", "G"] ["A♭", "A", "B♭", "C♭", "C", "D♭", "D", "E♭", "E", "F", "G♭", "G"]

View File

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