├── .gitignore ├── .gitmodules ├── LICENSE ├── PluginName ├── Assets │ ├── FactoryPresets.xml │ ├── Fonts │ │ └── BentonSans Regular.otf │ ├── Images │ │ └── image.jpg │ └── Registration │ │ ├── KeyGenerator.h │ │ ├── Unlocker.h │ │ ├── auth.php │ │ └── stunnel.conf ├── Installers │ ├── MacOS │ │ ├── Introduction.txt │ │ ├── License.txt │ │ ├── PluginNameInstaller.pkgproj │ │ └── ReadMe.txt │ └── Windows │ │ └── License.txt ├── LICENSE ├── PluginName.jucer ├── Prototype │ ├── prototype.maxpat │ └── prototype.py ├── README.md ├── Scripts │ ├── Panels │ │ ├── PanelTemplate │ │ │ ├── PanelName.cpp │ │ │ └── PanelName.h │ │ └── generate.py │ └── headers.py ├── Source │ ├── DSP │ │ └── rust-dsp │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ ├── cbindgen.toml │ │ │ ├── gain.hpp │ │ │ ├── src │ │ │ ├── gain.rs │ │ │ └── lib.rs │ │ │ ├── target │ │ │ ├── .rustc_info.json │ │ │ ├── CACHEDIR.TAG │ │ │ └── release │ │ │ │ ├── .cargo-lock │ │ │ │ └── .fingerprint │ │ │ │ └── rust-dsp-d29acd8d78c44367 │ │ │ │ ├── dep-lib-rust-dsp │ │ │ │ ├── invoked.timestamp │ │ │ │ ├── lib-rust-dsp │ │ │ │ └── lib-rust-dsp.json │ │ │ └── test.cpp │ ├── GUI │ │ ├── Components │ │ │ ├── ComboBox │ │ │ │ ├── ParameterComboBox.cpp │ │ │ │ └── ParameterComboBox.h │ │ │ ├── Slider │ │ │ │ ├── ParameterSlider.cpp │ │ │ │ └── ParameterSlider.h │ │ │ └── ToggleButton │ │ │ │ ├── ParameterToggleButton.cpp │ │ │ │ └── ParameterToggleButton.h │ │ ├── ContextMenu │ │ │ ├── ContextMenu.cpp │ │ │ └── ContextMenu.h │ │ ├── Overlays │ │ │ ├── Base │ │ │ │ ├── OverlayBase.cpp │ │ │ │ └── OverlayBase.h │ │ │ ├── Preset │ │ │ │ ├── Delete │ │ │ │ │ ├── DeletePresetOverlay.cpp │ │ │ │ │ └── DeletePresetOverlay.h │ │ │ │ ├── Display │ │ │ │ │ ├── PresetDisplayOverlay.cpp │ │ │ │ │ └── PresetDisplayOverlay.h │ │ │ │ ├── Save │ │ │ │ │ ├── SavePresetOverlay.cpp │ │ │ │ │ └── SavePresetOverlay.h │ │ │ │ └── Update │ │ │ │ │ ├── UpdatePresetOverlay.cpp │ │ │ │ │ └── UpdatePresetOverlay.h │ │ │ ├── Registration │ │ │ │ ├── Login │ │ │ │ │ ├── LoginOverlay.cpp │ │ │ │ │ ├── LoginOverlay.h │ │ │ │ │ ├── UnlockForm.cpp │ │ │ │ │ └── UnlockForm.h │ │ │ │ └── Logout │ │ │ │ │ ├── LogoutOverlay.cpp │ │ │ │ │ └── LogoutOverlay.h │ │ │ └── Update │ │ │ │ ├── UpdatePluginOverlay.cpp │ │ │ │ └── UpdatePluginOverlay.h │ │ ├── Panels │ │ │ ├── Base │ │ │ │ ├── PanelBase.cpp │ │ │ │ └── PanelBase.h │ │ │ └── Main │ │ │ │ ├── Body │ │ │ │ ├── MainPanel.cpp │ │ │ │ └── MainPanel.h │ │ │ │ ├── Header │ │ │ │ ├── PresetPanel.cpp │ │ │ │ └── PresetPanel.h │ │ │ │ ├── Menu │ │ │ │ ├── MenuPanel.cpp │ │ │ │ └── MenuPanel.h │ │ │ │ └── Side │ │ │ │ ├── SidePanel.cpp │ │ │ │ └── SidePanel.h │ │ ├── PluginNameGUI.h │ │ └── PluginNameLookAndFeel.h │ ├── PluginEditor.cpp │ ├── PluginEditor.h │ ├── PluginProcessor.cpp │ ├── PluginProcessor.h │ └── State │ │ ├── PluginNameParameters.h │ │ ├── Preset │ │ ├── PresetManager.cpp │ │ ├── PresetManager.h │ │ └── ViewItem │ │ │ ├── PresetViewItem.cpp │ │ │ └── PresetViewItem.h │ │ ├── Registration │ │ ├── RegistrationStatus.cpp │ │ └── RegistrationStatus.h │ │ └── Settings │ │ ├── PluginNameSettings.h │ │ ├── SettingsManager.cpp │ │ └── SettingsManager.h ├── Testing │ ├── Audio │ │ └── Amen-break.wav │ └── compare.py └── Verification │ └── proof.v ├── README.md └── duplicate.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/LICENSE -------------------------------------------------------------------------------- /PluginName/Assets/FactoryPresets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Assets/FactoryPresets.xml -------------------------------------------------------------------------------- /PluginName/Assets/Fonts/BentonSans Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Assets/Fonts/BentonSans Regular.otf -------------------------------------------------------------------------------- /PluginName/Assets/Images/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Assets/Images/image.jpg -------------------------------------------------------------------------------- /PluginName/Assets/Registration/KeyGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Assets/Registration/KeyGenerator.h -------------------------------------------------------------------------------- /PluginName/Assets/Registration/Unlocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Assets/Registration/Unlocker.h -------------------------------------------------------------------------------- /PluginName/Assets/Registration/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Assets/Registration/auth.php -------------------------------------------------------------------------------- /PluginName/Assets/Registration/stunnel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Assets/Registration/stunnel.conf -------------------------------------------------------------------------------- /PluginName/Installers/MacOS/Introduction.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PluginName/Installers/MacOS/License.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PluginName/Installers/MacOS/PluginNameInstaller.pkgproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Installers/MacOS/PluginNameInstaller.pkgproj -------------------------------------------------------------------------------- /PluginName/Installers/MacOS/ReadMe.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PluginName/Installers/Windows/License.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PluginName/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/LICENSE -------------------------------------------------------------------------------- /PluginName/PluginName.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/PluginName.jucer -------------------------------------------------------------------------------- /PluginName/Prototype/prototype.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Prototype/prototype.maxpat -------------------------------------------------------------------------------- /PluginName/Prototype/prototype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Prototype/prototype.py -------------------------------------------------------------------------------- /PluginName/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/README.md -------------------------------------------------------------------------------- /PluginName/Scripts/Panels/PanelTemplate/PanelName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Scripts/Panels/PanelTemplate/PanelName.cpp -------------------------------------------------------------------------------- /PluginName/Scripts/Panels/PanelTemplate/PanelName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Scripts/Panels/PanelTemplate/PanelName.h -------------------------------------------------------------------------------- /PluginName/Scripts/Panels/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Scripts/Panels/generate.py -------------------------------------------------------------------------------- /PluginName/Scripts/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Scripts/headers.py -------------------------------------------------------------------------------- /PluginName/Source/DSP/rust-dsp/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/DSP/rust-dsp/Cargo.lock -------------------------------------------------------------------------------- /PluginName/Source/DSP/rust-dsp/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/DSP/rust-dsp/Cargo.toml -------------------------------------------------------------------------------- /PluginName/Source/DSP/rust-dsp/cbindgen.toml: -------------------------------------------------------------------------------- 1 | namespace = "gain" 2 | -------------------------------------------------------------------------------- /PluginName/Source/DSP/rust-dsp/gain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/DSP/rust-dsp/gain.hpp -------------------------------------------------------------------------------- /PluginName/Source/DSP/rust-dsp/src/gain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/DSP/rust-dsp/src/gain.rs -------------------------------------------------------------------------------- /PluginName/Source/DSP/rust-dsp/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/DSP/rust-dsp/src/lib.rs -------------------------------------------------------------------------------- /PluginName/Source/DSP/rust-dsp/target/.rustc_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/DSP/rust-dsp/target/.rustc_info.json -------------------------------------------------------------------------------- /PluginName/Source/DSP/rust-dsp/target/CACHEDIR.TAG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/DSP/rust-dsp/target/CACHEDIR.TAG -------------------------------------------------------------------------------- /PluginName/Source/DSP/rust-dsp/target/release/.cargo-lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PluginName/Source/DSP/rust-dsp/target/release/.fingerprint/rust-dsp-d29acd8d78c44367/dep-lib-rust-dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/DSP/rust-dsp/target/release/.fingerprint/rust-dsp-d29acd8d78c44367/dep-lib-rust-dsp -------------------------------------------------------------------------------- /PluginName/Source/DSP/rust-dsp/target/release/.fingerprint/rust-dsp-d29acd8d78c44367/invoked.timestamp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/DSP/rust-dsp/target/release/.fingerprint/rust-dsp-d29acd8d78c44367/invoked.timestamp -------------------------------------------------------------------------------- /PluginName/Source/DSP/rust-dsp/target/release/.fingerprint/rust-dsp-d29acd8d78c44367/lib-rust-dsp: -------------------------------------------------------------------------------- 1 | 46786103d6822798 -------------------------------------------------------------------------------- /PluginName/Source/DSP/rust-dsp/target/release/.fingerprint/rust-dsp-d29acd8d78c44367/lib-rust-dsp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/DSP/rust-dsp/target/release/.fingerprint/rust-dsp-d29acd8d78c44367/lib-rust-dsp.json -------------------------------------------------------------------------------- /PluginName/Source/DSP/rust-dsp/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/DSP/rust-dsp/test.cpp -------------------------------------------------------------------------------- /PluginName/Source/GUI/Components/ComboBox/ParameterComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Components/ComboBox/ParameterComboBox.cpp -------------------------------------------------------------------------------- /PluginName/Source/GUI/Components/ComboBox/ParameterComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Components/ComboBox/ParameterComboBox.h -------------------------------------------------------------------------------- /PluginName/Source/GUI/Components/Slider/ParameterSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Components/Slider/ParameterSlider.cpp -------------------------------------------------------------------------------- /PluginName/Source/GUI/Components/Slider/ParameterSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Components/Slider/ParameterSlider.h -------------------------------------------------------------------------------- /PluginName/Source/GUI/Components/ToggleButton/ParameterToggleButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Components/ToggleButton/ParameterToggleButton.cpp -------------------------------------------------------------------------------- /PluginName/Source/GUI/Components/ToggleButton/ParameterToggleButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Components/ToggleButton/ParameterToggleButton.h -------------------------------------------------------------------------------- /PluginName/Source/GUI/ContextMenu/ContextMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/ContextMenu/ContextMenu.cpp -------------------------------------------------------------------------------- /PluginName/Source/GUI/ContextMenu/ContextMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/ContextMenu/ContextMenu.h -------------------------------------------------------------------------------- /PluginName/Source/GUI/Overlays/Base/OverlayBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Overlays/Base/OverlayBase.cpp -------------------------------------------------------------------------------- /PluginName/Source/GUI/Overlays/Base/OverlayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Overlays/Base/OverlayBase.h -------------------------------------------------------------------------------- /PluginName/Source/GUI/Overlays/Preset/Delete/DeletePresetOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Overlays/Preset/Delete/DeletePresetOverlay.cpp -------------------------------------------------------------------------------- /PluginName/Source/GUI/Overlays/Preset/Delete/DeletePresetOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Overlays/Preset/Delete/DeletePresetOverlay.h -------------------------------------------------------------------------------- /PluginName/Source/GUI/Overlays/Preset/Display/PresetDisplayOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Overlays/Preset/Display/PresetDisplayOverlay.cpp -------------------------------------------------------------------------------- /PluginName/Source/GUI/Overlays/Preset/Display/PresetDisplayOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Overlays/Preset/Display/PresetDisplayOverlay.h -------------------------------------------------------------------------------- /PluginName/Source/GUI/Overlays/Preset/Save/SavePresetOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Overlays/Preset/Save/SavePresetOverlay.cpp -------------------------------------------------------------------------------- /PluginName/Source/GUI/Overlays/Preset/Save/SavePresetOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Overlays/Preset/Save/SavePresetOverlay.h -------------------------------------------------------------------------------- /PluginName/Source/GUI/Overlays/Preset/Update/UpdatePresetOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Overlays/Preset/Update/UpdatePresetOverlay.cpp -------------------------------------------------------------------------------- /PluginName/Source/GUI/Overlays/Preset/Update/UpdatePresetOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Overlays/Preset/Update/UpdatePresetOverlay.h -------------------------------------------------------------------------------- /PluginName/Source/GUI/Overlays/Registration/Login/LoginOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Overlays/Registration/Login/LoginOverlay.cpp -------------------------------------------------------------------------------- /PluginName/Source/GUI/Overlays/Registration/Login/LoginOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Overlays/Registration/Login/LoginOverlay.h -------------------------------------------------------------------------------- /PluginName/Source/GUI/Overlays/Registration/Login/UnlockForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Overlays/Registration/Login/UnlockForm.cpp -------------------------------------------------------------------------------- /PluginName/Source/GUI/Overlays/Registration/Login/UnlockForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Overlays/Registration/Login/UnlockForm.h -------------------------------------------------------------------------------- /PluginName/Source/GUI/Overlays/Registration/Logout/LogoutOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Overlays/Registration/Logout/LogoutOverlay.cpp -------------------------------------------------------------------------------- /PluginName/Source/GUI/Overlays/Registration/Logout/LogoutOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Overlays/Registration/Logout/LogoutOverlay.h -------------------------------------------------------------------------------- /PluginName/Source/GUI/Overlays/Update/UpdatePluginOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Overlays/Update/UpdatePluginOverlay.cpp -------------------------------------------------------------------------------- /PluginName/Source/GUI/Overlays/Update/UpdatePluginOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Overlays/Update/UpdatePluginOverlay.h -------------------------------------------------------------------------------- /PluginName/Source/GUI/Panels/Base/PanelBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Panels/Base/PanelBase.cpp -------------------------------------------------------------------------------- /PluginName/Source/GUI/Panels/Base/PanelBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Panels/Base/PanelBase.h -------------------------------------------------------------------------------- /PluginName/Source/GUI/Panels/Main/Body/MainPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Panels/Main/Body/MainPanel.cpp -------------------------------------------------------------------------------- /PluginName/Source/GUI/Panels/Main/Body/MainPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Panels/Main/Body/MainPanel.h -------------------------------------------------------------------------------- /PluginName/Source/GUI/Panels/Main/Header/PresetPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Panels/Main/Header/PresetPanel.cpp -------------------------------------------------------------------------------- /PluginName/Source/GUI/Panels/Main/Header/PresetPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Panels/Main/Header/PresetPanel.h -------------------------------------------------------------------------------- /PluginName/Source/GUI/Panels/Main/Menu/MenuPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Panels/Main/Menu/MenuPanel.cpp -------------------------------------------------------------------------------- /PluginName/Source/GUI/Panels/Main/Menu/MenuPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Panels/Main/Menu/MenuPanel.h -------------------------------------------------------------------------------- /PluginName/Source/GUI/Panels/Main/Side/SidePanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Panels/Main/Side/SidePanel.cpp -------------------------------------------------------------------------------- /PluginName/Source/GUI/Panels/Main/Side/SidePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/Panels/Main/Side/SidePanel.h -------------------------------------------------------------------------------- /PluginName/Source/GUI/PluginNameGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/PluginNameGUI.h -------------------------------------------------------------------------------- /PluginName/Source/GUI/PluginNameLookAndFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/GUI/PluginNameLookAndFeel.h -------------------------------------------------------------------------------- /PluginName/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /PluginName/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/PluginEditor.h -------------------------------------------------------------------------------- /PluginName/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /PluginName/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/PluginProcessor.h -------------------------------------------------------------------------------- /PluginName/Source/State/PluginNameParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/State/PluginNameParameters.h -------------------------------------------------------------------------------- /PluginName/Source/State/Preset/PresetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/State/Preset/PresetManager.cpp -------------------------------------------------------------------------------- /PluginName/Source/State/Preset/PresetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/State/Preset/PresetManager.h -------------------------------------------------------------------------------- /PluginName/Source/State/Preset/ViewItem/PresetViewItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/State/Preset/ViewItem/PresetViewItem.cpp -------------------------------------------------------------------------------- /PluginName/Source/State/Preset/ViewItem/PresetViewItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/State/Preset/ViewItem/PresetViewItem.h -------------------------------------------------------------------------------- /PluginName/Source/State/Registration/RegistrationStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/State/Registration/RegistrationStatus.cpp -------------------------------------------------------------------------------- /PluginName/Source/State/Registration/RegistrationStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/State/Registration/RegistrationStatus.h -------------------------------------------------------------------------------- /PluginName/Source/State/Settings/PluginNameSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/State/Settings/PluginNameSettings.h -------------------------------------------------------------------------------- /PluginName/Source/State/Settings/SettingsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/State/Settings/SettingsManager.cpp -------------------------------------------------------------------------------- /PluginName/Source/State/Settings/SettingsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Source/State/Settings/SettingsManager.h -------------------------------------------------------------------------------- /PluginName/Testing/Audio/Amen-break.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/PluginName/Testing/Audio/Amen-break.wav -------------------------------------------------------------------------------- /PluginName/Testing/compare.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PluginName/Verification/proof.v: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/README.md -------------------------------------------------------------------------------- /duplicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nberr/juce-template/HEAD/duplicate.py --------------------------------------------------------------------------------