Hello Paolo,

I really like Spontini and created a docker setup to test it. I just
started it again. It takes some time to build, but then one can use it
from http://localhost:8000/spontini-editor/.

Best
Jan-Peter

Am 11.02.22 um 00:33 schrieb Paolo Prete:
> Hello,
>
> I have published a new version of Spontini-Editor (1.12-alpha): it is
> still in the testing phase and therefore not available in the list of
> releases, but it is already working and it can be downloaded from the
> main project page.
>
> https://github.com/paopre/Spontini
>
> The important features of this version are:
>
> 1) support for PDF output, in order to speed up the compilation of
> scores. Thanks to the PDF mode, instead of SVG, the compilation time
> drastically decreases: once the score has been sketched it is possible
> to switch to SVG mode, in order to complete it through tweaks with the
> mouse.
>
> 2) MIDI input: it is now possible to enter notes / chords via a MIDI
> device, using the Web MIDI API on both Chrome and Firefox. It is also
> possible to insert these notes automatically in the tables for the
> creation of piano / cross-staff music.
> In this case the notes are automatically inserted in the upper staff,
> but they can then be quickly moved to the lower staff (or vice versa)
> with the arrow keys of the keyboard (see the image below)
>
> https://github.com/paopre/Spontini/blob/master/documentation/images/midiInput.gif
>
> https://github.com/paopre/Spontini/blob/master/documentation/miscellaneous.md
>
> HTH,
> P.

Attachment: docker-compose.yml
Description: application/yaml

FROM ubuntu

RUN apt-get update
RUN apt-get install -y tzdata
RUN apt-get install -y python3 python3-tk python3-pip python3-venv git
RUN apt-get install -y lilypond
RUN useradd -ms /bin/bash spontini

USER spontini
WORKDIR /home/spontini

RUN git clone https://github.com/paopre/Spontini.git

WORKDIR  /home/spontini/Spontini

CMD python3 SpontiniServer.py nogui
#
# Created (28/11/2020) by Paolo-Prete.
# This file is part of Spontini-Editor project.
#
# Spontini-Editor is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# Spontini-Editor is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Spontini-Editor. If not, see <http://www.gnu.org/licenses/>.
#

cli = {
  "app":"spontini_server_core:asgi",
  "host":"0.0.0.0",
  "port":8000,
# "ssl_keyfile":"key.pem",
# "ssl_certfile":"cert.pem",
  "log_level":"info",
  "timeout_keep_alive":1000
}

Reply via email to