├── .github └── workflows │ ├── bump_tag.yml │ ├── cmake_full_test.yml │ ├── cmake_release.yml │ ├── sync.yml │ └── sync_release.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── Docs ├── compact_darkblue_flat.svg ├── logo.svg └── screenshot.png ├── LICENSE ├── README.md ├── Source ├── DSP │ ├── MeterSource.h │ ├── ShaperFunctions.h │ ├── WaveShaper.h │ └── dsp_defines.h ├── GUI │ ├── button_component.h │ ├── button_look_and_feel.h │ ├── combobox_component.h │ ├── combobox_look_and_feel.h │ ├── interface_definitions.h │ ├── linear_slider_component.h │ ├── linear_slider_look_and_feel.h │ ├── meter_component.h │ ├── meter_look_and_feel.h │ ├── name_look_and_feel.h │ ├── rotary_slider_component.h │ ├── rotary_slider_look_and_feel.h │ └── shaper_plot_component.h ├── Panel │ ├── control_panel.cpp │ ├── control_panel.h │ ├── logo_panel.cpp │ ├── logo_panel.h │ ├── main_panel.cpp │ ├── main_panel.h │ ├── meter_panel.cpp │ ├── meter_panel.h │ ├── panel_definitions.h │ ├── plot_panel.cpp │ ├── plot_panel.h │ ├── top_panel.cpp │ └── top_panel.h ├── PluginEditor.cpp ├── PluginEditor.h ├── PluginProcessor.cpp ├── PluginProcessor.h └── State │ ├── dummy_processor.cpp │ ├── dummy_processor.h │ ├── property.cpp │ ├── property.h │ └── state_definitions.h ├── Tests ├── Benchmarks.cpp └── PluginBasics.cpp ├── packaging ├── dmg.json └── installer.iss ├── renovate.json └── resources ├── font ├── LICENSE.txt └── OpenSans-SemiBold.ttf ├── logo.svg └── zlaudio.svg /.github/workflows/bump_tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/.github/workflows/bump_tag.yml -------------------------------------------------------------------------------- /.github/workflows/cmake_full_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/.github/workflows/cmake_full_test.yml -------------------------------------------------------------------------------- /.github/workflows/cmake_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/.github/workflows/cmake_release.yml -------------------------------------------------------------------------------- /.github/workflows/sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/.github/workflows/sync.yml -------------------------------------------------------------------------------- /.github/workflows/sync_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/.github/workflows/sync_release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Docs/compact_darkblue_flat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Docs/compact_darkblue_flat.svg -------------------------------------------------------------------------------- /Docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Docs/logo.svg -------------------------------------------------------------------------------- /Docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Docs/screenshot.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/README.md -------------------------------------------------------------------------------- /Source/DSP/MeterSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/DSP/MeterSource.h -------------------------------------------------------------------------------- /Source/DSP/ShaperFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/DSP/ShaperFunctions.h -------------------------------------------------------------------------------- /Source/DSP/WaveShaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/DSP/WaveShaper.h -------------------------------------------------------------------------------- /Source/DSP/dsp_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/DSP/dsp_defines.h -------------------------------------------------------------------------------- /Source/GUI/button_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/GUI/button_component.h -------------------------------------------------------------------------------- /Source/GUI/button_look_and_feel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/GUI/button_look_and_feel.h -------------------------------------------------------------------------------- /Source/GUI/combobox_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/GUI/combobox_component.h -------------------------------------------------------------------------------- /Source/GUI/combobox_look_and_feel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/GUI/combobox_look_and_feel.h -------------------------------------------------------------------------------- /Source/GUI/interface_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/GUI/interface_definitions.h -------------------------------------------------------------------------------- /Source/GUI/linear_slider_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/GUI/linear_slider_component.h -------------------------------------------------------------------------------- /Source/GUI/linear_slider_look_and_feel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/GUI/linear_slider_look_and_feel.h -------------------------------------------------------------------------------- /Source/GUI/meter_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/GUI/meter_component.h -------------------------------------------------------------------------------- /Source/GUI/meter_look_and_feel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/GUI/meter_look_and_feel.h -------------------------------------------------------------------------------- /Source/GUI/name_look_and_feel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/GUI/name_look_and_feel.h -------------------------------------------------------------------------------- /Source/GUI/rotary_slider_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/GUI/rotary_slider_component.h -------------------------------------------------------------------------------- /Source/GUI/rotary_slider_look_and_feel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/GUI/rotary_slider_look_and_feel.h -------------------------------------------------------------------------------- /Source/GUI/shaper_plot_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/GUI/shaper_plot_component.h -------------------------------------------------------------------------------- /Source/Panel/control_panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/Panel/control_panel.cpp -------------------------------------------------------------------------------- /Source/Panel/control_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/Panel/control_panel.h -------------------------------------------------------------------------------- /Source/Panel/logo_panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/Panel/logo_panel.cpp -------------------------------------------------------------------------------- /Source/Panel/logo_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/Panel/logo_panel.h -------------------------------------------------------------------------------- /Source/Panel/main_panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/Panel/main_panel.cpp -------------------------------------------------------------------------------- /Source/Panel/main_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/Panel/main_panel.h -------------------------------------------------------------------------------- /Source/Panel/meter_panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/Panel/meter_panel.cpp -------------------------------------------------------------------------------- /Source/Panel/meter_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/Panel/meter_panel.h -------------------------------------------------------------------------------- /Source/Panel/panel_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/Panel/panel_definitions.h -------------------------------------------------------------------------------- /Source/Panel/plot_panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/Panel/plot_panel.cpp -------------------------------------------------------------------------------- /Source/Panel/plot_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/Panel/plot_panel.h -------------------------------------------------------------------------------- /Source/Panel/top_panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/Panel/top_panel.cpp -------------------------------------------------------------------------------- /Source/Panel/top_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/Panel/top_panel.h -------------------------------------------------------------------------------- /Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/PluginEditor.h -------------------------------------------------------------------------------- /Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Source/State/dummy_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/State/dummy_processor.cpp -------------------------------------------------------------------------------- /Source/State/dummy_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/State/dummy_processor.h -------------------------------------------------------------------------------- /Source/State/property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/State/property.cpp -------------------------------------------------------------------------------- /Source/State/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/State/property.h -------------------------------------------------------------------------------- /Source/State/state_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Source/State/state_definitions.h -------------------------------------------------------------------------------- /Tests/Benchmarks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Tests/Benchmarks.cpp -------------------------------------------------------------------------------- /Tests/PluginBasics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/Tests/PluginBasics.cpp -------------------------------------------------------------------------------- /packaging/dmg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/packaging/dmg.json -------------------------------------------------------------------------------- /packaging/installer.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/packaging/installer.iss -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/renovate.json -------------------------------------------------------------------------------- /resources/font/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/resources/font/LICENSE.txt -------------------------------------------------------------------------------- /resources/font/OpenSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/resources/font/OpenSans-SemiBold.ttf -------------------------------------------------------------------------------- /resources/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/resources/logo.svg -------------------------------------------------------------------------------- /resources/zlaudio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZL-Audio/ZLInflator/HEAD/resources/zlaudio.svg --------------------------------------------------------------------------------