From 53ba695d58a80d7b9002d3cdf5e50478ef090ed8 Mon Sep 17 00:00:00 2001 From: Tobias Grupe Date: Fri, 6 Jan 2023 02:41:51 +0100 Subject: [PATCH 1/3] Master Out Patching fixed --- dawsession/SessionCreator.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dawsession/SessionCreator.py b/dawsession/SessionCreator.py index 1b4b503..3a762de 100644 --- a/dawsession/SessionCreator.py +++ b/dawsession/SessionCreator.py @@ -44,6 +44,10 @@ def generate_hwout_item(channel): def create_reaper_session(sheet): project = Project() + project.props = [ + ["MASTERHWOUT", ""] + ] + for item in sheet.get_channel_model(): track = Track() name = item.get_name() @@ -59,7 +63,7 @@ def create_reaper_session(sheet): ["PEAKCOL", convert_sheet_color_to_reaper_color(item.get_color())], ["REC", generate_rec_item(item.get_channel_dlive())], ["TRACKHEIGHT", "40 0 0 0 0 0"], - ["HWOUT", generate_hwout_item(item.get_channel_dlive())] + ["HWOUT", generate_hwout_item(item.get_channel_dlive())], ] project.add(track) From 078950340f0289d43d3b6701db5689625698656f Mon Sep 17 00:00:00 2001 From: Tobias Grupe Date: Fri, 6 Jan 2023 02:42:24 +0100 Subject: [PATCH 2/3] version updated --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index f45c9d6..724a32c 100644 --- a/main.py +++ b/main.py @@ -22,7 +22,7 @@ logging.basicConfig(filename='main.log', level=logging.DEBUG) -version = "2.0.0" +version = "2.0.1" is_network_communication_allowed = dliveConstants.allow_network_communication From 58f64ca6485c927973abc5669e3b80984a3dd241 Mon Sep 17 00:00:00 2001 From: Tobias Grupe Date: Fri, 6 Jan 2023 02:43:31 +0100 Subject: [PATCH 3/3] version updated --- dawsession/SessionCreator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dawsession/SessionCreator.py b/dawsession/SessionCreator.py index 3a762de..a818c9e 100644 --- a/dawsession/SessionCreator.py +++ b/dawsession/SessionCreator.py @@ -63,7 +63,7 @@ def create_reaper_session(sheet): ["PEAKCOL", convert_sheet_color_to_reaper_color(item.get_color())], ["REC", generate_rec_item(item.get_channel_dlive())], ["TRACKHEIGHT", "40 0 0 0 0 0"], - ["HWOUT", generate_hwout_item(item.get_channel_dlive())], + ["HWOUT", generate_hwout_item(item.get_channel_dlive())] ] project.add(track)