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)
>
> c
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
> I can write this up as an issue unless you want to...
Please do so; thanks!
AS
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 = {
'major':
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
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 >'
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, bobr...@centru
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 } %
Seems like this didn't get much attention…
AS