Skip to content

Commit

Permalink
Merge branch 'develop' for version 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
essej committed Jan 7, 2023
2 parents 47ed1cf + ccebf1b commit 6b293ef
Show file tree
Hide file tree
Showing 2,331 changed files with 191,222 additions and 69,808 deletions.
12 changes: 10 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ endif()
# `project()` command. `project()` sets up some helpful variables that describe source/binary
# directories, and the current project version. This is a standard CMake command.

project(SonoBus VERSION 1.5.1)
project(SonoBus VERSION 1.6.0)

set(BUILDVERSION 74)
set(BUILDVERSION 75)


# If you've installed JUCE somehow (via a package manager, or directly using the CMake install
Expand Down Expand Up @@ -314,6 +314,7 @@ function(sono_add_custom_plugin_target target_name product_name formats is_instr
Source/SonobusPluginProcessor.cpp
Source/SonobusPluginProcessor.h
Source/SonobusTypes.h
Source/VDONinjaView.h
Source/VersionInfo.cpp
Source/VersionInfo.h
Source/WaveformTransportComponent.h
Expand Down Expand Up @@ -476,6 +477,8 @@ function(sono_add_custom_plugin_target target_name product_name formats is_instr
images/expand_arrow_active.svg
images/expand_arrow_inactive.svg
images/eyedropper.svg
images/eye.svg
images/eye-off.svg
images/folder_icon.svg
images/hear-others.svg
images/hold.svg
Expand All @@ -484,6 +487,8 @@ function(sono_add_custom_plugin_target target_name product_name formats is_instr
images/incoming_disallowed.svg
images/keyboard.svg
images/keyboard_disabled.svg
images/keypad-num-disabled.svg
images/keypad-num.svg
images/lgc_bar.wav
images/link.svg
images/link_all.svg
Expand All @@ -495,6 +500,7 @@ function(sono_add_custom_plugin_target target_name product_name formats is_instr
images/mic.svg
images/mic_disabled.svg
images/mic_pointing.svg
images/mesg-unread.svg
images/move_updown.svg
images/mute-others.svg
images/network.svg
Expand All @@ -520,6 +526,7 @@ function(sono_add_custom_plugin_target target_name product_name formats is_instr
images/record_active_alt.svg
images/rectape.svg
images/reset_buffer_icon.svg
images/send.svg
images/send_group.svg
images/send_group_small.svg
images/replay_icon.svg
Expand Down Expand Up @@ -579,6 +586,7 @@ function(sono_add_custom_plugin_target target_name product_name formats is_instr
PRIVATE
juce::juce_audio_utils
juce::juce_dsp
juce::juce_cryptography
juce::juce_audio_plugin_client

ff_meters
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ one at aoo.sonobus.net, you can build the headless aooserver code at
> https://github.com/essej/aooserver
The standalone SonoBus application also provides a connection server internally,
which you can connect to on port 10998, or port forward TCP/UDP 10998 from your internet
which you can connect to on port 10999, or port forward TCP/UDP 10999 from your internet
router to the machine you are running it on.


Expand Down
4 changes: 2 additions & 2 deletions Source/AutoUpdater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ void LatestVersionCheckerAndUpdater::checkForNewVersion (bool showAlerts)
if (! isThreadRunning())
{
showAlertWindows = showAlerts;
startThread (3);
startThread (Thread::Priority::low);
}
}

Expand Down Expand Up @@ -300,7 +300,7 @@ class DownloadAndInstallThread : private ThreadWithProgressWindow
: ThreadWithProgressWindow ("Downloading New Version", true, true),
asset (a), targetFolder (t), completionCallback (std::move (cb))
{
launchThread (3);
launchThread (Thread::Priority::low);
}

private:
Expand Down
3 changes: 3 additions & 0 deletions Source/ChannelGroup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ static String monDestStartKey("mondeststart");
static String monDestChannelsKey("mondestchans");
static String sendMainMixKey("sendmainmix");
static String invertPolarityKey("invertpolarity");
static String mutedKey("muted");


static String stereoPanListKey("StereoPanners");
Expand Down Expand Up @@ -629,6 +630,7 @@ ValueTree ChannelGroupParams::getValueTree() const
channelGroupTree.setProperty(gainKey, gain, nullptr);
channelGroupTree.setProperty(channelStartIndexKey, chanStartIndex, nullptr);
channelGroupTree.setProperty(numChannelsKey, numChannels, nullptr);
channelGroupTree.setProperty(mutedKey, muted, nullptr);

channelGroupTree.setProperty(peerPan1Key, panStereo[0], nullptr);
channelGroupTree.setProperty(peerPan2Key, panStereo[1], nullptr);
Expand Down Expand Up @@ -671,6 +673,7 @@ void ChannelGroupParams::setFromValueTree(const ValueTree & channelGroupTree)
gain = channelGroupTree.getProperty(gainKey, gain);
chanStartIndex = channelGroupTree.getProperty(channelStartIndexKey, chanStartIndex);
numChannels = channelGroupTree.getProperty(numChannelsKey, numChannels);
muted = channelGroupTree.getProperty(mutedKey, muted);
//pan = channelGroupTree.getProperty(peerMonoPanKey, pan);
panStereo[0] = channelGroupTree.getProperty(peerPan1Key, panStereo[0]);
panStereo[1] = channelGroupTree.getProperty(peerPan2Key, panStereo[1]);
Expand Down
Loading

0 comments on commit 6b293ef

Please sign in to comment.