Skip to content

Commit

Permalink
Update for JUCE 5.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
getdunne committed Oct 17, 2019
1 parent 787255a commit d6887e7
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
6 changes: 4 additions & 2 deletions JuceLibraryCode/AppConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,15 @@
#endif

#ifndef JUCE_REPORT_APP_USAGE
#define JUCE_REPORT_APP_USAGE 0
#define JUCE_REPORT_APP_USAGE 1
#endif

// END SECTION A

#define JUCE_USE_DARK_SPLASH_SCREEN 1

#define JUCE_PROJUCER_VERSION 0x50405

//==============================================================================
#define JUCE_MODULE_AVAILABLE_juce_audio_basics 1
#define JUCE_MODULE_AVAILABLE_juce_audio_devices 1
Expand Down Expand Up @@ -315,7 +317,7 @@
#define JucePlugin_Build_AAX 0
#endif
#ifndef JucePlugin_Build_Standalone
#define JucePlugin_Build_Standalone 0
#define JucePlugin_Build_Standalone 1
#endif
#ifndef JucePlugin_Build_Unity
#define JucePlugin_Build_Unity 0
Expand Down
9 changes: 9 additions & 0 deletions JuceLibraryCode/JuceHeader.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@

#include "BinaryData.h"

#if defined (JUCE_PROJUCER_VERSION) && JUCE_PROJUCER_VERSION < JUCE_VERSION
/** If you've hit this error then the version of the Projucer that was used to generate this project is
older than the version of the JUCE modules being included. To fix this error, re-save your project
using the latest version of the Projucer or, if you aren't using the Projucer to manage your project,
remove the JUCE_PROJUCER_VERSION define from the AppConfig.h file.
*/
#error "This project was last saved using an outdated version of the Projucer! Re-save this project with the latest version to fix this error."
#endif

#if ! DONT_SET_USING_JUCE_NAMESPACE
// If your code uses a lot of JUCE classes, then this will obviously save you
// a lot of typing, but can be disabled by setting DONT_SET_USING_JUCE_NAMESPACE.
Expand Down
6 changes: 3 additions & 3 deletions KlangFalter.jucer
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>

<JUCERPROJECT id="IRcjcT" name="KlangFalter" projectType="audioplug" bundleIdentifier="com.hifi-lofi.KlangFalter"
jucerVersion="5.4.4" buildVST="1" buildRTAS="0" buildAU="1" pluginName="KlangFalter"
jucerVersion="5.4.5" buildVST="1" buildRTAS="0" buildAU="1" pluginName="KlangFalter"
pluginDesc="Simple Audio Convolution Plugin" pluginManufacturer="HiFi-LoFi"
pluginManufacturerCode="HiLo" pluginCode="HLKF" pluginChannelConfigs="{1, 1}, {2, 2}, {1, 2}"
pluginIsSynth="0" pluginWantsMidiIn="0" pluginProducesMidiOut="0"
pluginSilenceInIsSilenceOut="0" pluginTailLength="0" pluginEditorRequiresKeys="0"
pluginAUExportPrefix="KlangFalterAU" pluginAUViewClass="KlangFalterAU_V1"
pluginRTASCategory="" companyName="HiFi-LoFi" aaxIdentifier="com.hifi-lofi.KlangFalter"
pluginAAXCategory="2" buildAAX="0" buildVST3="1" pluginIsMidiEffectPlugin="0"
includeBinaryInAppConfig="1" buildAUv3="0" pluginFormats="buildAU,buildVST,buildVST3"
projectLineFeed="&#10;" buildStandalone="0" enableIAA="0">
includeBinaryInAppConfig="1" buildAUv3="0" pluginFormats="buildAU,buildStandalone,buildVST,buildVST3"
projectLineFeed="&#10;" buildStandalone="1" enableIAA="0" defines="JUCE_USE_CUSTOM_PLUGIN_STANDALONE_APP">
<EXPORTFORMATS>
<XCODE_MAC targetFolder="Builds/MacOSX" objCExtraSuffix="C54DO8" extraCompilerFlags=""
extraFrameworks="Accelerate" extraDefs="AUDIOFFT_APPLE_ACCELERATE=1">
Expand Down

0 comments on commit d6887e7

Please sign in to comment.