Browse Source

Claudia-Launcher: Enable ardour3 jack-session in rooms, now fixed

tags/v0.9.0
falkTX 12 years ago
parent
commit
443a9b94ed
2 changed files with 3 additions and 7 deletions
  1. +1
    -4
      src/claudia_database.py
  2. +2
    -3
      src/claudia_launcher.py

+ 1
- 4
src/claudia_database.py View File

@@ -26,13 +26,10 @@ USING_KXSTUDIO = False

# (L, D, L, V, VST-Mode, T, M, MIDI-Mode) -> ( LADSPA, DSSI, LV2, VST, VST-Mode, Transport, MIDI, MIDI-Mode)

# FIXME - broken upstream
# ardour3 JS

list_DAW = [
# Package AppName Type Binary Icon Template? Level Rel.-Model (L, D, L, V, VST-Mode, T, M, MIDI-Mode) (doc-file, website)
[ "ardour", "Ardour 2.8", "DAW", "ardour2", "ardour", TEMPLATE_YES, LEVEL_0, "OpenSource", (1, 0, 1, 0, "", 1, 0, "ALSA"), ("file:///usr/share/kxstudio/docs/ardour.pdf", "http://www.ardour.org/") ],
[ "ardour3", "Ardour 3.0", "DAW", "ardour3", "ardour", TEMPLATE_YES, LEVEL_0, "OpenSource", (1, 0, 1, 1, "Native", 1, 1, "JACK"), ("file:///usr/share/kxstudio/docs/ardour.pdf", "http://www.ardour.org/") ],
[ "ardour3", "Ardour 3.1", "DAW", "ardour3", "ardour", TEMPLATE_YES, LEVEL_JS, "OpenSource", (1, 0, 1, 1, "Native", 1, 1, "JACK"), ("file:///usr/share/kxstudio/docs/ardour.pdf", "http://www.ardour.org/") ],

[ "ariamaestosa", "Aria Maestosa", "MIDI Sequencer", "Aria", "aria", TEMPLATE_NO, LEVEL_0, "OpenSource", (0, 0, 0, 0, "", 0, 1, "ALSA | JACK"), ("", "http://ariamaestosa.sourceforge.net/") ],



+ 2
- 3
src/claudia_launcher.py View File

@@ -403,9 +403,8 @@ class ClaudiaLauncher(QWidget, ui_claudia_launcher.Ui_ClaudiaLauncherW):
tmplte_cmd = binary
tmplte_cmd += " '%s'" % (os.path.basename(tmplte_folder) if self.callback_isLadishRoom() else tmplte_folder)

# FIXME - broken upstream
#if self.callback_isLadishRoom():
#tmplte_lvl = "jacksession"
if self.callback_isLadishRoom():
tmplte_lvl = "jacksession"

elif app == "composite":
tmplte_file = os.path.join(proj_folder, "Composite_%i.h2song" % rand_check)


Loading…
Cancel
Save