Re: Bundling Lilypond with project

2022-08-20 Thread DoubleFelix
Nevermind, I'm stupid. They were right above the source code downloads. On Sat, Aug 20, 2022 at 4:39 PM DoubleFelix wrote: > So I'm looking at the download page and I don't see any downloads for the > 2.23 binaries. Am I missing something, or do I need to compile them myself? > > On

Re: Bundling Lilypond with project

2022-08-20 Thread DoubleFelix
So I'm looking at the download page and I don't see any downloads for the 2.23 binaries. Am I missing something, or do I need to compile them myself? On Sat, Aug 20, 2022 at 10:40 AM DoubleFelix wrote: > Awesome! Thank you! I've heard about the Cairo backend, but I kind of > stopped

Coloring just one note in a chord

2022-08-20 Thread DoubleFelix
I have a basic staff defined like so: \version "2.22.2" \language "english" \new Staff { \key c \major \clef treble \numericTimeSignature < f' g' d' >1 \bar "|." } I want to make the g' note head colored in green, but if I try this, I get syntax errors about an unexpected \override: \override

Re: Bundling Lilypond with project

2022-08-20 Thread DoubleFelix
to hear that the release is approaching. Thank you so much for all this information. I also didn't know that 2.23 was static. On Sat, Aug 20, 2022 at 1:59 AM Jean Abou Samra wrote: > > > Le 20 août 2022 à 05:41, DoubleFelix a écrit : > >  > Hello, > I'm making a python

Bundling Lilypond with project

2022-08-19 Thread DoubleFelix
Hello, I'm making a python application that uses LilyPond, but in order to make it completely portable, I need to bundle LilyPond with my application. It's licensed under GPL, so if I'm reading this right I should be able to do that as long as I make my own project GPL (already done). I just want

Re: Piping contents of SVG directly to stdout

2022-07-19 Thread DoubleFelix
Ohhh, I missed the part about Cairo not working for cross-compilation yet. My bad. On Tue, Jul 19, 2022 at 8:51 AM Jean Abou Samra wrote: > Le 19/07/2022 à 15:43, DoubleFelix a écrit : > > > > Have you installed the necessary packages as explained in > > > https:

Re: Piping contents of SVG directly to stdout

2022-07-19 Thread DoubleFelix
> > Have you installed the necessary packages as explained in > > https://lilypond.org/doc/v2.23/Documentation/contributor/requirements-for-compiling-lilypond#ubuntu > Ah, I had to install a C compiler. I just found instructions for how to do that on SO. So now I have make install ran, so how can

Re: Piping contents of SVG directly to stdout

2022-07-18 Thread DoubleFelix
o some textual explanation... > > I would be interested in a web extension which would interpret directly > Lilypond code into SVG files, it that is possible... > > *Silvain* > > Le 18.07.22 à 20:33, David Wright a écrit : > > On Mon 18 Jul 2022 at 11:28:26 (-0500), Doubl

Re: Piping contents of SVG directly to stdout

2022-07-18 Thread DoubleFelix
My gosh it's that simple. I feel laughably stupid right now. On Mon, Jul 18, 2022 at 1:33 PM David Wright wrote: > On Mon 18 Jul 2022 at 11:28:26 (-0500), DoubleFelix wrote: > > > > > Felix, I’m curious what you mean by cropping the file. Sounds to me > like > > >

Re: Piping contents of SVG directly to stdout

2022-07-18 Thread DoubleFelix
To William: > Felix, I’m curious what you mean by cropping the file. Sounds to me like > you are trying to just write a small snippet of music, maybe a few > measures, and not have the output flooded by whitespace all around the size > of an A4 paper? This is also similar to what I was using

Re: Piping contents of SVG directly to stdout

2022-07-17 Thread DoubleFelix
comes up. On Sun, Jul 17, 2022 at 4:32 PM Jean Abou Samra wrote: > Again, please keep the list in the recipients. In your mail client, > click "Reply to all", not "Reply". > > Le 17/07/2022 à 23:19, DoubleFelix a écrit : > > Oh I see. I looked at compiling

Piping contents of SVG directly to stdout

2022-07-15 Thread DoubleFelix
Hello, I'm using lilypond to programmatically generate sheet music. I already have a system in place to crop the SVGs, but now I need to load them in my software. I could use the default behavior of letting lilypond write to some file, and then reading it, but file I/O tends to be pretty