snapshots + fix default anchor for lefthand

This commit is contained in:
Felix Roos 2023-07-13 01:09:53 +02:00
parent 70fe8f14e3
commit ffeda19ce5
3 changed files with 3838 additions and 3889 deletions

View file

@ -51,9 +51,9 @@ const triads = {
};
export const voicingRegistry = {
lefthand: { dictionary: lefthand, range: ['F3', 'A4'], mode: 'below', anchor: 'c5' },
triads: { dictionary: triads, mode: 'below', anchor: 'c5' },
guidetones: { dictionary: guidetones, mode: 'above', anchor: 'g4' },
lefthand: { dictionary: lefthand, range: ['F3', 'A4'], mode: 'below', anchor: 'a4' },
triads: { dictionary: triads, mode: 'below', anchor: 'a4' },
guidetones: { dictionary: guidetones, mode: 'above', anchor: 'a4' },
};
export const setVoicingRange = (name, range) => addVoicings(name, voicingRegistry[name].dictionary, range);