From dafc160f18c2e34e755dc954c14691c28ddcbdcd Mon Sep 17 00:00:00 2001 From: Nils <> Date: Mon, 6 Apr 2020 22:44:15 +0200 Subject: [PATCH] add tagline, bump version number/year --- desktop/desktop.desktop | 1 - engine/config.py | 8 ++++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/desktop/desktop.desktop b/desktop/desktop.desktop index 24540d3..159f565 100644 --- a/desktop/desktop.desktop +++ b/desktop/desktop.desktop @@ -9,5 +9,4 @@ Icon=laborejo Terminal=false StartupNotify=false Categories=AudioVideo;Audio;X-Recorders;X-Multitrack;X-Jack; -X-NSM-capable=true Version=1.0 diff --git a/engine/config.py b/engine/config.py index 68bbaeb..f4492c7 100644 --- a/engine/config.py +++ b/engine/config.py @@ -16,9 +16,13 @@ METADATA={ #to distinguish between compatible program versions. In basic programs this will just be e.g. #patroneo. But in complex programs with a bright future it will be "laborejo1" "laborejo2" etc. "shortName" : "laborejo", + + #A very short description used in various places: Desktop file, overview on the website, + #release announcements, entries in software directories etc. + "tagline" : 'MIDI sequencer based on classical music notation', "version" : "2.0", - "year" : "2019", + "year" : "2020", "author" : "Laborejo Software Suite", "url" : "https://www.laborejo.org/laborejo", @@ -36,7 +40,7 @@ METADATA={ #How many audio outputs do you want? must be pairs. These are just unconnected jack outputs #that need to be connected internally to instrument outputs like fluidsynth - "cboxOutputs" : 2 * 1, #metronome + "cboxOutputs" : 1 * 2, #metronome #Does the program use a metronome? In this case you need at least two cboxOutputs above "metronome" : True,