Fix Linux bus layouts

This commit is contained in:
Roland Rabien 2023-09-28 08:24:34 -07:00
commit 681be5731b
4 changed files with 10 additions and 3 deletions

View file

@ -386,7 +386,6 @@ target_compile_definitions (${PLUGIN_NAME} PRIVATE
JUCE_USE_MP3AUDIOFORMAT=0
JUCE_USE_LAME_AUDIO_FORMAT=0
JUCE_USE_WINDOWS_MEDIA_FORMAT=0
JucePlugin_PreferredChannelConfigurations={0,2}
_CRT_SECURE_NO_WARNINGS
)

View file

@ -1,3 +1,10 @@
1.0.3:
- Add retrigger to step LFO
- Fix preset loading if the file has been manually renamed
- Fix crash initializing plugin on Linux
- Fix channel config on Linux
1.0.2:
- Add retrigger to LFO

@ -1 +1 @@
Subproject commit 850d96f45d0b5c006ffc7b36c364c6eae69ce00e
Subproject commit ea098bd4bcb1561e74da52ab100861713cd2dfb0

View file

@ -448,7 +448,8 @@ void extractWavetables()
#endif
//==============================================================================
WavetableAudioProcessor::WavetableAudioProcessor() : gin::Processor (false)
WavetableAudioProcessor::WavetableAudioProcessor()
: gin::Processor (juce::AudioProcessor::BusesProperties().withOutput ("Output", juce::AudioChannelSet::stereo(), true), false)
{
{
auto sz = 0;