├── CMakeLists.txt ├── DOCUMENTATION.md ├── HISTORY.md ├── JuceLibraryCode ├── JuceHeader.h ├── JuceLV2Defines.h ├── JucePluginDefines.h ├── ReadMe.txt ├── include_juce_audio_basics.cpp ├── include_juce_audio_basics.mm ├── include_juce_audio_devices.cpp ├── include_juce_audio_devices.mm ├── include_juce_audio_formats.cpp ├── include_juce_audio_formats.mm ├── include_juce_audio_plugin_client_AAX.cpp ├── include_juce_audio_plugin_client_AAX.mm ├── include_juce_audio_plugin_client_AAX_utils.cpp ├── include_juce_audio_plugin_client_ARA.cpp ├── include_juce_audio_plugin_client_AU_1.mm ├── include_juce_audio_plugin_client_AU_2.mm ├── include_juce_audio_plugin_client_AUv3.mm ├── include_juce_audio_plugin_client_LV2.cpp ├── include_juce_audio_plugin_client_LV2.mm ├── include_juce_audio_plugin_client_Standalone.cpp ├── include_juce_audio_plugin_client_Unity.cpp ├── include_juce_audio_plugin_client_VST2.cpp ├── include_juce_audio_plugin_client_VST2.mm ├── include_juce_audio_plugin_client_VST3.cpp ├── include_juce_audio_plugin_client_VST3.mm ├── include_juce_audio_plugin_client_VST_utils.mm ├── include_juce_audio_plugin_client_utils.cpp ├── include_juce_audio_processors.cpp ├── include_juce_audio_processors.mm ├── include_juce_audio_processors_ara.cpp ├── include_juce_audio_processors_lv2_libs.cpp ├── include_juce_audio_utils.cpp ├── include_juce_audio_utils.mm ├── include_juce_core.cpp ├── include_juce_core.mm ├── include_juce_data_structures.cpp ├── include_juce_data_structures.mm ├── include_juce_dsp.cpp ├── include_juce_dsp.mm ├── include_juce_events.cpp ├── include_juce_events.mm ├── include_juce_graphics.cpp ├── include_juce_graphics.mm ├── include_juce_gui_basics.cpp ├── include_juce_gui_basics.mm ├── include_juce_gui_extra.cpp ├── include_juce_gui_extra.mm └── include_juce_osc.cpp ├── README.md ├── Ressources ├── images │ ├── GUI.png │ ├── effects.png │ ├── options.png │ ├── output.png │ ├── sequenceSequencer.png │ └── sequencers.png ├── presets │ └── Default.xml ├── scripts │ ├── build_linux_vst3.sh │ ├── cmake_build.sh │ ├── copy_plugin_data_linux.sh │ ├── copy_plugin_data_windows.cmd │ ├── git_update.sh │ └── rebuild_linux_vst3.sh └── skins │ ├── default │ ├── images │ │ ├── logo_1.png │ │ ├── logo_2.png │ │ ├── logo_3.png │ │ ├── preset_0.png │ │ ├── preset_0_3.png │ │ ├── preset_0_4.png │ │ ├── preset_1.png │ │ ├── preset_1_2.png │ │ ├── preset_1_3.png │ │ ├── preset_1_4.png │ │ ├── preset_2.png │ │ ├── preset_2_2.png │ │ ├── preset_2_3.png │ │ ├── preset_2_4.png │ │ ├── preset_3.png │ │ ├── preset_3_2.png │ │ ├── preset_3_3.png │ │ ├── preset_3_4.png │ │ ├── preset_4.png │ │ ├── preset_4_2.png │ │ ├── preset_4_3.png │ │ ├── preset_4_4.png │ │ ├── stepseq_1.png │ │ ├── stepseq_11_small.png │ │ ├── stepseq_1_big.png │ │ ├── stepseq_1_small.png │ │ ├── stepseq_2.png │ │ ├── stepseq_22_small.png │ │ ├── stepseq_2_big.png │ │ ├── stepseq_2_small.png │ │ ├── stepseq_3.png │ │ ├── stepseq_33_small.png │ │ ├── stepseq_3_big.png │ │ ├── stepseq_3_small.png │ │ ├── stepseq_4.png │ │ ├── stepseq_44_small.png │ │ ├── stepseq_4_big.png │ │ ├── stepseq_4_small.png │ │ ├── stepseq_circle_1_big_3.png │ │ ├── stepseq_circle_2_big_3.png │ │ ├── stepseq_circle_3_big_3.png │ │ ├── stepseq_circle_4_big_3.png │ │ ├── stepseq_circle_flat_big_3.png │ │ ├── stepseq_circle_off_big.png │ │ ├── stepseq_circle_on_big.png │ │ ├── stepseq_circle_on_big_2.png │ │ ├── stepseq_circle_on_big_3.png │ │ ├── stepseq_circle_ramp_big_3.png │ │ ├── stepseq_circle_saw_big_3.png │ │ ├── stepseq_circle_tri_big_3.png │ │ ├── stepseq_flat_big.png │ │ ├── stepseq_flat_small.png │ │ ├── stepseq_invtri_small.png │ │ ├── stepseq_off.png │ │ ├── stepseq_off_big.png │ │ ├── stepseq_off_circle_small.png │ │ ├── stepseq_off_small.png │ │ ├── stepseq_offf.png │ │ ├── stepseq_on.png │ │ ├── stepseq_on_big.png │ │ ├── stepseq_on_big2_0.png │ │ ├── stepseq_on_big2_1.png │ │ ├── stepseq_on_big2_2.png │ │ ├── stepseq_on_big2_3.png │ │ ├── stepseq_on_big2_4.png │ │ ├── stepseq_on_big3_1.png │ │ ├── stepseq_on_big3_2.png │ │ ├── stepseq_on_big3_3.png │ │ ├── stepseq_on_big3_4.png │ │ ├── stepseq_on_small.png │ │ ├── stepseq_onn.png │ │ ├── stepseq_ramp_big.png │ │ ├── stepseq_ramp_small.png │ │ ├── stepseq_saw_big.png │ │ ├── stepseq_saw_small.png │ │ ├── stepseq_sine_small.png │ │ ├── stepseq_tri_big.png │ │ └── stepseq_tri_small.png │ └── skin.xml │ └── test │ ├── images │ ├── banner_4.png │ ├── logo_1.png │ ├── logo_2.png │ ├── preset_0.png │ ├── preset_0_3.png │ ├── preset_0_4.png │ ├── preset_1.png │ ├── preset_1_2.png │ ├── preset_1_3.png │ ├── preset_1_4.png │ ├── preset_2.png │ ├── preset_2_2.png │ ├── preset_2_3.png │ ├── preset_2_4.png │ ├── preset_3.png │ ├── preset_3_2.png │ ├── preset_3_3.png │ ├── preset_3_4.png │ ├── preset_4.png │ ├── preset_4_2.png │ ├── preset_4_3.png │ ├── preset_4_4.png │ ├── stepseq_1.png │ ├── stepseq_1_big.png │ ├── stepseq_2.png │ ├── stepseq_2_big.png │ ├── stepseq_3.png │ ├── stepseq_3_big.png │ ├── stepseq_4.png │ ├── stepseq_4_big.png │ ├── stepseq_circle_1_big_3.png │ ├── stepseq_circle_2_big_3.png │ ├── stepseq_circle_3_big_3.png │ ├── stepseq_circle_4_big_3.png │ ├── stepseq_circle_flat_big_3.png │ ├── stepseq_circle_off_big.png │ ├── stepseq_circle_on_big.png │ ├── stepseq_circle_on_big_2.png │ ├── stepseq_circle_on_big_3.png │ ├── stepseq_circle_ramp_big_3.png │ ├── stepseq_circle_saw_big_3.png │ ├── stepseq_circle_tri_big_3.png │ ├── stepseq_flat_big.png │ ├── stepseq_off.png │ ├── stepseq_off_big.png │ ├── stepseq_offf.png │ ├── stepseq_on.png │ ├── stepseq_on_big.png │ ├── stepseq_on_big2_0.png │ ├── stepseq_on_big2_1.png │ ├── stepseq_on_big2_2.png │ ├── stepseq_on_big2_3.png │ ├── stepseq_on_big2_4.png │ ├── stepseq_on_big3_1.png │ ├── stepseq_on_big3_2.png │ ├── stepseq_on_big3_3.png │ ├── stepseq_on_big3_4.png │ ├── stepseq_onn.png │ ├── stepseq_ramp_big.png │ ├── stepseq_saw_big.png │ └── stepseq_tri_big.png │ └── skin.xml ├── Source ├── PluginEditor.cpp ├── PluginEditor.h ├── PluginProcessor.cpp ├── PluginProcessor.h ├── effects │ ├── Bitcrusher.h │ ├── Chopper.h │ ├── DirtyRepeater.h │ ├── Distortion.h │ ├── FaustCombFilter.h │ ├── FaustEcho.h │ ├── FaustEffects.h │ ├── FaustPitchShifter.h │ ├── FaustRepeater.h │ ├── FaustRingMod.h │ ├── Filter.h │ └── TimeStretcher.h └── ui │ ├── EffectComponent.cpp │ ├── EffectComponent.h │ ├── OptionsComponent.cpp │ ├── OptionsComponent.h │ ├── OutputComponent.cpp │ ├── OutputComponent.h │ ├── SequenceSequencerComponent.cpp │ ├── SequenceSequencerComponent.h │ ├── SequencerComponent.cpp │ └── SequencerComponent.h └── fxseq.jucer /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/DOCUMENTATION.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/HISTORY.md -------------------------------------------------------------------------------- /JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /JuceLibraryCode/JuceLV2Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/JuceLV2Defines.h -------------------------------------------------------------------------------- /JuceLibraryCode/JucePluginDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/JucePluginDefines.h -------------------------------------------------------------------------------- /JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_devices.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_devices.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_devices.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_formats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_formats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_formats.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AAX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AAX.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AAX.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AAX.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AAX_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AAX_utils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_ARA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_ARA.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AU_1.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AU_1.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AU_2.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AU_2.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AUv3.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AUv3.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_LV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_LV2.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_LV2.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_LV2.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_Standalone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_Standalone.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_Unity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_Unity.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_VST2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_VST2.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_VST2.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_VST2.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_VST3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_VST3.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_VST3.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_VST3.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_VST_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_VST_utils.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_utils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_processors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_processors.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_processors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_processors.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_processors_ara.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_processors_ara.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_processors_lv2_libs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_processors_lv2_libs.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_utils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_audio_utils.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_core.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_core.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_data_structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_data_structures.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_data_structures.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_data_structures.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_dsp.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_dsp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_dsp.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_events.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_events.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_events.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_graphics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_graphics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_graphics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_gui_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_gui_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_gui_extra.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_extra.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_gui_extra.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_osc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/JuceLibraryCode/include_juce_osc.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/README.md -------------------------------------------------------------------------------- /Ressources/images/GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/images/GUI.png -------------------------------------------------------------------------------- /Ressources/images/effects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/images/effects.png -------------------------------------------------------------------------------- /Ressources/images/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/images/options.png -------------------------------------------------------------------------------- /Ressources/images/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/images/output.png -------------------------------------------------------------------------------- /Ressources/images/sequenceSequencer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/images/sequenceSequencer.png -------------------------------------------------------------------------------- /Ressources/images/sequencers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/images/sequencers.png -------------------------------------------------------------------------------- /Ressources/presets/Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/presets/Default.xml -------------------------------------------------------------------------------- /Ressources/scripts/build_linux_vst3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/scripts/build_linux_vst3.sh -------------------------------------------------------------------------------- /Ressources/scripts/cmake_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/scripts/cmake_build.sh -------------------------------------------------------------------------------- /Ressources/scripts/copy_plugin_data_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/scripts/copy_plugin_data_linux.sh -------------------------------------------------------------------------------- /Ressources/scripts/copy_plugin_data_windows.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/scripts/copy_plugin_data_windows.cmd -------------------------------------------------------------------------------- /Ressources/scripts/git_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/scripts/git_update.sh -------------------------------------------------------------------------------- /Ressources/scripts/rebuild_linux_vst3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/scripts/rebuild_linux_vst3.sh -------------------------------------------------------------------------------- /Ressources/skins/default/images/logo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/logo_1.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/logo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/logo_2.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/logo_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/logo_3.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/preset_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/preset_0.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/preset_0_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/preset_0_3.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/preset_0_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/preset_0_4.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/preset_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/preset_1.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/preset_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/preset_1_2.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/preset_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/preset_1_3.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/preset_1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/preset_1_4.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/preset_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/preset_2.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/preset_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/preset_2_2.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/preset_2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/preset_2_3.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/preset_2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/preset_2_4.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/preset_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/preset_3.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/preset_3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/preset_3_2.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/preset_3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/preset_3_3.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/preset_3_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/preset_3_4.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/preset_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/preset_4.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/preset_4_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/preset_4_2.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/preset_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/preset_4_3.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/preset_4_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/preset_4_4.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_1.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_11_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_11_small.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_1_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_1_big.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_1_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_1_small.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_2.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_22_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_22_small.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_2_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_2_big.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_2_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_2_small.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_3.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_33_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_33_small.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_3_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_3_big.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_3_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_3_small.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_4.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_44_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_44_small.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_4_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_4_big.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_4_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_4_small.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_circle_1_big_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_circle_1_big_3.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_circle_2_big_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_circle_2_big_3.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_circle_3_big_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_circle_3_big_3.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_circle_4_big_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_circle_4_big_3.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_circle_flat_big_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_circle_flat_big_3.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_circle_off_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_circle_off_big.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_circle_on_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_circle_on_big.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_circle_on_big_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_circle_on_big_2.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_circle_on_big_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_circle_on_big_3.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_circle_ramp_big_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_circle_ramp_big_3.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_circle_saw_big_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_circle_saw_big_3.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_circle_tri_big_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_circle_tri_big_3.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_flat_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_flat_big.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_flat_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_flat_small.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_invtri_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_invtri_small.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_off.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_off_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_off_big.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_off_circle_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_off_circle_small.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_off_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_off_small.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_offf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_offf.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_on.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_on_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_on_big.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_on_big2_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_on_big2_0.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_on_big2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_on_big2_1.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_on_big2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_on_big2_2.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_on_big2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_on_big2_3.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_on_big2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_on_big2_4.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_on_big3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_on_big3_1.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_on_big3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_on_big3_2.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_on_big3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_on_big3_3.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_on_big3_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_on_big3_4.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_on_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_on_small.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_onn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_onn.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_ramp_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_ramp_big.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_ramp_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_ramp_small.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_saw_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_saw_big.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_saw_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_saw_small.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_sine_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_sine_small.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_tri_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_tri_big.png -------------------------------------------------------------------------------- /Ressources/skins/default/images/stepseq_tri_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/images/stepseq_tri_small.png -------------------------------------------------------------------------------- /Ressources/skins/default/skin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/default/skin.xml -------------------------------------------------------------------------------- /Ressources/skins/test/images/banner_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/banner_4.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/logo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/logo_1.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/logo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/logo_2.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/preset_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/preset_0.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/preset_0_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/preset_0_3.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/preset_0_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/preset_0_4.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/preset_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/preset_1.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/preset_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/preset_1_2.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/preset_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/preset_1_3.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/preset_1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/preset_1_4.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/preset_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/preset_2.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/preset_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/preset_2_2.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/preset_2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/preset_2_3.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/preset_2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/preset_2_4.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/preset_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/preset_3.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/preset_3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/preset_3_2.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/preset_3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/preset_3_3.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/preset_3_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/preset_3_4.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/preset_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/preset_4.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/preset_4_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/preset_4_2.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/preset_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/preset_4_3.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/preset_4_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/preset_4_4.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_1.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_1_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_1_big.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_2.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_2_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_2_big.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_3.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_3_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_3_big.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_4.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_4_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_4_big.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_circle_1_big_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_circle_1_big_3.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_circle_2_big_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_circle_2_big_3.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_circle_3_big_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_circle_3_big_3.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_circle_4_big_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_circle_4_big_3.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_circle_flat_big_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_circle_flat_big_3.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_circle_off_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_circle_off_big.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_circle_on_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_circle_on_big.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_circle_on_big_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_circle_on_big_2.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_circle_on_big_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_circle_on_big_3.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_circle_ramp_big_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_circle_ramp_big_3.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_circle_saw_big_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_circle_saw_big_3.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_circle_tri_big_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_circle_tri_big_3.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_flat_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_flat_big.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_off.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_off_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_off_big.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_offf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_offf.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_on.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_on_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_on_big.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_on_big2_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_on_big2_0.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_on_big2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_on_big2_1.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_on_big2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_on_big2_2.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_on_big2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_on_big2_3.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_on_big2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_on_big2_4.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_on_big3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_on_big3_1.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_on_big3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_on_big3_2.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_on_big3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_on_big3_3.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_on_big3_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_on_big3_4.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_onn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_onn.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_ramp_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_ramp_big.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_saw_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_saw_big.png -------------------------------------------------------------------------------- /Ressources/skins/test/images/stepseq_tri_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/images/stepseq_tri_big.png -------------------------------------------------------------------------------- /Ressources/skins/test/skin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Ressources/skins/test/skin.xml -------------------------------------------------------------------------------- /Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/PluginEditor.h -------------------------------------------------------------------------------- /Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Source/effects/Bitcrusher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/effects/Bitcrusher.h -------------------------------------------------------------------------------- /Source/effects/Chopper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/effects/Chopper.h -------------------------------------------------------------------------------- /Source/effects/DirtyRepeater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/effects/DirtyRepeater.h -------------------------------------------------------------------------------- /Source/effects/Distortion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/effects/Distortion.h -------------------------------------------------------------------------------- /Source/effects/FaustCombFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/effects/FaustCombFilter.h -------------------------------------------------------------------------------- /Source/effects/FaustEcho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/effects/FaustEcho.h -------------------------------------------------------------------------------- /Source/effects/FaustEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/effects/FaustEffects.h -------------------------------------------------------------------------------- /Source/effects/FaustPitchShifter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/effects/FaustPitchShifter.h -------------------------------------------------------------------------------- /Source/effects/FaustRepeater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/effects/FaustRepeater.h -------------------------------------------------------------------------------- /Source/effects/FaustRingMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/effects/FaustRingMod.h -------------------------------------------------------------------------------- /Source/effects/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/effects/Filter.h -------------------------------------------------------------------------------- /Source/effects/TimeStretcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/effects/TimeStretcher.h -------------------------------------------------------------------------------- /Source/ui/EffectComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/ui/EffectComponent.cpp -------------------------------------------------------------------------------- /Source/ui/EffectComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/ui/EffectComponent.h -------------------------------------------------------------------------------- /Source/ui/OptionsComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/ui/OptionsComponent.cpp -------------------------------------------------------------------------------- /Source/ui/OptionsComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/ui/OptionsComponent.h -------------------------------------------------------------------------------- /Source/ui/OutputComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/ui/OutputComponent.cpp -------------------------------------------------------------------------------- /Source/ui/OutputComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/ui/OutputComponent.h -------------------------------------------------------------------------------- /Source/ui/SequenceSequencerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/ui/SequenceSequencerComponent.cpp -------------------------------------------------------------------------------- /Source/ui/SequenceSequencerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/ui/SequenceSequencerComponent.h -------------------------------------------------------------------------------- /Source/ui/SequencerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/ui/SequencerComponent.cpp -------------------------------------------------------------------------------- /Source/ui/SequencerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/Source/ui/SequencerComponent.h -------------------------------------------------------------------------------- /fxseq.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssabug/fxseq/HEAD/fxseq.jucer --------------------------------------------------------------------------------