Skip to content

Commit

Permalink
Merge branch 'develop' for release 1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
essej committed Feb 26, 2023
2 parents c7f966a + 5801be2 commit 404bbb4
Show file tree
Hide file tree
Showing 13 changed files with 110 additions and 62 deletions.
4 changes: 2 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.6.1)
project(SonoBus VERSION 1.6.2)

set(BUILDVERSION 76)
set(BUILDVERSION 77)


# If you've installed JUCE somehow (via a package manager, or directly using the CMake install
Expand Down
51 changes: 30 additions & 21 deletions Source/SonobusPluginEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3799,32 +3799,41 @@ void SonobusAudioProcessorEditor::handleAsyncUpdate()

}

// now attempt to join group
if (ev.success) {

if (currConnectionInfo.groupName.isNotEmpty()) {

currConnectionInfo.timestamp = Time::getCurrentTime().toMilliseconds();
processor.addRecentServerConnectionInfo(currConnectionInfo);

processor.setWatchPublicGroups(false);

processor.joinServerGroup(currConnectionInfo.groupName, currConnectionInfo.groupPassword, currConnectionInfo.groupIsPublic);
// we might already have autojoined a group, only attempt if we haven't
if (processor.getCurrentJoinedGroup().isEmpty()) {

// now attempt to join group
if (ev.success) {

if (currConnectionInfo.groupName.isNotEmpty()) {

currConnectionInfo.timestamp = Time::getCurrentTime().toMilliseconds();
processor.addRecentServerConnectionInfo(currConnectionInfo);

processor.setWatchPublicGroups(false);

processor.joinServerGroup(currConnectionInfo.groupName, currConnectionInfo.groupPassword, currConnectionInfo.groupIsPublic);
}
else {
// we've connected but have not specified group, assume we want to see public groups
processor.setWatchPublicGroups(true);
mConnectView->updatePublicGroups();
}

mConnectView->updateServerFieldsFromConnectionInfo();

//mChatView->addNewChatMessage(SBChatEvent(SBChatEvent::SystemType, "", "", "", "", statstr));

}
else {
// we've connected but have not specified group, assume we want to see public groups
processor.setWatchPublicGroups(true);
mConnectView->updatePublicGroups();
// switch to group page
mConnectView->showActiveGroupTab();
}

mConnectView->updateServerFieldsFromConnectionInfo();

//mChatView->addNewChatMessage(SBChatEvent(SBChatEvent::SystemType, "", "", "", "", statstr));

}
else {
// switch to group page
mConnectView->showActiveGroupTab();
DBG("Already joined a group, update currConnectionInfo");
currConnectionInfo.groupName = processor.getCurrentJoinedGroup();
currConnectionInfo.userName = processor.getCurrentUsername();
}

updateServerStatusLabel(statstr, false);
Expand Down
41 changes: 39 additions & 2 deletions Source/SonobusPluginProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -733,9 +733,11 @@ mState (*this, &mUndoManager, "SonoBusAoO",
}
}



// use this to match our main app support dir
PropertiesFile::Options options;
options.applicationName = "dummy";
options.applicationName = "SonoBus";
options.filenameSuffix = ".xml";
options.osxLibrarySubFolder = "Application Support/SonoBus";
#if JUCE_LINUX
Expand All @@ -746,6 +748,8 @@ mState (*this, &mUndoManager, "SonoBusAoO",

mSupportDir = options.getDefaultFile().getParentDirectory();



#if (JUCE_IOS)
mDefaultRecordDir = URL(File::getSpecialLocation (File::userDocumentsDirectory));
if (mDefaultRecordDir.isLocalFile()) {
Expand Down Expand Up @@ -835,6 +839,8 @@ mState (*this, &mUndoManager, "SonoBusAoO",
}

loadGlobalState();

moveOldMisplacedFiles();
}


Expand All @@ -847,6 +853,37 @@ SonobusAudioProcessor::~SonobusAudioProcessor()
cleanupAoo();
}

void SonobusAudioProcessor::moveOldMisplacedFiles()
{
// old dummy mistake location
PropertiesFile::Options dummyoptions;
dummyoptions.applicationName = "dummy";
dummyoptions.filenameSuffix = ".xml";
dummyoptions.osxLibrarySubFolder = "Application Support/SonoBus";
#if JUCE_LINUX
dummyoptions.folderName = "~/.config/sonobus";
#else
dummyoptions.folderName = "";
#endif
auto dummyloc = dummyoptions.getDefaultFile().getParentDirectory();

if (dummyloc.getFullPathName().contains("dummy") && dummyloc.exists()) {
// move any files from here into our real one... (and outside the iterator loop in case it gets mad)
std::vector<File> tomove;
for (auto entry : RangedDirectoryIterator(dummyloc, false)) {
tomove.push_back(entry.getFile());
}
for (auto & file : tomove) {
auto targfile = mSupportDir.getNonexistentChildFile(file.getFileNameWithoutExtension(), file.getFileExtension());
if (file.moveFileTo(targfile)) {
DBG("Moving old misplaced file: " << file.getFullPathName() << " to: " << targfile.getFullPathName());
}
}
}

}


void SonobusAudioProcessor::setUseSpecificUdpPort(int port)
{
mUseSpecificUdpPort = port;
Expand Down Expand Up @@ -4073,7 +4110,7 @@ int32_t SonobusAudioProcessor::handleClientEvents(const aoo_event ** events, int
if (e->result == 0){
DBG("Disconnected from server - " << String::fromUTF8(e->errormsg));

if (mReconnectAfterServerLoss.get() && !mReconnectTimer.isTimerRunning()) {
if (mCurrentJoinedGroup.isNotEmpty() && mReconnectAfterServerLoss.get() && !mReconnectTimer.isTimerRunning()) {
DBG("Starting reconnect timer");
mRecoveringFromServerLoss = true;
mReconnectTimer.startTimer(1000);
Expand Down
2 changes: 2 additions & 0 deletions Source/SonobusPluginProcessor.h
Original file line number Diff line number Diff line change
Expand Up @@ -916,6 +916,8 @@ class SonobusAudioProcessor : public AudioProcessor, public AudioProcessorValue
juce::var getAllLatInfo();
void sendReqLatInfoToAll();

void moveOldMisplacedFiles();

bool reconnectToMostRecent();


Expand Down
6 changes: 3 additions & 3 deletions mobile/Builds/Android/app/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ add_subdirectory (${OBOE_DIR} ./oboe)
add_library("cpufeatures" STATIC "${ANDROID_NDK}/sources/android/cpufeatures/cpu-features.c")
set_source_files_properties("${ANDROID_NDK}/sources/android/cpufeatures/cpu-features.c" PROPERTIES COMPILE_FLAGS "-Wno-sign-conversion -Wno-gnu-statement-expression")

add_definitions([[-DJUCE_ANDROID=1]] [[-DJUCE_ANDROID_API_VERSION=24]] [[-DJUCE_PUSH_NOTIFICATIONS=1]] [[-DJUCE_PUSH_NOTIFICATIONS_ACTIVITY="com/sonosaurus/sonobus/SonoBusActivity"]] [[-DJUCE_CONTENT_SHARING=1]] [[-DJUCE_ANDROID_GL_ES_VERSION_3_0=1]] [[-DJUCE_USE_CUSTOM_PLUGIN_STANDALONE_APP=1]] [[-DSONOBUS_BUILD_VERSION="1.4.9-74"]] [[-DUSE_CODEC_OPUS=1]] [[-DAOO_TIMEFILTER_CHECK=0]] [[-DAOO_STATIC]] [[-DJUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE=0]] [[-DJUCE_ANDROID_ACTIVITY_OVERRIDE_CLASSNAME="com_sonosaurus_sonobus_SonoBusActivity"]] [[-DJUCE_ANDROID_ACTIVITY_OVERRIDE_CLASSPATH="com/sonosaurus/sonobus/SonoBusActivity"]] [[-DJUCER_ANDROIDSTUDIO_7F0E4A25=1]] [[-DJUCE_APP_VERSION=1.6.1]] [[-DJUCE_APP_VERSION_HEX=0x10601]])
add_definitions([[-DJUCE_ANDROID=1]] [[-DJUCE_ANDROID_API_VERSION=24]] [[-DJUCE_PUSH_NOTIFICATIONS=1]] [[-DJUCE_PUSH_NOTIFICATIONS_ACTIVITY="com/sonosaurus/sonobus/SonoBusActivity"]] [[-DJUCE_CONTENT_SHARING=1]] [[-DJUCE_ANDROID_GL_ES_VERSION_3_0=1]] [[-DJUCE_USE_CUSTOM_PLUGIN_STANDALONE_APP=1]] [[-DSONOBUS_BUILD_VERSION="1.4.9-74"]] [[-DUSE_CODEC_OPUS=1]] [[-DAOO_TIMEFILTER_CHECK=0]] [[-DAOO_STATIC]] [[-DJUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE=0]] [[-DJUCE_ANDROID_ACTIVITY_OVERRIDE_CLASSNAME="com_sonosaurus_sonobus_SonoBusActivity"]] [[-DJUCE_ANDROID_ACTIVITY_OVERRIDE_CLASSPATH="com/sonosaurus/sonobus/SonoBusActivity"]] [[-DJUCER_ANDROIDSTUDIO_7F0E4A25=1]] [[-DJUCE_APP_VERSION=1.6.2]] [[-DJUCE_APP_VERSION_HEX=0x10602]])

include_directories( AFTER
"../../../JuceLibraryCode"
Expand All @@ -30,7 +30,7 @@ if(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG")
"../../../../deps/android/${ANDROID_ABI}"
)

add_definitions([[-DJUCE_USE_CUSTOM_PLUGIN_STANDALONE_APP=1]] [[-DSONOBUS_BUILD_VERSION="1.4.9-74"]] [[-DLOGLEVEL=2]] [[-DUSE_CODEC_OPUS=1]] [[-DAOO_TIMEFILTER_CHECK=0]] [[-DAOO_STATIC]] [[-DJUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE=0]] [[-DJUCE_ANDROID_ACTIVITY_OVERRIDE_CLASSNAME="com_sonosaurus_sonobus_SonoBusActivity"]] [[-DJUCE_ANDROID_ACTIVITY_OVERRIDE_CLASSPATH="com/sonosaurus/sonobus/SonoBusActivity"]] [[-DJUCER_ANDROIDSTUDIO_7F0E4A25=1]] [[-DJUCE_APP_VERSION=1.6.1]] [[-DJUCE_APP_VERSION_HEX=0x10601]] [[-DDEBUG=1]] [[-D_DEBUG=1]])
add_definitions([[-DJUCE_USE_CUSTOM_PLUGIN_STANDALONE_APP=1]] [[-DSONOBUS_BUILD_VERSION="1.4.9-74"]] [[-DLOGLEVEL=2]] [[-DUSE_CODEC_OPUS=1]] [[-DAOO_TIMEFILTER_CHECK=0]] [[-DAOO_STATIC]] [[-DJUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE=0]] [[-DJUCE_ANDROID_ACTIVITY_OVERRIDE_CLASSNAME="com_sonosaurus_sonobus_SonoBusActivity"]] [[-DJUCE_ANDROID_ACTIVITY_OVERRIDE_CLASSPATH="com/sonosaurus/sonobus/SonoBusActivity"]] [[-DJUCER_ANDROIDSTUDIO_7F0E4A25=1]] [[-DJUCE_APP_VERSION=1.6.2]] [[-DJUCE_APP_VERSION_HEX=0x10602]] [[-DDEBUG=1]] [[-D_DEBUG=1]])
include_directories( AFTER
"../../../../deps/aoo/lib"
"../../../../deps/aoo/deps"
Expand All @@ -47,7 +47,7 @@ elseif(JUCE_BUILD_CONFIGURATION MATCHES "RELEASE")
"../../../../deps/android/${ANDROID_ABI}"
)

add_definitions([[-DJUCE_USE_CUSTOM_PLUGIN_STANDALONE_APP=1]] [[-DSONOBUS_BUILD_VERSION="1.4.9-74"]] [[-DUSE_CODEC_OPUS=1]] [[-DAOO_TIMEFILTER_CHECK=0]] [[-DAOO_STATIC]] [[-DJUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE=0]] [[-DJUCE_ANDROID_ACTIVITY_OVERRIDE_CLASSNAME="com_sonosaurus_sonobus_SonoBusActivity"]] [[-DJUCE_ANDROID_ACTIVITY_OVERRIDE_CLASSPATH="com/sonosaurus/sonobus/SonoBusActivity"]] [[-DJUCER_ANDROIDSTUDIO_7F0E4A25=1]] [[-DJUCE_APP_VERSION=1.6.1]] [[-DJUCE_APP_VERSION_HEX=0x10601]] [[-DNDEBUG=1]])
add_definitions([[-DJUCE_USE_CUSTOM_PLUGIN_STANDALONE_APP=1]] [[-DSONOBUS_BUILD_VERSION="1.4.9-74"]] [[-DUSE_CODEC_OPUS=1]] [[-DAOO_TIMEFILTER_CHECK=0]] [[-DAOO_STATIC]] [[-DJUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE=0]] [[-DJUCE_ANDROID_ACTIVITY_OVERRIDE_CLASSNAME="com_sonosaurus_sonobus_SonoBusActivity"]] [[-DJUCE_ANDROID_ACTIVITY_OVERRIDE_CLASSPATH="com/sonosaurus/sonobus/SonoBusActivity"]] [[-DJUCER_ANDROIDSTUDIO_7F0E4A25=1]] [[-DJUCE_APP_VERSION=1.6.2]] [[-DJUCE_APP_VERSION_HEX=0x10602]] [[-DNDEBUG=1]])
include_directories( AFTER
"../../../../deps/aoo/lib"
"../../../../deps/aoo/deps"
Expand Down
4 changes: 2 additions & 2 deletions mobile/Builds/Android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.sonosaurus.sonobus" android:versionCode="79"
android:versionName="1.6.1">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.sonosaurus.sonobus" android:versionCode="80"
android:versionName="1.6.2">
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true"
android:xlargeScreens="true"/>
Expand Down
6 changes: 3 additions & 3 deletions mobile/Builds/iOS/Info-AUv3_AppExtension.plist
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>1.6.1</string>
<string>1.6.2</string>
<key>CFBundleVersion</key>
<string>79</string>
<string>80</string>
<key>NSHumanReadableCopyright</key>
<string>2023 Sonosaurus LLC</string>
<key>NSHighResolutionCapable</key>
Expand Down Expand Up @@ -76,7 +76,7 @@
<key>subtype</key>
<string>NBus</string>
<key>version</key>
<integer>67073</integer>
<integer>67074</integer>
<key>sandboxSafe</key>
<true/>
<key>tags</key>
Expand Down
6 changes: 3 additions & 3 deletions mobile/Builds/iOS/Info-Standalone_Plugin.plist
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>1.6.1</string>
<string>1.6.2</string>
<key>CFBundleVersion</key>
<string>79</string>
<string>80</string>
<key>NSHumanReadableCopyright</key>
<string>2023 Sonosaurus LLC</string>
<key>NSHighResolutionCapable</key>
Expand Down Expand Up @@ -79,7 +79,7 @@
<key>subtype</key>
<string>NBus</string>
<key>version</key>
<integer>67073</integer>
<integer>67074</integer>
</dict>
</array>
</dict>
Expand Down
32 changes: 16 additions & 16 deletions mobile/Builds/iOS/SonoBus.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1286,8 +1286,8 @@
"AOO_STATIC",
"NOTUSED_JUCE_IOS_AUDIO_EXPLICIT_SAMPLERATES=8000,16000,22050,44100,48000,88200,96000",
"JUCER_XCODE_IPHONE_5BC26AE3=1",
"JUCE_APP_VERSION=1.6.1",
"JUCE_APP_VERSION_HEX=0x10601",
"JUCE_APP_VERSION=1.6.2",
"JUCE_APP_VERSION_HEX=0x10602",
"JucePlugin_Build_VST=0",
"JucePlugin_Build_VST3=0",
"JucePlugin_Build_AU=0",
Expand Down Expand Up @@ -1350,8 +1350,8 @@
"AOO_STATIC",
"NOTUSED_JUCE_IOS_AUDIO_EXPLICIT_SAMPLERATES=8000,16000,22050,44100,48000,88200,96000",
"JUCER_XCODE_IPHONE_5BC26AE3=1",
"JUCE_APP_VERSION=1.6.1",
"JUCE_APP_VERSION_HEX=0x10601",
"JUCE_APP_VERSION=1.6.2",
"JUCE_APP_VERSION_HEX=0x10602",
"JucePlugin_Build_VST=0",
"JucePlugin_Build_VST3=0",
"JucePlugin_Build_AU=0",
Expand Down Expand Up @@ -1415,8 +1415,8 @@
"AOO_STATIC",
"NOTUSED_JUCE_IOS_AUDIO_EXPLICIT_SAMPLERATES=8000,16000,22050,44100,48000,88200,96000",
"JUCER_XCODE_IPHONE_5BC26AE3=1",
"JUCE_APP_VERSION=1.6.1",
"JUCE_APP_VERSION_HEX=0x10601",
"JUCE_APP_VERSION=1.6.2",
"JUCE_APP_VERSION_HEX=0x10602",
"JucePlugin_Build_VST=0",
"JucePlugin_Build_VST3=0",
"JucePlugin_Build_AU=0",
Expand Down Expand Up @@ -1477,8 +1477,8 @@
"AOO_STATIC",
"NOTUSED_JUCE_IOS_AUDIO_EXPLICIT_SAMPLERATES=8000,16000,22050,44100,48000,88200,96000",
"JUCER_XCODE_IPHONE_5BC26AE3=1",
"JUCE_APP_VERSION=1.6.1",
"JUCE_APP_VERSION_HEX=0x10601",
"JUCE_APP_VERSION=1.6.2",
"JUCE_APP_VERSION_HEX=0x10602",
"JucePlugin_Build_VST=0",
"JucePlugin_Build_VST3=0",
"JucePlugin_Build_AU=0",
Expand Down Expand Up @@ -1544,8 +1544,8 @@
"AOO_STATIC",
"NOTUSED_JUCE_IOS_AUDIO_EXPLICIT_SAMPLERATES=8000,16000,22050,44100,48000,88200,96000",
"JUCER_XCODE_IPHONE_5BC26AE3=1",
"JUCE_APP_VERSION=1.6.1",
"JUCE_APP_VERSION_HEX=0x10601",
"JUCE_APP_VERSION=1.6.2",
"JUCE_APP_VERSION_HEX=0x10602",
"JucePlugin_Build_VST=0",
"JucePlugin_Build_VST3=0",
"JucePlugin_Build_AU=0",
Expand Down Expand Up @@ -1659,8 +1659,8 @@
"AOO_STATIC",
"NOTUSED_JUCE_IOS_AUDIO_EXPLICIT_SAMPLERATES=8000,16000,22050,44100,48000,88200,96000",
"JUCER_XCODE_IPHONE_5BC26AE3=1",
"JUCE_APP_VERSION=1.6.1",
"JUCE_APP_VERSION_HEX=0x10601",
"JUCE_APP_VERSION=1.6.2",
"JUCE_APP_VERSION_HEX=0x10602",
"JucePlugin_Build_VST=0",
"JucePlugin_Build_VST3=0",
"JucePlugin_Build_AU=0",
Expand Down Expand Up @@ -1775,8 +1775,8 @@
"AOO_STATIC",
"NOTUSED_JUCE_IOS_AUDIO_EXPLICIT_SAMPLERATES=8000,16000,22050,44100,48000,88200,96000",
"JUCER_XCODE_IPHONE_5BC26AE3=1",
"JUCE_APP_VERSION=1.6.1",
"JUCE_APP_VERSION_HEX=0x10601",
"JUCE_APP_VERSION=1.6.2",
"JUCE_APP_VERSION_HEX=0x10602",
"JucePlugin_Build_VST=0",
"JucePlugin_Build_VST3=0",
"JucePlugin_Build_AU=0",
Expand Down Expand Up @@ -1841,8 +1841,8 @@
"AOO_STATIC",
"NOTUSED_JUCE_IOS_AUDIO_EXPLICIT_SAMPLERATES=8000,16000,22050,44100,48000,88200,96000",
"JUCER_XCODE_IPHONE_5BC26AE3=1",
"JUCE_APP_VERSION=1.6.1",
"JUCE_APP_VERSION_HEX=0x10601",
"JUCE_APP_VERSION=1.6.2",
"JUCE_APP_VERSION_HEX=0x10602",
"JucePlugin_Build_VST=0",
"JucePlugin_Build_VST3=0",
"JucePlugin_Build_AU=0",
Expand Down
4 changes: 2 additions & 2 deletions mobile/JuceLibraryCode/JuceHeader.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ namespace ProjectInfo
{
const char* const projectName = "SonoBus";
const char* const companyName = "Sonosaurus";
const char* const versionString = "1.6.1";
const int versionNumber = 0x10601;
const char* const versionString = "1.6.2";
const int versionNumber = 0x10602;
}
#endif
8 changes: 4 additions & 4 deletions mobile/JuceLibraryCode/JucePluginDefines.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@
#define JucePlugin_EditorRequiresKeyboardFocus 0
#endif
#ifndef JucePlugin_Version
#define JucePlugin_Version 1.6.1
#define JucePlugin_Version 1.6.2
#endif
#ifndef JucePlugin_VersionCode
#define JucePlugin_VersionCode 0x10601
#define JucePlugin_VersionCode 0x10602
#endif
#ifndef JucePlugin_VersionString
#define JucePlugin_VersionString "1.6.1"
#define JucePlugin_VersionString "1.6.2"
#endif
#ifndef JucePlugin_VSTUniqueID
#define JucePlugin_VSTUniqueID JucePlugin_PluginCode
Expand Down Expand Up @@ -155,7 +155,7 @@
#define JucePlugin_ARAFactoryID "com.Sonosaurus.SonoBus.factory"
#endif
#ifndef JucePlugin_ARADocumentArchiveID
#define JucePlugin_ARADocumentArchiveID "com.Sonosaurus.SonoBus.aradocumentarchive.1.6.0"
#define JucePlugin_ARADocumentArchiveID "com.Sonosaurus.SonoBus.aradocumentarchive.1.6.1"
#endif
#ifndef JucePlugin_ARACompatibleArchiveIDs
#define JucePlugin_ARACompatibleArchiveIDs ""
Expand Down
6 changes: 3 additions & 3 deletions mobile/SonoBusMobile.jucer
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
companyCopyright="2023 Sonosaurus LLC" companyEmail="[email protected]"
pluginFormats="buildAUv3,buildStandalone,enableIAA" pluginManufacturerCode="Sono"
pluginCode="NBus" defines="JUCE_USE_CUSTOM_PLUGIN_STANDALONE_APP=1&#10;SONOBUS_BUILD_VERSION=&quot;1.4.9-74&quot;&#10;"
pluginDesc="SonoBus - Network Audio" version="1.6.1" cppLanguageStandard="17"
pluginDesc="SonoBus - Network Audio" version="1.6.2" cppLanguageStandard="17"
projectLineFeed="&#10;" jucerFormatVersion="1" pluginAUMainType="'aufx'"
pluginAUIsSandboxSafe="1">
<MAINGROUP id="i87g34" name="SonoBus">
Expand Down Expand Up @@ -397,7 +397,7 @@
UISupportsDocumentBrowser="1" UIFileSharingEnabled="1" customLaunchStoryboard="../images/LaunchScreen.storyboard"
iosScreenOrientation="UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight,UIInterfaceOrientationPortrait,UIInterfaceOrientationPortraitUpsideDown"
iPadScreenOrientation="UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight,UIInterfaceOrientationPortrait,UIInterfaceOrientationPortraitUpsideDown"
UIRequiresFullScreen="0" buildNumber="79">
UIRequiresFullScreen="0" buildNumber="80">
<CONFIGURATIONS>
<CONFIGURATION isDebug="1" name="Debug" headerPath="../../../deps/aoo/lib&#10;../../../deps/aoo/deps&#10;../../../deps/ios/include&#10;"
libraryPath="../../../deps/ios/lib" defines="LOGLEVEL=2&#10;JUCE_IOS_AUDIO_LOGGING=1"
Expand Down Expand Up @@ -434,7 +434,7 @@
androidKeyStore="${user.home}/.android/sonouploadnew.jks" androidKeyStorePass="${sonoupload_keystore_password}"
androidKeyAlias="${sonoupload_key}" androidKeyAliasPass="${sonoupload_key_password}"
androidTheme="@android:style/Theme.NoTitleBar" androidActivitySubClassName="com.sonosaurus.sonobus.SonoBusActivity"
androidVersionCode="79">
androidVersionCode="80">
<CONFIGURATIONS>
<CONFIGURATION isDebug="1" name="Debug" headerPath="../../../deps/aoo/lib&#10;../../../deps/aoo/deps&#10;../../../deps/android&#10;"
libraryPath="../../../deps/android/${ANDROID_ABI}" defines="LOGLEVEL=2"/>
Expand Down
Loading

0 comments on commit 404bbb4

Please sign in to comment.