Re: musicxml2ly chord names

2024-01-28 Thread Knute Snortum
On Sun, Jan 28, 2024 at 8:50 AM Silvain Dupertuis < silvain-dupert...@bluewin.ch> wrote: > These first 2 lines of the dictionary for chords in musicxml2ly > contains a faulty 5 for simple major and minor chords > (I discovered it with a conversion from a MuseScore sheet converted into > xml) > >

Re: Incorrect transposition via musicxml2ly

2024-01-28 Thread Knute Snortum
On Sun, Jan 28, 2024 at 10:30 AM Alexander Slávik < slavik.alexan...@seznam.cz> wrote: > > I can write this up as an issue unless you want to... > > Please do so; thanks! > It is now https://gitlab.com/lilypond/lilypond/-/issues/6693. I hope I explained it sufficiently. -- Knute Snortum

Re: Incorrect transposition via musicxml2ly

2024-01-28 Thread Alexander Slávik
> I can write this up as an issue unless you want to... Please do so; thanks! AS

musicxml2ly chord names

2024-01-28 Thread Silvain Dupertuis
These first 2 lines of the dictionary for chords in musicxml2ly contains a faulty 5 for simple major and minor chords (I discovered it with a conversion from a MuseScore sheet converted into xml) chordkind_dict = { 'major': ':5', 'minor': ':m5', should be chordkind_dict = {

Re: Incorrect transposition via musicxml2ly

2024-01-28 Thread Knute Snortum
On Sun, Jan 28, 2024 at 12:01 AM Alexander Slávik < slavik.alexan...@seznam.cz> wrote: > Seems like this didn't get much attention… > It looks like a bug to me. I can write this up as an issue unless you want to... -- Knute Snortum

Warnings during make

2024-01-28 Thread Jean-Charles Malahieude
On a fresh repo, as of cf3b8d901949a4a6d811755ec8d6afa2a1f5a067 the build is successful, but: Making lily/out/main.o < cc main.cc: In function 'void parse_argv(int, char**)': main.cc:641:23: warning: loop variable 'keyval' creates a copy from type 'const std::pair, std::__cxx11::basic_string

Re: MMRests cause weirdness following \cadenzaOff

2024-01-28 Thread bobr...@centrum.is
It's been accepted as a bug. -David - Original Message - > From: "Craig Fearing" > To: "bug-lilypond" > Sent: Sunday, January 28, 2024 8:16:15 AM > Subject: Re: MMRests cause weirdness following \cadenzaOff > Using 2.25.12 I got this: > > Craig > > On 2024-01-27 20:24,

Re: MMRests cause weirdness following \cadenzaOff

2024-01-28 Thread Craig Fearing
Using 2.25.12 I got this: Craig On 2024-01-27 20:24, bobr...@centrum.is wrote: %%% BEGIN LILY-CODE %%% \version "2.24.2" melody = \relative c' { \repeat unfold 4 { c4 d e f } \cadenzaOn \repeat unfold 4 { c,4 c c c } \cadenzaOff \bar "||" \break \repeat unfold 5 { r1 } %

Re: Incorrect transposition via musicxml2ly

2024-01-28 Thread Alexander Slávik
Seems like this didn't get much attention… AS