Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
Merge for 1.4.6 release

- Add input reverb effects, which allow you to add reverb to your input
- Now the reverb buses (both input and output reverb bus) default to be at
   full level

 - Added accessibility support for blind or vision-impaired users on Mac and
   Windows.
  • Loading branch information
Jesse Chappell committed Jun 4, 2021
2 parents 52cb09f + e32e24d commit 80d1e5a
Show file tree
Hide file tree
Showing 3,954 changed files with 1,072,411 additions and 37,993 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
7 changes: 4 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ endif()
option(UniversalBinary "Build universal binary for mac" ON)

if (APPLE)
set (CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE INTERNAL "")
set (CMAKE_OSX_DEPLOYMENT_TARGET "10.10" CACHE INTERNAL "")
if (UniversalBinary)
set(CMAKE_OSX_ARCHITECTURES "x86_64;arm64" CACHE INTERNAL "")
#set(CMAKE_OSX_ARCHITECTURES arm64 x86_64)
Expand All @@ -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.4.5)
project(SonoBus VERSION 1.4.6)

set(BUILDVERSION 68)
set(BUILDVERSION 69)


# If you've installed JUCE somehow (via a package manager, or directly using the CMake install
Expand Down Expand Up @@ -272,6 +272,7 @@ function(sono_add_custom_plugin_target target_name product_name formats is_instr
Source/RandomSentenceGenerator.cpp
Source/RandomSentenceGenerator.h
Source/ReverbSendView.h
Source/ReverbView.h
Source/RunCumulantor.cpp
Source/RunCumulantor.h
Source/RunningCumulant.h
Expand Down
2 changes: 2 additions & 0 deletions JUCE/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[core]
autocrlf=false
17 changes: 17 additions & 0 deletions JUCE/.github/ISSUE_TEMPLATE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Please include:

1) detailed steps on how to reproduce the bug, preferably with already
existing JUCE code such as the demo plugin or the demo code
2) the expected behaviour
3) the operating system
4) the architecture (32-bit or 64-bit)
5) a stack trace - if the bug causes a crash
6) the plugin format (VST2, VST3, AU, AAX, RTAS) - if applicable
7) which DAW you observed the bug in - if applicable

Make sure you have pulled the latest commits from the `develop` branch of the
JUCE repo and have re-compiled the Projucer before you submit your bug. Often
we have already fixed the issue but it hasn't yet been released on the `master`
branch. If it's a major bug, which must be hot-fixed immediately, then we will
also accept bug reports for tagged release versions.

67 changes: 67 additions & 0 deletions JUCE/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
._*
*.mode1v3
*.pbxuser
*.perspectivev3
*.user
*.ncb
*.suo
*.ilk
*.pch
*.pdb
*.dep
*.idb
*.manifest
*.manifest.res
*.o
*.d
*.sdf
*.opensdf
*.VC.db
*.VC.opendb
xcuserdata
*.xccheckout
*.xcscmblueprint
*.xcscheme
contents.xcworkspacedata
.DS_Store
.svn
.deps
.dirstamp
profile
**/MacOSX/build
**/iOS/build
**/IDEWorkspaceChecks.plist
**/Linux/build
**/LinuxMakefile/build
**/VisualStudio[0-9]*/Win32
**/VisualStudio[0-9]*/x64
**/Builds/x64
**/.vs
**/CodeBlocks/bin
**/CodeBlocks/obj
**/CodeBlocks/*.depend
**/CodeBlocks/*.layout
**/Builds/Android/.gradle
**/Builds/Android/.idea
**/Builds/Android/build
**/Builds/Android/**/*.iml
**/Builds/Android/local.properties
**/Builds/Android/app/build
**/Builds/Android/app/.externalNativeBuild
**/Builds/Android/app/.cxx
**/Builds/Android/lib/build
**/Builds/Android/lib/.externalNativeBuild
**/Builds/CLion/cmake-build-*
**/Builds/CLion/.idea
**/Builds/MacOSX/**/Index
**/Builds/MacOSX/**/Intermediates.noindex
**/doxygen/doc
**/doxygen/build
**/.idea
extras/Projucer/JUCECompileEngine.dylib

.idea
**/cmake-build*

.vscode
/build
4 changes: 4 additions & 0 deletions JUCE/.gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include:
- project: 'juce-repos/JUCE-utils'
file: '/CI/gitlab-ci.yml'

12 changes: 12 additions & 0 deletions JUCE/.gitrepo
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
; DO NOT EDIT (unless you know what you are doing)
;
; This subdirectory is a git "subrepo", and this file is maintained by the
; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme
;
[subrepo]
remote = https://github.com/essej/JUCE.git
branch = sono6good
commit = 9415d09a77b019a81381e8f964fb4a3b482be7a4
parent = 7d0cc68656cdbca86e1245a064a380457f5ace19
method = merge
cmdver = 0.4.1
Loading

0 comments on commit 80d1e5a

Please sign in to comment.