+ #endif\r
\r
//==============================================================================\r
- /** This must return the correct value immediately after the object has been\r
-@@ -1310,6 +1312,11 @@
+ /** Returns the default number of steps for a parameter.\r
+@@ -1108,6 +1110,11 @@
virtual void processorLayoutsChanged();\r
\r
//==============================================================================\r
/** Adds a listener that will be called when an aspect of this processor changes. */\r
virtual void addListener (AudioProcessorListener* newListener);\r
\r
-@@ -1379,9 +1386,11 @@
+@@ -1177,9 +1184,11 @@
\r
virtual CurveData getResponseCurve (CurveData::Type /*curveType*/) const { return {}; }\r
\r
\r
/** Flags to indicate the type of plugin context in which a processor is being used. */\r
enum WrapperType\r
-@@ -1395,6 +1404,7 @@
+@@ -1193,6 +1202,7 @@
wrapperType_AAX,\r
wrapperType_Standalone,\r
wrapperType_Unity\r
};\r
\r
/** When loaded by a plugin wrapper, this flag will be set to indicate the type\r
-@@ -1648,7 +1658,9 @@
+@@ -1453,7 +1463,9 @@
\r
//==============================================================================\r
Array<AudioProcessorListener*> listeners;\r
--- juce.orig/extras/Projucer/Source/Application/jucer_AutoUpdater.cpp
+++ juce/extras/Projucer/Source/Application/jucer_AutoUpdater.cpp
-@@ -617,6 +617,7 @@
+@@ -42,6 +42,7 @@
\r
- void LatestVersionChecker::checkForNewVersion()\r
+ void LatestVersionCheckerAndUpdater::checkForNewVersion (bool showAlerts)\r
{\r
-+ return; // on Debian we don't check for updates\r
- hasAttemptedToReadWebsite = true;\r
- \r
++ return; // DONT check for new versions on Debian\r
+ if (! isThreadRunning())\r
{\r
+ showAlertWindows = showAlerts;\r
doxygen/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
-diff --git a/doxygen/Makefile b/doxygen/Makefile
-index 5b17c37..77e4ad2 100644
---- a/doxygen/Makefile
-+++ b/doxygen/Makefile
-@@ -9,7 +9,7 @@ doc/index.html: build/juce_modules.dox Doxyfile
+--- juce.orig/doxygen/Makefile
++++ juce/doxygen/Makefile
+@@ -8,7 +8,7 @@
+ doxygen
build/juce_modules.dox: process_source_files.py $(SOURCE_FILES)
- rm -rf build
- python $< ../modules build
+ python3 $< ../modules build
--- juce.orig/extras/Projucer/Source/Settings/jucer_StoredSettings.cpp
+++ juce/extras/Projucer/Source/Settings/jucer_StoredSettings.cpp
-@@ -389,7 +389,7 @@
+@@ -385,7 +385,7 @@
}\r
else if (key == Ids::defaultJuceModulePath)\r
{\r
--- juce.orig/extras/UnitTestRunner/UnitTestRunner.jucer
+++ juce/extras/UnitTestRunner/UnitTestRunner.jucer
-@@ -96,26 +96,26 @@
- </VS2017>\r
+@@ -123,26 +123,26 @@
+ </VS2019>\r
</EXPORTFORMATS>\r
<MODULES>\r
- <MODULE id="juce_analytics" showAllCode="1" useLocalCopy="0" useGlobalPath="0"/>\r
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- juce.orig/modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp
+++ juce/modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp
-@@ -92,8 +92,7 @@
+@@ -101,8 +101,7 @@
// field in the Projucer. The VST2 SDK can be obtained from the\r
// vstsdk3610_11_06_2018_build_37 (or older) VST3 SDK or JUCE version 5.3.2. You\r
// also need a VST2 license from Steinberg to distribute VST2 plug-ins.\r
}\r
\r
using namespace juce;\r
-@@ -111,7 +110,6 @@
+@@ -124,7 +123,6 @@
#pragma pack (push, 8)\r
#endif\r
\r
#include "../utility/juce_FakeMouseMoveGenerator.h"\r
--- juce.orig/modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp
+++ juce/modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp
-@@ -37,7 +37,6 @@
+@@ -49,7 +49,6 @@
#endif\r
\r
#define VST_FORCE_DEPRECATED 0\r
\r
namespace Vst2\r
{\r
-@@ -46,8 +45,7 @@
+@@ -58,8 +57,7 @@
// paths or use the "VST (Legacy) SDK Folder" field in the Projucer. The VST2\r
// SDK can be obtained from the vstsdk3610_11_06_2018_build_37 (or older) VST3\r
// SDK or JUCE version 5.3.2.\r
}\r
\r
#include "juce_VSTCommon.h"\r
-@@ -59,6 +57,9 @@
+@@ -81,6 +79,9 @@
\r
#include "juce_VSTMidiEventList.h"\r
\r
modules/juce_audio_devices/native/juce_linux_JackAudio.cpp | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
-diff --git a/modules/juce_audio_devices/native/juce_linux_JackAudio.cpp b/modules/juce_audio_devices/native/juce_linux_JackAudio.cpp
-index 35302a3..7031e1d 100644
---- a/modules/juce_audio_devices/native/juce_linux_JackAudio.cpp
-+++ b/modules/juce_audio_devices/native/juce_linux_JackAudio.cpp
-@@ -105,7 +105,11 @@ namespace
+--- juce.orig/modules/juce_audio_devices/native/juce_linux_JackAudio.cpp
++++ juce/modules/juce_audio_devices/native/juce_linux_JackAudio.cpp
+@@ -105,7 +105,11 @@
\r
//==============================================================================\r
#ifndef JUCE_JACK_CLIENT_NAME\r
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- juce.orig/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h
+++ juce/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h
-@@ -323,7 +323,7 @@
+@@ -453,7 +453,7 @@
\r
props.add (new TextPropertyComponent (subprojectsValue, "Xcode Subprojects", 8192, true),\r
"Paths to Xcode projects that should be added to the build (one per line). "\r