mirror of
https://codeberg.org/armin/wavetable.git
synced 2026-09-01 05:50:46 +02:00
Fix Linux bus layouts
This commit is contained in:
parent
4dd62bf66f
commit
681be5731b
4 changed files with 10 additions and 3 deletions
|
|
@ -386,7 +386,6 @@ target_compile_definitions (${PLUGIN_NAME} PRIVATE
|
||||||
JUCE_USE_MP3AUDIOFORMAT=0
|
JUCE_USE_MP3AUDIOFORMAT=0
|
||||||
JUCE_USE_LAME_AUDIO_FORMAT=0
|
JUCE_USE_LAME_AUDIO_FORMAT=0
|
||||||
JUCE_USE_WINDOWS_MEDIA_FORMAT=0
|
JUCE_USE_WINDOWS_MEDIA_FORMAT=0
|
||||||
JucePlugin_PreferredChannelConfigurations={0,2}
|
|
||||||
_CRT_SECURE_NO_WARNINGS
|
_CRT_SECURE_NO_WARNINGS
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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:
|
1.0.2:
|
||||||
|
|
||||||
- Add retrigger to LFO
|
- Add retrigger to LFO
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit 850d96f45d0b5c006ffc7b36c364c6eae69ce00e
|
Subproject commit ea098bd4bcb1561e74da52ab100861713cd2dfb0
|
||||||
|
|
@ -448,7 +448,8 @@ void extractWavetables()
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//==============================================================================
|
//==============================================================================
|
||||||
WavetableAudioProcessor::WavetableAudioProcessor() : gin::Processor (false)
|
WavetableAudioProcessor::WavetableAudioProcessor()
|
||||||
|
: gin::Processor (juce::AudioProcessor::BusesProperties().withOutput ("Output", juce::AudioChannelSet::stereo(), true), false)
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
auto sz = 0;
|
auto sz = 0;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue