├── .clang-format ├── .github ├── FUNDING.yml └── workflows │ └── cmake_ctest.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── VERSION ├── docs └── valentine_screenshot.png ├── libs └── tote_bag │ ├── assets │ ├── arrow_left.svg │ ├── arrow_right.svg │ ├── totie_outline.svg │ ├── totie_pink.svg │ └── totie_watermark.svg │ ├── dsp │ ├── AudioHelpers.h │ ├── CircularBuffer.h │ ├── Compressor.cpp │ ├── Compressor.h │ ├── DigiDegraders.cpp │ ├── DigiDegraders.h │ ├── EnvelopeDetector.cpp │ ├── EnvelopeDetector.h │ ├── LagrangeInterpolator.h │ ├── Saturation.cpp │ ├── Saturation.h │ └── ThiranAllpass.h │ ├── juce_gui │ ├── components │ │ ├── panels │ │ │ ├── InfoPanel.cpp │ │ │ ├── InfoPanel.h │ │ │ ├── PresetPanel.cpp │ │ │ ├── PresetPanel.h │ │ │ ├── VerticalMeterPanel.cpp │ │ │ ├── VerticalMeterPanel.h │ │ │ └── tbl_PresetPanelModel.h │ │ └── widgets │ │ │ ├── DrawableParameterButton.cpp │ │ │ ├── DrawableParameterButton.h │ │ │ ├── FlatTextButton.cpp │ │ │ ├── FlatTextButton.h │ │ │ ├── FlatTextChooser.cpp │ │ │ ├── FlatTextChooser.h │ │ │ ├── LabelSlider.cpp │ │ │ ├── LabelSlider.h │ │ │ ├── ParameterSlider.cpp │ │ │ ├── ParameterSlider.h │ │ │ ├── ParameterTextButton.cpp │ │ │ ├── ParameterTextButton.h │ │ │ ├── tbl_ToggleButton.cpp │ │ │ └── tbl_ToggleButton.h │ ├── lookandfeel │ │ ├── LookAndFeel.cpp │ │ ├── LookAndFeel.h │ │ ├── LookAndFeelConstants.h │ │ └── MeterLookAndFeelMethods.h │ ├── managers │ │ ├── RadioButtonGroupManager.cpp │ │ ├── RadioButtonGroupManager.h │ │ ├── ToteBagPresetManager.cpp │ │ └── ToteBagPresetManager.h │ └── utilities │ │ ├── GraphicsUtilities.cpp │ │ ├── GraphicsUtilities.h │ │ ├── tbl_font.cpp │ │ └── tbl_font.h │ └── utils │ ├── macros.hpp │ ├── tbl_math.hpp │ └── type_helpers.hpp ├── scripts ├── installer_mac │ ├── make_installer.sh │ └── resources │ │ ├── License.txt │ │ └── Readme.rtf └── installer_win │ └── installer.iss ├── src ├── PluginEditor.cpp ├── PluginEditor.h ├── PluginProcessor.cpp ├── PluginProcessor.h ├── ValentineParameters.h └── gui │ ├── assets │ ├── fonts │ │ ├── Roboto-Regular.ttf │ │ ├── RobotoMono-Medium.ttf │ │ └── RobotoMono-Regular.ttf │ └── logos │ │ └── val_totebag_logo.svg │ └── panels │ ├── ValentineBottomRowPanel.cpp │ ├── ValentineBottomRowPanel.h │ ├── ValentineCenterPanel.cpp │ ├── ValentineCenterPanel.h │ ├── ValentineMainPanel.cpp │ ├── ValentineMainPanel.h │ ├── ValentineTopRowPanel.cpp │ └── ValentineTopRowPanel.h ├── tests ├── AudioHelpersTests.cpp ├── AudioHelpersTests.hpp ├── MathTests.cpp └── PluginBasics.cpp └── version.h.in /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: JoseDiazRohena 4 | 5 | -------------------------------------------------------------------------------- /.github/workflows/cmake_ctest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/.github/workflows/cmake_ctest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.1 2 | -------------------------------------------------------------------------------- /docs/valentine_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/docs/valentine_screenshot.png -------------------------------------------------------------------------------- /libs/tote_bag/assets/arrow_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/assets/arrow_left.svg -------------------------------------------------------------------------------- /libs/tote_bag/assets/arrow_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/assets/arrow_right.svg -------------------------------------------------------------------------------- /libs/tote_bag/assets/totie_outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/assets/totie_outline.svg -------------------------------------------------------------------------------- /libs/tote_bag/assets/totie_pink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/assets/totie_pink.svg -------------------------------------------------------------------------------- /libs/tote_bag/assets/totie_watermark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/assets/totie_watermark.svg -------------------------------------------------------------------------------- /libs/tote_bag/dsp/AudioHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/dsp/AudioHelpers.h -------------------------------------------------------------------------------- /libs/tote_bag/dsp/CircularBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/dsp/CircularBuffer.h -------------------------------------------------------------------------------- /libs/tote_bag/dsp/Compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/dsp/Compressor.cpp -------------------------------------------------------------------------------- /libs/tote_bag/dsp/Compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/dsp/Compressor.h -------------------------------------------------------------------------------- /libs/tote_bag/dsp/DigiDegraders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/dsp/DigiDegraders.cpp -------------------------------------------------------------------------------- /libs/tote_bag/dsp/DigiDegraders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/dsp/DigiDegraders.h -------------------------------------------------------------------------------- /libs/tote_bag/dsp/EnvelopeDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/dsp/EnvelopeDetector.cpp -------------------------------------------------------------------------------- /libs/tote_bag/dsp/EnvelopeDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/dsp/EnvelopeDetector.h -------------------------------------------------------------------------------- /libs/tote_bag/dsp/LagrangeInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/dsp/LagrangeInterpolator.h -------------------------------------------------------------------------------- /libs/tote_bag/dsp/Saturation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/dsp/Saturation.cpp -------------------------------------------------------------------------------- /libs/tote_bag/dsp/Saturation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/dsp/Saturation.h -------------------------------------------------------------------------------- /libs/tote_bag/dsp/ThiranAllpass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/dsp/ThiranAllpass.h -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/panels/InfoPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/components/panels/InfoPanel.cpp -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/panels/InfoPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/components/panels/InfoPanel.h -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/panels/PresetPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/components/panels/PresetPanel.cpp -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/panels/PresetPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/components/panels/PresetPanel.h -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/panels/VerticalMeterPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/components/panels/VerticalMeterPanel.cpp -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/panels/VerticalMeterPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/components/panels/VerticalMeterPanel.h -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/panels/tbl_PresetPanelModel.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/widgets/DrawableParameterButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/components/widgets/DrawableParameterButton.cpp -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/widgets/DrawableParameterButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/components/widgets/DrawableParameterButton.h -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/widgets/FlatTextButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/components/widgets/FlatTextButton.cpp -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/widgets/FlatTextButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/components/widgets/FlatTextButton.h -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/widgets/FlatTextChooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/components/widgets/FlatTextChooser.cpp -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/widgets/FlatTextChooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/components/widgets/FlatTextChooser.h -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/widgets/LabelSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/components/widgets/LabelSlider.cpp -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/widgets/LabelSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/components/widgets/LabelSlider.h -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/widgets/ParameterSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/components/widgets/ParameterSlider.cpp -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/widgets/ParameterSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/components/widgets/ParameterSlider.h -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/widgets/ParameterTextButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/components/widgets/ParameterTextButton.cpp -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/widgets/ParameterTextButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/components/widgets/ParameterTextButton.h -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/widgets/tbl_ToggleButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/components/widgets/tbl_ToggleButton.cpp -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/components/widgets/tbl_ToggleButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/components/widgets/tbl_ToggleButton.h -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/lookandfeel/LookAndFeel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/lookandfeel/LookAndFeel.cpp -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/lookandfeel/LookAndFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/lookandfeel/LookAndFeel.h -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/lookandfeel/LookAndFeelConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/lookandfeel/LookAndFeelConstants.h -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/lookandfeel/MeterLookAndFeelMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/lookandfeel/MeterLookAndFeelMethods.h -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/managers/RadioButtonGroupManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/managers/RadioButtonGroupManager.cpp -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/managers/RadioButtonGroupManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/managers/RadioButtonGroupManager.h -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/managers/ToteBagPresetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/managers/ToteBagPresetManager.cpp -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/managers/ToteBagPresetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/managers/ToteBagPresetManager.h -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/utilities/GraphicsUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/utilities/GraphicsUtilities.cpp -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/utilities/GraphicsUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/utilities/GraphicsUtilities.h -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/utilities/tbl_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/utilities/tbl_font.cpp -------------------------------------------------------------------------------- /libs/tote_bag/juce_gui/utilities/tbl_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/juce_gui/utilities/tbl_font.h -------------------------------------------------------------------------------- /libs/tote_bag/utils/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/utils/macros.hpp -------------------------------------------------------------------------------- /libs/tote_bag/utils/tbl_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/utils/tbl_math.hpp -------------------------------------------------------------------------------- /libs/tote_bag/utils/type_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/libs/tote_bag/utils/type_helpers.hpp -------------------------------------------------------------------------------- /scripts/installer_mac/make_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/scripts/installer_mac/make_installer.sh -------------------------------------------------------------------------------- /scripts/installer_mac/resources/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/scripts/installer_mac/resources/License.txt -------------------------------------------------------------------------------- /scripts/installer_mac/resources/Readme.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/scripts/installer_mac/resources/Readme.rtf -------------------------------------------------------------------------------- /scripts/installer_win/installer.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/scripts/installer_win/installer.iss -------------------------------------------------------------------------------- /src/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/src/PluginEditor.cpp -------------------------------------------------------------------------------- /src/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/src/PluginEditor.h -------------------------------------------------------------------------------- /src/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/src/PluginProcessor.cpp -------------------------------------------------------------------------------- /src/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/src/PluginProcessor.h -------------------------------------------------------------------------------- /src/ValentineParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/src/ValentineParameters.h -------------------------------------------------------------------------------- /src/gui/assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/src/gui/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/gui/assets/fonts/RobotoMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/src/gui/assets/fonts/RobotoMono-Medium.ttf -------------------------------------------------------------------------------- /src/gui/assets/fonts/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/src/gui/assets/fonts/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /src/gui/assets/logos/val_totebag_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/src/gui/assets/logos/val_totebag_logo.svg -------------------------------------------------------------------------------- /src/gui/panels/ValentineBottomRowPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/src/gui/panels/ValentineBottomRowPanel.cpp -------------------------------------------------------------------------------- /src/gui/panels/ValentineBottomRowPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/src/gui/panels/ValentineBottomRowPanel.h -------------------------------------------------------------------------------- /src/gui/panels/ValentineCenterPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/src/gui/panels/ValentineCenterPanel.cpp -------------------------------------------------------------------------------- /src/gui/panels/ValentineCenterPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/src/gui/panels/ValentineCenterPanel.h -------------------------------------------------------------------------------- /src/gui/panels/ValentineMainPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/src/gui/panels/ValentineMainPanel.cpp -------------------------------------------------------------------------------- /src/gui/panels/ValentineMainPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/src/gui/panels/ValentineMainPanel.h -------------------------------------------------------------------------------- /src/gui/panels/ValentineTopRowPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/src/gui/panels/ValentineTopRowPanel.cpp -------------------------------------------------------------------------------- /src/gui/panels/ValentineTopRowPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/src/gui/panels/ValentineTopRowPanel.h -------------------------------------------------------------------------------- /tests/AudioHelpersTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/tests/AudioHelpersTests.cpp -------------------------------------------------------------------------------- /tests/AudioHelpersTests.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/tests/AudioHelpersTests.hpp -------------------------------------------------------------------------------- /tests/MathTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/tests/MathTests.cpp -------------------------------------------------------------------------------- /tests/PluginBasics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/tests/PluginBasics.cpp -------------------------------------------------------------------------------- /version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tote-bag-labs/valentine/HEAD/version.h.in --------------------------------------------------------------------------------