├── .clang-format ├── .gitignore ├── Apps ├── ADC21CPanel │ ├── CMake │ │ └── Findpigpio.cmake │ ├── CMakeLists.txt │ ├── Images │ │ ├── ADC21.png │ │ └── ADC21@0.5x.png │ └── Source │ │ ├── BinaryHelper.h │ │ ├── CommonHeader.h │ │ ├── HighLowFilter.h │ │ ├── LushDelayEngine.h │ │ ├── LushDelayLine.h │ │ ├── Main.cpp │ │ ├── MainComponent.cpp │ │ ├── MainComponent.h │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── Params.h │ │ ├── RED.c │ │ ├── RED.h │ │ ├── StereoDelayLine.h │ │ ├── rotary_encoder.cpp │ │ └── rotary_encoder.hpp └── CMakeLists.txt ├── CMake ├── CPM.cmake ├── clang-cxx-dev-tools.cmake └── toolchain-rasppi.cmake ├── CMakeLists.txt ├── Delays ├── CMakeLists.txt └── LushDelayPlus │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Fonts │ ├── Dancing_Script │ │ ├── DancingScript-VariableFont_wght.ttf │ │ ├── OFL.txt │ │ ├── README.txt │ │ └── static │ │ │ ├── DancingScript-Bold.ttf │ │ │ ├── DancingScript-Medium.ttf │ │ │ ├── DancingScript-Regular.ttf │ │ │ └── DancingScript-SemiBold.ttf │ └── Montserrat │ │ ├── Montserrat-Black.ttf │ │ ├── Montserrat-BlackItalic.ttf │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-BoldItalic.ttf │ │ ├── Montserrat-ExtraBold.ttf │ │ ├── Montserrat-ExtraBoldItalic.ttf │ │ ├── Montserrat-ExtraLight.ttf │ │ ├── Montserrat-ExtraLightItalic.ttf │ │ ├── Montserrat-Italic.ttf │ │ ├── Montserrat-Light.ttf │ │ ├── Montserrat-LightItalic.ttf │ │ ├── Montserrat-Medium.ttf │ │ ├── Montserrat-MediumItalic.ttf │ │ ├── Montserrat-Regular.ttf │ │ ├── Montserrat-SemiBold.ttf │ │ ├── Montserrat-SemiBoldItalic.ttf │ │ ├── Montserrat-Thin.ttf │ │ ├── Montserrat-ThinItalic.ttf │ │ └── OFL.txt │ ├── Graphics │ ├── Lush Delay UI.afdesign │ └── svg │ │ ├── VisualizerCrossFB.svg │ │ ├── VisualizerDirectFB.svg │ │ ├── VisualizerLeft.svg │ │ └── VisualizerRight.svg │ ├── LICENSE │ ├── LushDelayPlus.jucer │ ├── README.md │ └── Source │ ├── BinaryHelper.h │ ├── ControlPair.h │ ├── ControlPanel.h │ ├── DelayVisualizer.h │ ├── DryWetControl.h │ ├── EqPair.h │ ├── HeaderPanel.h │ ├── HighLowFilter.h │ ├── KnobPair.h │ ├── LushDelayEngine.h │ ├── LushDelayLine.h │ ├── LushLookAndFeel.h │ ├── Params.h │ ├── PluginEditor.cpp │ ├── PluginEditor.h │ ├── PluginProcessor.cpp │ ├── PluginProcessor.h │ ├── SliderPair.h │ └── StereoDelayLine.h ├── Docs ├── RPi-setup.txt ├── hifiberry-dac-adc-pro.txt ├── increase-swap-size.txt └── third-party-code-sources.txt ├── HeadlessApps ├── CMakeLists.txt └── ModMatePlusApp │ ├── CMake │ └── Findpigpio.cmake │ ├── CMakeLists.txt │ ├── Images │ └── help.svg │ └── Source │ ├── BinaryHelper.h │ ├── Headless.h │ ├── Main.cpp │ ├── MainContentComponent.h │ ├── RED.c │ ├── RED.h │ ├── rotary_encoder.cpp │ └── rotary_encoder.hpp ├── LICENSE ├── Modules ├── CMakeLists.txt ├── ff_meters │ ├── Doxyfile │ ├── LICENSE.md │ ├── LevelMeter │ │ ├── LevelMeter.cpp │ │ ├── LevelMeter.h │ │ └── LevelMeterSource.h │ ├── LookAndFeel │ │ ├── LevelMeterLookAndFeel.h │ │ ├── LevelMeterLookAndFeelMethods.h │ │ └── SoundFieldLookAndFeelMethods.h │ ├── README.md │ ├── Visualisers │ │ ├── OutlineBuffer.h │ │ ├── StereoFieldBuffer.h │ │ └── StereoFieldComponent.h │ ├── ff_meters.cpp │ └── ff_meters.h ├── hack_audio_gui │ ├── LICENSE │ ├── README.md │ ├── components │ │ ├── hack_audio_Button.cpp │ │ └── hack_audio_Button.h │ ├── docs │ │ ├── baumans │ │ │ └── LICENSE │ │ ├── img │ │ │ ├── add-module.png │ │ │ ├── background.svg │ │ │ ├── button.svg │ │ │ ├── clone-module.png │ │ │ ├── knob.svg │ │ │ ├── meter.svg │ │ │ └── slider.svg │ │ ├── index.css │ │ ├── index.html │ │ └── now │ │ │ └── LICENSE │ ├── hack_audio_gui.cpp │ ├── hack_audio_gui.h │ ├── hack_audio_gui.mm │ └── utils │ │ ├── hack_audio_Colours.cpp │ │ ├── hack_audio_Colours.h │ │ ├── hack_audio_FontData.cpp │ │ ├── hack_audio_Fonts.cpp │ │ └── hack_audio_Fonts.h ├── hack_audio_gui_full │ ├── LICENSE │ ├── README.md │ ├── components │ │ ├── hack_audio_Button.cpp │ │ ├── hack_audio_Button.h │ │ ├── hack_audio_Graph.cpp │ │ ├── hack_audio_Graph.h │ │ ├── hack_audio_Label.cpp │ │ ├── hack_audio_Label.h │ │ ├── hack_audio_Meter.cpp │ │ ├── hack_audio_Meter.h │ │ ├── hack_audio_Selector.cpp │ │ ├── hack_audio_Selector.h │ │ ├── hack_audio_Slider.cpp │ │ └── hack_audio_Slider.h │ ├── diagrams │ │ ├── effects │ │ │ ├── hack_audio_DattorroReverb.h │ │ │ ├── hack_audio_EarlyReflections.h │ │ │ ├── hack_audio_FDNReverb.h │ │ │ ├── hack_audio_GardnerlargeReverb.h │ │ │ ├── hack_audio_GardnermediumReverb.h │ │ │ ├── hack_audio_GardnersmallReverb.h │ │ │ ├── hack_audio_MoorerReverb.h │ │ │ └── hack_audio_SchroederReverb.h │ │ ├── filters │ │ │ ├── hack_audio_AllpassFilter.h │ │ │ ├── hack_audio_BiquadFilter.h │ │ │ ├── hack_audio_CombFilter.h │ │ │ ├── hack_audio_DampingFilter.h │ │ │ ├── hack_audio_LPCombFilter.h │ │ │ ├── hack_audio_NestedallpassFilter.h │ │ │ └── hack_audio_NestedtwoFilter.h │ │ ├── hack_audio_Diagrams.h │ │ └── utils │ │ │ ├── hack_audio_Gain.h │ │ │ ├── hack_audio_Moddelay.h │ │ │ └── hack_audio_preDelay.h │ ├── docs │ │ ├── baumans │ │ │ └── LICENSE │ │ ├── img │ │ │ ├── add-module.png │ │ │ ├── background.svg │ │ │ ├── button.svg │ │ │ ├── clone-module.png │ │ │ ├── knob.svg │ │ │ ├── meter.svg │ │ │ └── slider.svg │ │ ├── index.css │ │ ├── index.html │ │ └── now │ │ │ └── LICENSE │ ├── hack_audio_gui.cpp │ ├── hack_audio_gui.h │ ├── hack_audio_gui.mm │ ├── layout │ │ ├── hack_audio_Diagram.cpp │ │ ├── hack_audio_Diagram.h │ │ ├── hack_audio_FlexBox.cpp │ │ ├── hack_audio_FlexBox.h │ │ ├── hack_audio_Viewport.cpp │ │ └── hack_audio_Viewport.h │ └── utils │ │ ├── hack_audio_Colours.cpp │ │ ├── hack_audio_Colours.h │ │ ├── hack_audio_FontData.cpp │ │ ├── hack_audio_Fonts.cpp │ │ ├── hack_audio_Fonts.h │ │ ├── hack_audio_NavigationButton.h │ │ └── hack_audio_TextFormatting.h ├── stm_dsp │ ├── analyzers │ │ └── stm_LevelAnalyzer.h │ ├── processors │ │ ├── stm_AutoGain.h │ │ ├── stm_DCFilter.h │ │ ├── stm_DelaySimple.h │ │ ├── stm_DryWetMix.h │ │ ├── stm_FrequencyModulator.h │ │ ├── stm_MatchedBypass.h │ │ ├── stm_Panner.h │ │ └── stm_Saturation.h │ ├── stm_dsp.h │ └── utilities │ │ ├── stm_Measuring.h │ │ ├── stm_Mixer.h │ │ ├── stm_Notes.h │ │ ├── stm_Oscillator.h │ │ ├── stm_ParameterAttachment.h │ │ ├── stm_Primes.h │ │ ├── stm_Rampers.h │ │ ├── stm_RecircBuffer.h │ │ ├── stm_RingBuffer.h │ │ └── stm_RollingAverage.h └── stm_gui │ ├── analyzers │ └── stm_LevelMeter.h │ ├── controls │ └── stm_Slider2Axis.h │ ├── displays │ ├── stm_DebugDisplay.h │ ├── stm_DisabledVeil.h │ ├── stm_RecircBufferDisplay.h │ └── template.h │ ├── icons │ └── stm_FilterIcon.h │ ├── lookandfeel │ └── stm_LookAndFeel.h │ └── stm_gui.h ├── OpenGLPlugins ├── CMakeLists.txt └── MIDIVisualizerPlus │ ├── CMakeLists.txt │ ├── Resources │ ├── pianokey_rectangle.obj │ ├── portmeirion.jpg │ └── teapot.obj │ └── Source │ ├── Attributes.h │ ├── BinaryResourceHelper.h │ ├── GLUtils.h │ ├── PluginEditor.cpp │ ├── PluginEditor.h │ ├── PluginProcessor.cpp │ ├── PluginProcessor.h │ ├── ShaderPreset.h │ ├── Shape.h │ ├── Textures.h │ ├── Uniforms.h │ ├── Vertex.h │ └── WavefrontObjParser.h ├── Plugins ├── CMakeLists.txt └── ModMatePlus │ ├── CMakeLists.txt │ ├── Images │ └── help.svg │ └── Source │ ├── BinaryHelper.h │ ├── PluginEditor.cpp │ ├── PluginEditor.h │ ├── PluginProcessor.cpp │ ├── PluginProcessor.h │ ├── UnidirectionalSlider.cpp │ └── UnidirectionalSlider.h ├── README.md └── Reverbs ├── CMakeLists.txt └── SimpleReverbPlus ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── SimpleReverbPlus.png └── Source ├── CMakeLists.txt ├── CustomLookAndFeel.cpp ├── CustomLookAndFeel.h ├── NameLabel.h ├── PluginEditor.cpp ├── PluginEditor.h ├── PluginProcessor.cpp ├── PluginProcessor.h ├── RotarySlider.cpp └── RotarySlider.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/.gitignore -------------------------------------------------------------------------------- /Apps/ADC21CPanel/CMake/Findpigpio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Apps/ADC21CPanel/CMake/Findpigpio.cmake -------------------------------------------------------------------------------- /Apps/ADC21CPanel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Apps/ADC21CPanel/CMakeLists.txt -------------------------------------------------------------------------------- /Apps/ADC21CPanel/Images/ADC21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Apps/ADC21CPanel/Images/ADC21.png -------------------------------------------------------------------------------- /Apps/ADC21CPanel/Images/ADC21@0.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Apps/ADC21CPanel/Images/ADC21@0.5x.png -------------------------------------------------------------------------------- /Apps/ADC21CPanel/Source/BinaryHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Apps/ADC21CPanel/Source/BinaryHelper.h -------------------------------------------------------------------------------- /Apps/ADC21CPanel/Source/CommonHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Apps/ADC21CPanel/Source/CommonHeader.h -------------------------------------------------------------------------------- /Apps/ADC21CPanel/Source/HighLowFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Apps/ADC21CPanel/Source/HighLowFilter.h -------------------------------------------------------------------------------- /Apps/ADC21CPanel/Source/LushDelayEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Apps/ADC21CPanel/Source/LushDelayEngine.h -------------------------------------------------------------------------------- /Apps/ADC21CPanel/Source/LushDelayLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Apps/ADC21CPanel/Source/LushDelayLine.h -------------------------------------------------------------------------------- /Apps/ADC21CPanel/Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Apps/ADC21CPanel/Source/Main.cpp -------------------------------------------------------------------------------- /Apps/ADC21CPanel/Source/MainComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Apps/ADC21CPanel/Source/MainComponent.cpp -------------------------------------------------------------------------------- /Apps/ADC21CPanel/Source/MainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Apps/ADC21CPanel/Source/MainComponent.h -------------------------------------------------------------------------------- /Apps/ADC21CPanel/Source/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Apps/ADC21CPanel/Source/MainWindow.cpp -------------------------------------------------------------------------------- /Apps/ADC21CPanel/Source/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Apps/ADC21CPanel/Source/MainWindow.h -------------------------------------------------------------------------------- /Apps/ADC21CPanel/Source/Params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Apps/ADC21CPanel/Source/Params.h -------------------------------------------------------------------------------- /Apps/ADC21CPanel/Source/RED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Apps/ADC21CPanel/Source/RED.c -------------------------------------------------------------------------------- /Apps/ADC21CPanel/Source/RED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Apps/ADC21CPanel/Source/RED.h -------------------------------------------------------------------------------- /Apps/ADC21CPanel/Source/StereoDelayLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Apps/ADC21CPanel/Source/StereoDelayLine.h -------------------------------------------------------------------------------- /Apps/ADC21CPanel/Source/rotary_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Apps/ADC21CPanel/Source/rotary_encoder.cpp -------------------------------------------------------------------------------- /Apps/ADC21CPanel/Source/rotary_encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Apps/ADC21CPanel/Source/rotary_encoder.hpp -------------------------------------------------------------------------------- /Apps/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(ADC21CPanel) -------------------------------------------------------------------------------- /CMake/CPM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/CMake/CPM.cmake -------------------------------------------------------------------------------- /CMake/clang-cxx-dev-tools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/CMake/clang-cxx-dev-tools.cmake -------------------------------------------------------------------------------- /CMake/toolchain-rasppi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/CMake/toolchain-rasppi.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Delays/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(LushDelayPlus) -------------------------------------------------------------------------------- /Delays/LushDelayPlus/.gitignore: -------------------------------------------------------------------------------- 1 | Builds 2 | JuceLibraryCode 3 | -------------------------------------------------------------------------------- /Delays/LushDelayPlus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/CMakeLists.txt -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Dancing_Script/DancingScript-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Dancing_Script/DancingScript-VariableFont_wght.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Dancing_Script/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Dancing_Script/OFL.txt -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Dancing_Script/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Dancing_Script/README.txt -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Dancing_Script/static/DancingScript-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Dancing_Script/static/DancingScript-Bold.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Dancing_Script/static/DancingScript-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Dancing_Script/static/DancingScript-Medium.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Dancing_Script/static/DancingScript-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Dancing_Script/static/DancingScript-Regular.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Dancing_Script/static/DancingScript-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Dancing_Script/static/DancingScript-SemiBold.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-Black.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-BlackItalic.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-BoldItalic.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-ExtraBold.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-ExtraLight.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-Italic.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-Light.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-LightItalic.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-MediumItalic.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-Thin.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Montserrat/Montserrat-ThinItalic.ttf -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Fonts/Montserrat/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Fonts/Montserrat/OFL.txt -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Graphics/Lush Delay UI.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Graphics/Lush Delay UI.afdesign -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Graphics/svg/VisualizerCrossFB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Graphics/svg/VisualizerCrossFB.svg -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Graphics/svg/VisualizerDirectFB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Graphics/svg/VisualizerDirectFB.svg -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Graphics/svg/VisualizerLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Graphics/svg/VisualizerLeft.svg -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Graphics/svg/VisualizerRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Graphics/svg/VisualizerRight.svg -------------------------------------------------------------------------------- /Delays/LushDelayPlus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/LICENSE -------------------------------------------------------------------------------- /Delays/LushDelayPlus/LushDelayPlus.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/LushDelayPlus.jucer -------------------------------------------------------------------------------- /Delays/LushDelayPlus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/README.md -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Source/BinaryHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Source/BinaryHelper.h -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Source/ControlPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Source/ControlPair.h -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Source/ControlPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Source/ControlPanel.h -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Source/DelayVisualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Source/DelayVisualizer.h -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Source/DryWetControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Source/DryWetControl.h -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Source/EqPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Source/EqPair.h -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Source/HeaderPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Source/HeaderPanel.h -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Source/HighLowFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Source/HighLowFilter.h -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Source/KnobPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Source/KnobPair.h -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Source/LushDelayEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Source/LushDelayEngine.h -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Source/LushDelayLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Source/LushDelayLine.h -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Source/LushLookAndFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Source/LushLookAndFeel.h -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Source/Params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Source/Params.h -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Source/PluginEditor.h -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Source/SliderPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Source/SliderPair.h -------------------------------------------------------------------------------- /Delays/LushDelayPlus/Source/StereoDelayLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Delays/LushDelayPlus/Source/StereoDelayLine.h -------------------------------------------------------------------------------- /Docs/RPi-setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Docs/RPi-setup.txt -------------------------------------------------------------------------------- /Docs/hifiberry-dac-adc-pro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Docs/hifiberry-dac-adc-pro.txt -------------------------------------------------------------------------------- /Docs/increase-swap-size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Docs/increase-swap-size.txt -------------------------------------------------------------------------------- /Docs/third-party-code-sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Docs/third-party-code-sources.txt -------------------------------------------------------------------------------- /HeadlessApps/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(ModMatePlusApp) -------------------------------------------------------------------------------- /HeadlessApps/ModMatePlusApp/CMake/Findpigpio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/HeadlessApps/ModMatePlusApp/CMake/Findpigpio.cmake -------------------------------------------------------------------------------- /HeadlessApps/ModMatePlusApp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/HeadlessApps/ModMatePlusApp/CMakeLists.txt -------------------------------------------------------------------------------- /HeadlessApps/ModMatePlusApp/Images/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/HeadlessApps/ModMatePlusApp/Images/help.svg -------------------------------------------------------------------------------- /HeadlessApps/ModMatePlusApp/Source/BinaryHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/HeadlessApps/ModMatePlusApp/Source/BinaryHelper.h -------------------------------------------------------------------------------- /HeadlessApps/ModMatePlusApp/Source/Headless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/HeadlessApps/ModMatePlusApp/Source/Headless.h -------------------------------------------------------------------------------- /HeadlessApps/ModMatePlusApp/Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/HeadlessApps/ModMatePlusApp/Source/Main.cpp -------------------------------------------------------------------------------- /HeadlessApps/ModMatePlusApp/Source/MainContentComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/HeadlessApps/ModMatePlusApp/Source/MainContentComponent.h -------------------------------------------------------------------------------- /HeadlessApps/ModMatePlusApp/Source/RED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/HeadlessApps/ModMatePlusApp/Source/RED.c -------------------------------------------------------------------------------- /HeadlessApps/ModMatePlusApp/Source/RED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/HeadlessApps/ModMatePlusApp/Source/RED.h -------------------------------------------------------------------------------- /HeadlessApps/ModMatePlusApp/Source/rotary_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/HeadlessApps/ModMatePlusApp/Source/rotary_encoder.cpp -------------------------------------------------------------------------------- /HeadlessApps/ModMatePlusApp/Source/rotary_encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/HeadlessApps/ModMatePlusApp/Source/rotary_encoder.hpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/LICENSE -------------------------------------------------------------------------------- /Modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/CMakeLists.txt -------------------------------------------------------------------------------- /Modules/ff_meters/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/ff_meters/Doxyfile -------------------------------------------------------------------------------- /Modules/ff_meters/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/ff_meters/LICENSE.md -------------------------------------------------------------------------------- /Modules/ff_meters/LevelMeter/LevelMeter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/ff_meters/LevelMeter/LevelMeter.cpp -------------------------------------------------------------------------------- /Modules/ff_meters/LevelMeter/LevelMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/ff_meters/LevelMeter/LevelMeter.h -------------------------------------------------------------------------------- /Modules/ff_meters/LevelMeter/LevelMeterSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/ff_meters/LevelMeter/LevelMeterSource.h -------------------------------------------------------------------------------- /Modules/ff_meters/LookAndFeel/LevelMeterLookAndFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/ff_meters/LookAndFeel/LevelMeterLookAndFeel.h -------------------------------------------------------------------------------- /Modules/ff_meters/LookAndFeel/LevelMeterLookAndFeelMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/ff_meters/LookAndFeel/LevelMeterLookAndFeelMethods.h -------------------------------------------------------------------------------- /Modules/ff_meters/LookAndFeel/SoundFieldLookAndFeelMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/ff_meters/LookAndFeel/SoundFieldLookAndFeelMethods.h -------------------------------------------------------------------------------- /Modules/ff_meters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/ff_meters/README.md -------------------------------------------------------------------------------- /Modules/ff_meters/Visualisers/OutlineBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/ff_meters/Visualisers/OutlineBuffer.h -------------------------------------------------------------------------------- /Modules/ff_meters/Visualisers/StereoFieldBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/ff_meters/Visualisers/StereoFieldBuffer.h -------------------------------------------------------------------------------- /Modules/ff_meters/Visualisers/StereoFieldComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/ff_meters/Visualisers/StereoFieldComponent.h -------------------------------------------------------------------------------- /Modules/ff_meters/ff_meters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/ff_meters/ff_meters.cpp -------------------------------------------------------------------------------- /Modules/ff_meters/ff_meters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/ff_meters/ff_meters.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/LICENSE -------------------------------------------------------------------------------- /Modules/hack_audio_gui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/README.md -------------------------------------------------------------------------------- /Modules/hack_audio_gui/components/hack_audio_Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/components/hack_audio_Button.cpp -------------------------------------------------------------------------------- /Modules/hack_audio_gui/components/hack_audio_Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/components/hack_audio_Button.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui/docs/baumans/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/docs/baumans/LICENSE -------------------------------------------------------------------------------- /Modules/hack_audio_gui/docs/img/add-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/docs/img/add-module.png -------------------------------------------------------------------------------- /Modules/hack_audio_gui/docs/img/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/docs/img/background.svg -------------------------------------------------------------------------------- /Modules/hack_audio_gui/docs/img/button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/docs/img/button.svg -------------------------------------------------------------------------------- /Modules/hack_audio_gui/docs/img/clone-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/docs/img/clone-module.png -------------------------------------------------------------------------------- /Modules/hack_audio_gui/docs/img/knob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/docs/img/knob.svg -------------------------------------------------------------------------------- /Modules/hack_audio_gui/docs/img/meter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/docs/img/meter.svg -------------------------------------------------------------------------------- /Modules/hack_audio_gui/docs/img/slider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/docs/img/slider.svg -------------------------------------------------------------------------------- /Modules/hack_audio_gui/docs/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/docs/index.css -------------------------------------------------------------------------------- /Modules/hack_audio_gui/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/docs/index.html -------------------------------------------------------------------------------- /Modules/hack_audio_gui/docs/now/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/docs/now/LICENSE -------------------------------------------------------------------------------- /Modules/hack_audio_gui/hack_audio_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/hack_audio_gui.cpp -------------------------------------------------------------------------------- /Modules/hack_audio_gui/hack_audio_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/hack_audio_gui.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui/hack_audio_gui.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/hack_audio_gui.mm -------------------------------------------------------------------------------- /Modules/hack_audio_gui/utils/hack_audio_Colours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/utils/hack_audio_Colours.cpp -------------------------------------------------------------------------------- /Modules/hack_audio_gui/utils/hack_audio_Colours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/utils/hack_audio_Colours.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui/utils/hack_audio_FontData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/utils/hack_audio_FontData.cpp -------------------------------------------------------------------------------- /Modules/hack_audio_gui/utils/hack_audio_Fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/utils/hack_audio_Fonts.cpp -------------------------------------------------------------------------------- /Modules/hack_audio_gui/utils/hack_audio_Fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui/utils/hack_audio_Fonts.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/LICENSE -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/README.md -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/components/hack_audio_Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/components/hack_audio_Button.cpp -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/components/hack_audio_Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/components/hack_audio_Button.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/components/hack_audio_Graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/components/hack_audio_Graph.cpp -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/components/hack_audio_Graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/components/hack_audio_Graph.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/components/hack_audio_Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/components/hack_audio_Label.cpp -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/components/hack_audio_Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/components/hack_audio_Label.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/components/hack_audio_Meter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/components/hack_audio_Meter.cpp -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/components/hack_audio_Meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/components/hack_audio_Meter.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/components/hack_audio_Selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/components/hack_audio_Selector.cpp -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/components/hack_audio_Selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/components/hack_audio_Selector.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/components/hack_audio_Slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/components/hack_audio_Slider.cpp -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/components/hack_audio_Slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/components/hack_audio_Slider.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/diagrams/effects/hack_audio_DattorroReverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/diagrams/effects/hack_audio_DattorroReverb.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/diagrams/effects/hack_audio_EarlyReflections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/diagrams/effects/hack_audio_EarlyReflections.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/diagrams/effects/hack_audio_FDNReverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/diagrams/effects/hack_audio_FDNReverb.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/diagrams/effects/hack_audio_GardnerlargeReverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/diagrams/effects/hack_audio_GardnerlargeReverb.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/diagrams/effects/hack_audio_GardnermediumReverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/diagrams/effects/hack_audio_GardnermediumReverb.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/diagrams/effects/hack_audio_GardnersmallReverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/diagrams/effects/hack_audio_GardnersmallReverb.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/diagrams/effects/hack_audio_MoorerReverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/diagrams/effects/hack_audio_MoorerReverb.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/diagrams/effects/hack_audio_SchroederReverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/diagrams/effects/hack_audio_SchroederReverb.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/diagrams/filters/hack_audio_AllpassFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/diagrams/filters/hack_audio_AllpassFilter.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/diagrams/filters/hack_audio_BiquadFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/diagrams/filters/hack_audio_BiquadFilter.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/diagrams/filters/hack_audio_CombFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/diagrams/filters/hack_audio_CombFilter.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/diagrams/filters/hack_audio_DampingFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/diagrams/filters/hack_audio_DampingFilter.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/diagrams/filters/hack_audio_LPCombFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/diagrams/filters/hack_audio_LPCombFilter.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/diagrams/filters/hack_audio_NestedallpassFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/diagrams/filters/hack_audio_NestedallpassFilter.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/diagrams/filters/hack_audio_NestedtwoFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/diagrams/filters/hack_audio_NestedtwoFilter.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/diagrams/hack_audio_Diagrams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/diagrams/hack_audio_Diagrams.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/diagrams/utils/hack_audio_Gain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/diagrams/utils/hack_audio_Gain.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/diagrams/utils/hack_audio_Moddelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/diagrams/utils/hack_audio_Moddelay.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/diagrams/utils/hack_audio_preDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/diagrams/utils/hack_audio_preDelay.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/docs/baumans/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/docs/baumans/LICENSE -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/docs/img/add-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/docs/img/add-module.png -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/docs/img/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/docs/img/background.svg -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/docs/img/button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/docs/img/button.svg -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/docs/img/clone-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/docs/img/clone-module.png -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/docs/img/knob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/docs/img/knob.svg -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/docs/img/meter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/docs/img/meter.svg -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/docs/img/slider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/docs/img/slider.svg -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/docs/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/docs/index.css -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/docs/index.html -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/docs/now/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/docs/now/LICENSE -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/hack_audio_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/hack_audio_gui.cpp -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/hack_audio_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/hack_audio_gui.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/hack_audio_gui.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/hack_audio_gui.mm -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/layout/hack_audio_Diagram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/layout/hack_audio_Diagram.cpp -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/layout/hack_audio_Diagram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/layout/hack_audio_Diagram.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/layout/hack_audio_FlexBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/layout/hack_audio_FlexBox.cpp -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/layout/hack_audio_FlexBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/layout/hack_audio_FlexBox.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/layout/hack_audio_Viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/layout/hack_audio_Viewport.cpp -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/layout/hack_audio_Viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/layout/hack_audio_Viewport.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/utils/hack_audio_Colours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/utils/hack_audio_Colours.cpp -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/utils/hack_audio_Colours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/utils/hack_audio_Colours.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/utils/hack_audio_FontData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/utils/hack_audio_FontData.cpp -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/utils/hack_audio_Fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/utils/hack_audio_Fonts.cpp -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/utils/hack_audio_Fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/utils/hack_audio_Fonts.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/utils/hack_audio_NavigationButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/utils/hack_audio_NavigationButton.h -------------------------------------------------------------------------------- /Modules/hack_audio_gui_full/utils/hack_audio_TextFormatting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/hack_audio_gui_full/utils/hack_audio_TextFormatting.h -------------------------------------------------------------------------------- /Modules/stm_dsp/analyzers/stm_LevelAnalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_dsp/analyzers/stm_LevelAnalyzer.h -------------------------------------------------------------------------------- /Modules/stm_dsp/processors/stm_AutoGain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_dsp/processors/stm_AutoGain.h -------------------------------------------------------------------------------- /Modules/stm_dsp/processors/stm_DCFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_dsp/processors/stm_DCFilter.h -------------------------------------------------------------------------------- /Modules/stm_dsp/processors/stm_DelaySimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_dsp/processors/stm_DelaySimple.h -------------------------------------------------------------------------------- /Modules/stm_dsp/processors/stm_DryWetMix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_dsp/processors/stm_DryWetMix.h -------------------------------------------------------------------------------- /Modules/stm_dsp/processors/stm_FrequencyModulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_dsp/processors/stm_FrequencyModulator.h -------------------------------------------------------------------------------- /Modules/stm_dsp/processors/stm_MatchedBypass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_dsp/processors/stm_MatchedBypass.h -------------------------------------------------------------------------------- /Modules/stm_dsp/processors/stm_Panner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_dsp/processors/stm_Panner.h -------------------------------------------------------------------------------- /Modules/stm_dsp/processors/stm_Saturation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_dsp/processors/stm_Saturation.h -------------------------------------------------------------------------------- /Modules/stm_dsp/stm_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_dsp/stm_dsp.h -------------------------------------------------------------------------------- /Modules/stm_dsp/utilities/stm_Measuring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_dsp/utilities/stm_Measuring.h -------------------------------------------------------------------------------- /Modules/stm_dsp/utilities/stm_Mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_dsp/utilities/stm_Mixer.h -------------------------------------------------------------------------------- /Modules/stm_dsp/utilities/stm_Notes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_dsp/utilities/stm_Notes.h -------------------------------------------------------------------------------- /Modules/stm_dsp/utilities/stm_Oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_dsp/utilities/stm_Oscillator.h -------------------------------------------------------------------------------- /Modules/stm_dsp/utilities/stm_ParameterAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_dsp/utilities/stm_ParameterAttachment.h -------------------------------------------------------------------------------- /Modules/stm_dsp/utilities/stm_Primes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_dsp/utilities/stm_Primes.h -------------------------------------------------------------------------------- /Modules/stm_dsp/utilities/stm_Rampers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_dsp/utilities/stm_Rampers.h -------------------------------------------------------------------------------- /Modules/stm_dsp/utilities/stm_RecircBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_dsp/utilities/stm_RecircBuffer.h -------------------------------------------------------------------------------- /Modules/stm_dsp/utilities/stm_RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_dsp/utilities/stm_RingBuffer.h -------------------------------------------------------------------------------- /Modules/stm_dsp/utilities/stm_RollingAverage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_dsp/utilities/stm_RollingAverage.h -------------------------------------------------------------------------------- /Modules/stm_gui/analyzers/stm_LevelMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_gui/analyzers/stm_LevelMeter.h -------------------------------------------------------------------------------- /Modules/stm_gui/controls/stm_Slider2Axis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_gui/controls/stm_Slider2Axis.h -------------------------------------------------------------------------------- /Modules/stm_gui/displays/stm_DebugDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_gui/displays/stm_DebugDisplay.h -------------------------------------------------------------------------------- /Modules/stm_gui/displays/stm_DisabledVeil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_gui/displays/stm_DisabledVeil.h -------------------------------------------------------------------------------- /Modules/stm_gui/displays/stm_RecircBufferDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_gui/displays/stm_RecircBufferDisplay.h -------------------------------------------------------------------------------- /Modules/stm_gui/displays/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_gui/displays/template.h -------------------------------------------------------------------------------- /Modules/stm_gui/icons/stm_FilterIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_gui/icons/stm_FilterIcon.h -------------------------------------------------------------------------------- /Modules/stm_gui/lookandfeel/stm_LookAndFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_gui/lookandfeel/stm_LookAndFeel.h -------------------------------------------------------------------------------- /Modules/stm_gui/stm_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Modules/stm_gui/stm_gui.h -------------------------------------------------------------------------------- /OpenGLPlugins/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(MIDIVisualizerPlus) -------------------------------------------------------------------------------- /OpenGLPlugins/MIDIVisualizerPlus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/OpenGLPlugins/MIDIVisualizerPlus/CMakeLists.txt -------------------------------------------------------------------------------- /OpenGLPlugins/MIDIVisualizerPlus/Resources/pianokey_rectangle.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/OpenGLPlugins/MIDIVisualizerPlus/Resources/pianokey_rectangle.obj -------------------------------------------------------------------------------- /OpenGLPlugins/MIDIVisualizerPlus/Resources/portmeirion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/OpenGLPlugins/MIDIVisualizerPlus/Resources/portmeirion.jpg -------------------------------------------------------------------------------- /OpenGLPlugins/MIDIVisualizerPlus/Resources/teapot.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/OpenGLPlugins/MIDIVisualizerPlus/Resources/teapot.obj -------------------------------------------------------------------------------- /OpenGLPlugins/MIDIVisualizerPlus/Source/Attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/OpenGLPlugins/MIDIVisualizerPlus/Source/Attributes.h -------------------------------------------------------------------------------- /OpenGLPlugins/MIDIVisualizerPlus/Source/BinaryResourceHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/OpenGLPlugins/MIDIVisualizerPlus/Source/BinaryResourceHelper.h -------------------------------------------------------------------------------- /OpenGLPlugins/MIDIVisualizerPlus/Source/GLUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/OpenGLPlugins/MIDIVisualizerPlus/Source/GLUtils.h -------------------------------------------------------------------------------- /OpenGLPlugins/MIDIVisualizerPlus/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/OpenGLPlugins/MIDIVisualizerPlus/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /OpenGLPlugins/MIDIVisualizerPlus/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/OpenGLPlugins/MIDIVisualizerPlus/Source/PluginEditor.h -------------------------------------------------------------------------------- /OpenGLPlugins/MIDIVisualizerPlus/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/OpenGLPlugins/MIDIVisualizerPlus/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /OpenGLPlugins/MIDIVisualizerPlus/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/OpenGLPlugins/MIDIVisualizerPlus/Source/PluginProcessor.h -------------------------------------------------------------------------------- /OpenGLPlugins/MIDIVisualizerPlus/Source/ShaderPreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/OpenGLPlugins/MIDIVisualizerPlus/Source/ShaderPreset.h -------------------------------------------------------------------------------- /OpenGLPlugins/MIDIVisualizerPlus/Source/Shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/OpenGLPlugins/MIDIVisualizerPlus/Source/Shape.h -------------------------------------------------------------------------------- /OpenGLPlugins/MIDIVisualizerPlus/Source/Textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/OpenGLPlugins/MIDIVisualizerPlus/Source/Textures.h -------------------------------------------------------------------------------- /OpenGLPlugins/MIDIVisualizerPlus/Source/Uniforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/OpenGLPlugins/MIDIVisualizerPlus/Source/Uniforms.h -------------------------------------------------------------------------------- /OpenGLPlugins/MIDIVisualizerPlus/Source/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/OpenGLPlugins/MIDIVisualizerPlus/Source/Vertex.h -------------------------------------------------------------------------------- /OpenGLPlugins/MIDIVisualizerPlus/Source/WavefrontObjParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/OpenGLPlugins/MIDIVisualizerPlus/Source/WavefrontObjParser.h -------------------------------------------------------------------------------- /Plugins/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(ModMatePlus) -------------------------------------------------------------------------------- /Plugins/ModMatePlus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Plugins/ModMatePlus/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/ModMatePlus/Images/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Plugins/ModMatePlus/Images/help.svg -------------------------------------------------------------------------------- /Plugins/ModMatePlus/Source/BinaryHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Plugins/ModMatePlus/Source/BinaryHelper.h -------------------------------------------------------------------------------- /Plugins/ModMatePlus/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Plugins/ModMatePlus/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Plugins/ModMatePlus/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Plugins/ModMatePlus/Source/PluginEditor.h -------------------------------------------------------------------------------- /Plugins/ModMatePlus/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Plugins/ModMatePlus/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Plugins/ModMatePlus/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Plugins/ModMatePlus/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Plugins/ModMatePlus/Source/UnidirectionalSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Plugins/ModMatePlus/Source/UnidirectionalSlider.cpp -------------------------------------------------------------------------------- /Plugins/ModMatePlus/Source/UnidirectionalSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Plugins/ModMatePlus/Source/UnidirectionalSlider.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/README.md -------------------------------------------------------------------------------- /Reverbs/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(SimpleReverbPlus) -------------------------------------------------------------------------------- /Reverbs/SimpleReverbPlus/.gitignore: -------------------------------------------------------------------------------- 1 | build -------------------------------------------------------------------------------- /Reverbs/SimpleReverbPlus/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Reverbs/SimpleReverbPlus/.gitmodules -------------------------------------------------------------------------------- /Reverbs/SimpleReverbPlus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Reverbs/SimpleReverbPlus/CMakeLists.txt -------------------------------------------------------------------------------- /Reverbs/SimpleReverbPlus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Reverbs/SimpleReverbPlus/LICENSE -------------------------------------------------------------------------------- /Reverbs/SimpleReverbPlus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Reverbs/SimpleReverbPlus/README.md -------------------------------------------------------------------------------- /Reverbs/SimpleReverbPlus/SimpleReverbPlus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Reverbs/SimpleReverbPlus/SimpleReverbPlus.png -------------------------------------------------------------------------------- /Reverbs/SimpleReverbPlus/Source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Reverbs/SimpleReverbPlus/Source/CMakeLists.txt -------------------------------------------------------------------------------- /Reverbs/SimpleReverbPlus/Source/CustomLookAndFeel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Reverbs/SimpleReverbPlus/Source/CustomLookAndFeel.cpp -------------------------------------------------------------------------------- /Reverbs/SimpleReverbPlus/Source/CustomLookAndFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Reverbs/SimpleReverbPlus/Source/CustomLookAndFeel.h -------------------------------------------------------------------------------- /Reverbs/SimpleReverbPlus/Source/NameLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Reverbs/SimpleReverbPlus/Source/NameLabel.h -------------------------------------------------------------------------------- /Reverbs/SimpleReverbPlus/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Reverbs/SimpleReverbPlus/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Reverbs/SimpleReverbPlus/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Reverbs/SimpleReverbPlus/Source/PluginEditor.h -------------------------------------------------------------------------------- /Reverbs/SimpleReverbPlus/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Reverbs/SimpleReverbPlus/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Reverbs/SimpleReverbPlus/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Reverbs/SimpleReverbPlus/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Reverbs/SimpleReverbPlus/Source/RotarySlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Reverbs/SimpleReverbPlus/Source/RotarySlider.cpp -------------------------------------------------------------------------------- /Reverbs/SimpleReverbPlus/Source/RotarySlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcoul/JUCE4Pi/HEAD/Reverbs/SimpleReverbPlus/Source/RotarySlider.h --------------------------------------------------------------------------------