├── .appveyor.yml ├── .gitattributes ├── .gitignore ├── .travis.yml ├── .vscode └── settings.json ├── Beat Descriptions ├── 080 Half-Time Pop.zip ├── 092 Funk 1.zip ├── 140 Surf 2 Ride.zip ├── 140 Surf 2 Tom.zip ├── 160 Surf 1.zip ├── Groove Monkee Blues GM │ ├── 078 Slow Blues A Sticks.json │ ├── 078 Slow Blues A.json │ ├── 078 Slow Blues B Sticks.json │ ├── 078 Slow Blues B.json │ ├── 080 Slow Blues 12-8.json │ ├── 080 Slow Blues C Sticks.json │ ├── 080 Slow Blues C.json │ ├── 082 Slow Blues D Sticks.json │ ├── 082 Slow Blues D.json │ ├── 100 Light Shuffle Sticks.json │ ├── 100 Light Shuffle.json │ └── 136 Half Time.json ├── Groove Monkee Free MIDI GM │ ├── 080 12-8 Blues Rock.json │ ├── 080 Slow Blues 12-8.json │ ├── 088 Ballad.json │ ├── 090 Big Easy Funk 01.json │ ├── 090 Big Easy Funk Rock 09.json │ ├── 100 Rock Ballad.json │ ├── 110 Cold Shock Blues.json │ ├── 120 Contemporary Rock 06 Bridge.json │ ├── 120 Contemporary Rock 06.json │ ├── 135 Swing Beat.json │ └── 140 Half Time Rock.json ├── Groove Monkee Jazz Buddy GM │ ├── 068 Jazz Ballad.json │ ├── 134 Shuffle.json │ ├── 135 2-Feel.json │ ├── 135 Swing Beat Sticks.json │ ├── 135 Swing Beat.json │ └── 200 Jump Swing.json └── Groove Monkee Rock 2 GM │ ├── 072 4-4 Rock 03 Bridge.json │ ├── 072 4-4 Rock 03.json │ ├── 074 4-4 Rock 04.json │ └── 110 4-4 Rock 11.json ├── BeatBox.jucer ├── Builds ├── CodeBlocksLinux │ ├── BeatBox.cbp │ ├── BeatBox.layout │ └── resources.rc ├── LinuxMakefile │ └── Makefile ├── MacOSX │ ├── BeatBox.entitlements │ ├── BeatBox.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ ├── Info-AU.plist │ ├── Info-Standalone_Plugin.plist │ ├── Info-VST3.plist │ └── RecentFilesMenuTemplate.nib ├── Qt │ ├── BeatBox.pro │ ├── SharedCode │ │ └── SharedCode.pro │ └── StandalonePlugin │ │ └── StandalonePlugin.pro ├── VisualStudio2017 │ ├── BeatBox.sln │ ├── BeatBox_SharedCode.vcxproj │ ├── BeatBox_SharedCode.vcxproj.filters │ ├── BeatBox_StandalonePlugin.vcxproj │ ├── BeatBox_StandalonePlugin.vcxproj.filters │ ├── BeatBox_VST3.vcxproj │ ├── BeatBox_VST3.vcxproj.filters │ └── resources.rc ├── build.sh └── make-appimg.sh ├── CMakeLists.txt ├── JuceLibraryCode ├── AppConfig.h ├── BinaryData.cpp ├── BinaryData.h ├── JuceHeader.h ├── ReadMe.txt ├── include_juce_audio_basics.cpp ├── include_juce_audio_basics.mm ├── include_juce_audio_devices.cpp ├── include_juce_audio_devices.mm ├── include_juce_audio_formats.cpp ├── include_juce_audio_formats.mm ├── include_juce_audio_plugin_client_AAX.cpp ├── include_juce_audio_plugin_client_AAX.mm ├── include_juce_audio_plugin_client_AU.r ├── include_juce_audio_plugin_client_AU_1.mm ├── include_juce_audio_plugin_client_AU_2.mm ├── include_juce_audio_plugin_client_AUv3.mm ├── include_juce_audio_plugin_client_RTAS.r ├── include_juce_audio_plugin_client_RTAS_1.cpp ├── include_juce_audio_plugin_client_RTAS_2.cpp ├── include_juce_audio_plugin_client_RTAS_3.cpp ├── include_juce_audio_plugin_client_RTAS_4.cpp ├── include_juce_audio_plugin_client_RTAS_utils.cpp ├── include_juce_audio_plugin_client_RTAS_utils.mm ├── include_juce_audio_plugin_client_Standalone.cpp ├── include_juce_audio_plugin_client_Unity.cpp ├── include_juce_audio_plugin_client_VST2.cpp ├── include_juce_audio_plugin_client_VST3.cpp ├── include_juce_audio_plugin_client_VST_utils.mm ├── include_juce_audio_plugin_client_utils.cpp ├── include_juce_audio_processors.cpp ├── include_juce_audio_processors.mm ├── include_juce_audio_utils.cpp ├── include_juce_audio_utils.mm ├── include_juce_core.cpp ├── include_juce_core.mm ├── include_juce_cryptography.cpp ├── include_juce_cryptography.mm ├── include_juce_data_structures.cpp ├── include_juce_data_structures.mm ├── include_juce_events.cpp ├── include_juce_events.mm ├── include_juce_graphics.cpp ├── include_juce_graphics.mm ├── include_juce_gui_basics.cpp ├── include_juce_gui_basics.mm ├── include_juce_gui_extra.cpp └── include_juce_gui_extra.mm ├── LICENSE ├── README.md ├── Source ├── BeatDescription.cpp ├── BeatDescription.h ├── BeatSequence.cpp ├── BeatSequence.h ├── Configuration.cpp ├── Configuration.h ├── FileSearchers.cpp ├── FileSearchers.h ├── PluginEditor.cpp ├── PluginEditor.h ├── PluginProcessor.cpp ├── PluginProcessor.h ├── RhythmChooser.cpp ├── RhythmChooser.h ├── SFZero.cpp ├── SFZero.h ├── SfzChooser.cpp ├── SfzChooser.h ├── Watchers.h ├── sfzero │ ├── LICENSE │ ├── RIFF.cpp │ ├── RIFF.h │ ├── SF2.cpp │ ├── SF2.h │ ├── SF2Generator.cpp │ ├── SF2Generator.h │ ├── SF2Reader.cpp │ ├── SF2Reader.h │ ├── SF2Sound.cpp │ ├── SF2Sound.h │ ├── SF2WinTypes.h │ ├── SFZCommon.h │ ├── SFZDebug.cpp │ ├── SFZDebug.h │ ├── SFZEG.cpp │ ├── SFZEG.h │ ├── SFZReader.cpp │ ├── SFZReader.h │ ├── SFZRegion.cpp │ ├── SFZRegion.h │ ├── SFZSample.cpp │ ├── SFZSample.h │ ├── SFZSound.cpp │ ├── SFZSound.h │ ├── SFZSynth.cpp │ ├── SFZSynth.h │ ├── SFZVoice.cpp │ ├── SFZVoice.h │ └── sf2-chunks │ │ ├── generators.h │ │ ├── ibag.h │ │ ├── igen.h │ │ ├── imod.h │ │ ├── inst.h │ │ ├── iver.h │ │ ├── pbag.h │ │ ├── pgen.h │ │ ├── phdr.h │ │ ├── pmod.h │ │ └── shdr.h └── spdlog │ ├── async.h │ ├── async_logger.h │ ├── common.h │ ├── details │ ├── async_logger_impl.h │ ├── circular_q.h │ ├── console_globals.h │ ├── file_helper.h │ ├── fmt_helper.h │ ├── log_msg.h │ ├── logger_impl.h │ ├── mpmc_blocking_q.h │ ├── null_mutex.h │ ├── os.h │ ├── pattern_formatter.h │ ├── periodic_worker.h │ ├── registry.h │ └── thread_pool.h │ ├── fmt │ ├── bin_to_hex.h │ ├── bundled │ │ ├── LICENSE.rst │ │ ├── chrono.h │ │ ├── color.h │ │ ├── core.h │ │ ├── format-inl.h │ │ ├── format.h │ │ ├── locale.h │ │ ├── ostream.h │ │ ├── posix.h │ │ ├── printf.h │ │ ├── ranges.h │ │ └── time.h │ ├── fmt.h │ └── ostr.h │ ├── formatter.h │ ├── logger.h │ ├── sinks │ ├── android_sink.h │ ├── ansicolor_sink.h │ ├── base_sink.h │ ├── basic_file_sink.h │ ├── daily_file_sink.h │ ├── dist_sink.h │ ├── msvc_sink.h │ ├── null_sink.h │ ├── ostream_sink.h │ ├── rotating_file_sink.h │ ├── sink.h │ ├── stdout_color_sinks.h │ ├── stdout_sinks.h │ ├── syslog_sink.h │ └── wincolor_sink.h │ ├── spdlog.h │ ├── tweakme.h │ └── version.h ├── Tests ├── BeatDescriptionTests.cpp ├── BeatSequenceTests.cpp ├── Main.cpp ├── MidiNoteTests.cpp ├── TestFiles │ ├── 12-8 Slow Hat F1.mid │ ├── Basic_drum_pattern_with_16th_note_ride.mid │ ├── Shuffle_feel_simple.mid │ ├── full.json │ ├── minimal.json │ ├── minimal.zip │ ├── subdir │ │ ├── Basic_drum_pattern_with_16th_note_ride.mid │ │ └── Shuffle_feel_simple.mid │ ├── subdirectories.json │ └── subdirectories.zip └── catch2 │ ├── catch.hpp │ ├── catch_reporter_automake.hpp │ ├── catch_reporter_tap.hpp │ └── catch_reporter_teamcity.hpp ├── innosetup.iss ├── resources ├── icons │ ├── icon.icns │ ├── icon.ico │ ├── icon_128px.png │ ├── icon_16px.png │ ├── icon_256px.png │ ├── icon_32px.png │ └── icon_48px.png └── linux │ ├── BeatBox.desktop │ └── beatbox.appdata.xml └── screenshot.png /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Beat Descriptions/080 Half-Time Pop.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/080 Half-Time Pop.zip -------------------------------------------------------------------------------- /Beat Descriptions/092 Funk 1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/092 Funk 1.zip -------------------------------------------------------------------------------- /Beat Descriptions/140 Surf 2 Ride.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/140 Surf 2 Ride.zip -------------------------------------------------------------------------------- /Beat Descriptions/140 Surf 2 Tom.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/140 Surf 2 Tom.zip -------------------------------------------------------------------------------- /Beat Descriptions/160 Surf 1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/160 Surf 1.zip -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Blues GM/078 Slow Blues A Sticks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Blues GM/078 Slow Blues A Sticks.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Blues GM/078 Slow Blues A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Blues GM/078 Slow Blues A.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Blues GM/078 Slow Blues B Sticks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Blues GM/078 Slow Blues B Sticks.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Blues GM/078 Slow Blues B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Blues GM/078 Slow Blues B.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Blues GM/080 Slow Blues 12-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Blues GM/080 Slow Blues 12-8.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Blues GM/080 Slow Blues C Sticks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Blues GM/080 Slow Blues C Sticks.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Blues GM/080 Slow Blues C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Blues GM/080 Slow Blues C.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Blues GM/082 Slow Blues D Sticks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Blues GM/082 Slow Blues D Sticks.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Blues GM/082 Slow Blues D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Blues GM/082 Slow Blues D.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Blues GM/100 Light Shuffle Sticks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Blues GM/100 Light Shuffle Sticks.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Blues GM/100 Light Shuffle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Blues GM/100 Light Shuffle.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Blues GM/136 Half Time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Blues GM/136 Half Time.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Free MIDI GM/080 12-8 Blues Rock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Free MIDI GM/080 12-8 Blues Rock.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Free MIDI GM/080 Slow Blues 12-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Free MIDI GM/080 Slow Blues 12-8.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Free MIDI GM/088 Ballad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Free MIDI GM/088 Ballad.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Free MIDI GM/090 Big Easy Funk 01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Free MIDI GM/090 Big Easy Funk 01.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Free MIDI GM/090 Big Easy Funk Rock 09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Free MIDI GM/090 Big Easy Funk Rock 09.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Free MIDI GM/100 Rock Ballad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Free MIDI GM/100 Rock Ballad.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Free MIDI GM/110 Cold Shock Blues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Free MIDI GM/110 Cold Shock Blues.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Free MIDI GM/120 Contemporary Rock 06 Bridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Free MIDI GM/120 Contemporary Rock 06 Bridge.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Free MIDI GM/120 Contemporary Rock 06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Free MIDI GM/120 Contemporary Rock 06.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Free MIDI GM/135 Swing Beat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Free MIDI GM/135 Swing Beat.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Free MIDI GM/140 Half Time Rock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Free MIDI GM/140 Half Time Rock.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Jazz Buddy GM/068 Jazz Ballad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Jazz Buddy GM/068 Jazz Ballad.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Jazz Buddy GM/134 Shuffle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Jazz Buddy GM/134 Shuffle.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Jazz Buddy GM/135 2-Feel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Jazz Buddy GM/135 2-Feel.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Jazz Buddy GM/135 Swing Beat Sticks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Jazz Buddy GM/135 Swing Beat Sticks.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Jazz Buddy GM/135 Swing Beat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Jazz Buddy GM/135 Swing Beat.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Jazz Buddy GM/200 Jump Swing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Jazz Buddy GM/200 Jump Swing.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Rock 2 GM/072 4-4 Rock 03 Bridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Rock 2 GM/072 4-4 Rock 03 Bridge.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Rock 2 GM/072 4-4 Rock 03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Rock 2 GM/072 4-4 Rock 03.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Rock 2 GM/074 4-4 Rock 04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Rock 2 GM/074 4-4 Rock 04.json -------------------------------------------------------------------------------- /Beat Descriptions/Groove Monkee Rock 2 GM/110 4-4 Rock 11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Beat Descriptions/Groove Monkee Rock 2 GM/110 4-4 Rock 11.json -------------------------------------------------------------------------------- /BeatBox.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/BeatBox.jucer -------------------------------------------------------------------------------- /Builds/CodeBlocksLinux/BeatBox.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/CodeBlocksLinux/BeatBox.cbp -------------------------------------------------------------------------------- /Builds/CodeBlocksLinux/BeatBox.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/CodeBlocksLinux/BeatBox.layout -------------------------------------------------------------------------------- /Builds/CodeBlocksLinux/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/CodeBlocksLinux/resources.rc -------------------------------------------------------------------------------- /Builds/LinuxMakefile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/LinuxMakefile/Makefile -------------------------------------------------------------------------------- /Builds/MacOSX/BeatBox.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/MacOSX/BeatBox.entitlements -------------------------------------------------------------------------------- /Builds/MacOSX/BeatBox.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/MacOSX/BeatBox.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Builds/MacOSX/BeatBox.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/MacOSX/BeatBox.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Builds/MacOSX/Info-AU.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/MacOSX/Info-AU.plist -------------------------------------------------------------------------------- /Builds/MacOSX/Info-Standalone_Plugin.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/MacOSX/Info-Standalone_Plugin.plist -------------------------------------------------------------------------------- /Builds/MacOSX/Info-VST3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/MacOSX/Info-VST3.plist -------------------------------------------------------------------------------- /Builds/MacOSX/RecentFilesMenuTemplate.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/MacOSX/RecentFilesMenuTemplate.nib -------------------------------------------------------------------------------- /Builds/Qt/BeatBox.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/Qt/BeatBox.pro -------------------------------------------------------------------------------- /Builds/Qt/SharedCode/SharedCode.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/Qt/SharedCode/SharedCode.pro -------------------------------------------------------------------------------- /Builds/Qt/StandalonePlugin/StandalonePlugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/Qt/StandalonePlugin/StandalonePlugin.pro -------------------------------------------------------------------------------- /Builds/VisualStudio2017/BeatBox.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/VisualStudio2017/BeatBox.sln -------------------------------------------------------------------------------- /Builds/VisualStudio2017/BeatBox_SharedCode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/VisualStudio2017/BeatBox_SharedCode.vcxproj -------------------------------------------------------------------------------- /Builds/VisualStudio2017/BeatBox_SharedCode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/VisualStudio2017/BeatBox_SharedCode.vcxproj.filters -------------------------------------------------------------------------------- /Builds/VisualStudio2017/BeatBox_StandalonePlugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/VisualStudio2017/BeatBox_StandalonePlugin.vcxproj -------------------------------------------------------------------------------- /Builds/VisualStudio2017/BeatBox_StandalonePlugin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/VisualStudio2017/BeatBox_StandalonePlugin.vcxproj.filters -------------------------------------------------------------------------------- /Builds/VisualStudio2017/BeatBox_VST3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/VisualStudio2017/BeatBox_VST3.vcxproj -------------------------------------------------------------------------------- /Builds/VisualStudio2017/BeatBox_VST3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/VisualStudio2017/BeatBox_VST3.vcxproj.filters -------------------------------------------------------------------------------- /Builds/VisualStudio2017/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/VisualStudio2017/resources.rc -------------------------------------------------------------------------------- /Builds/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/build.sh -------------------------------------------------------------------------------- /Builds/make-appimg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Builds/make-appimg.sh -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /JuceLibraryCode/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/AppConfig.h -------------------------------------------------------------------------------- /JuceLibraryCode/BinaryData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/BinaryData.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/BinaryData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/BinaryData.h -------------------------------------------------------------------------------- /JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_devices.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_devices.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_devices.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_formats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_formats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_formats.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AAX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AAX.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AAX.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AAX.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AU.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AU.r -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AU_1.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AU_1.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AU_2.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AU_2.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AUv3.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AUv3.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS.r -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_1.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_2.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_3.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_4.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_utils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_utils.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_Standalone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_Standalone.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_Unity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_Unity.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_VST2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_VST2.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_VST3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_VST3.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_VST_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_VST_utils.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_utils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_processors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_processors.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_processors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_processors.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_utils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_audio_utils.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_core.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_core.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_cryptography.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_cryptography.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_cryptography.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_cryptography.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_data_structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_data_structures.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_data_structures.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_data_structures.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_events.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_events.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_events.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_graphics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_graphics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_graphics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_gui_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_gui_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_gui_extra.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_extra.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/JuceLibraryCode/include_juce_gui_extra.mm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/README.md -------------------------------------------------------------------------------- /Source/BeatDescription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/BeatDescription.cpp -------------------------------------------------------------------------------- /Source/BeatDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/BeatDescription.h -------------------------------------------------------------------------------- /Source/BeatSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/BeatSequence.cpp -------------------------------------------------------------------------------- /Source/BeatSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/BeatSequence.h -------------------------------------------------------------------------------- /Source/Configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/Configuration.cpp -------------------------------------------------------------------------------- /Source/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/Configuration.h -------------------------------------------------------------------------------- /Source/FileSearchers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/FileSearchers.cpp -------------------------------------------------------------------------------- /Source/FileSearchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/FileSearchers.h -------------------------------------------------------------------------------- /Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/PluginEditor.h -------------------------------------------------------------------------------- /Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Source/RhythmChooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/RhythmChooser.cpp -------------------------------------------------------------------------------- /Source/RhythmChooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/RhythmChooser.h -------------------------------------------------------------------------------- /Source/SFZero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/SFZero.cpp -------------------------------------------------------------------------------- /Source/SFZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/SFZero.h -------------------------------------------------------------------------------- /Source/SfzChooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/SfzChooser.cpp -------------------------------------------------------------------------------- /Source/SfzChooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/SfzChooser.h -------------------------------------------------------------------------------- /Source/Watchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/Watchers.h -------------------------------------------------------------------------------- /Source/sfzero/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/LICENSE -------------------------------------------------------------------------------- /Source/sfzero/RIFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/RIFF.cpp -------------------------------------------------------------------------------- /Source/sfzero/RIFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/RIFF.h -------------------------------------------------------------------------------- /Source/sfzero/SF2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SF2.cpp -------------------------------------------------------------------------------- /Source/sfzero/SF2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SF2.h -------------------------------------------------------------------------------- /Source/sfzero/SF2Generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SF2Generator.cpp -------------------------------------------------------------------------------- /Source/sfzero/SF2Generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SF2Generator.h -------------------------------------------------------------------------------- /Source/sfzero/SF2Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SF2Reader.cpp -------------------------------------------------------------------------------- /Source/sfzero/SF2Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SF2Reader.h -------------------------------------------------------------------------------- /Source/sfzero/SF2Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SF2Sound.cpp -------------------------------------------------------------------------------- /Source/sfzero/SF2Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SF2Sound.h -------------------------------------------------------------------------------- /Source/sfzero/SF2WinTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SF2WinTypes.h -------------------------------------------------------------------------------- /Source/sfzero/SFZCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SFZCommon.h -------------------------------------------------------------------------------- /Source/sfzero/SFZDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SFZDebug.cpp -------------------------------------------------------------------------------- /Source/sfzero/SFZDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SFZDebug.h -------------------------------------------------------------------------------- /Source/sfzero/SFZEG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SFZEG.cpp -------------------------------------------------------------------------------- /Source/sfzero/SFZEG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SFZEG.h -------------------------------------------------------------------------------- /Source/sfzero/SFZReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SFZReader.cpp -------------------------------------------------------------------------------- /Source/sfzero/SFZReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SFZReader.h -------------------------------------------------------------------------------- /Source/sfzero/SFZRegion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SFZRegion.cpp -------------------------------------------------------------------------------- /Source/sfzero/SFZRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SFZRegion.h -------------------------------------------------------------------------------- /Source/sfzero/SFZSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SFZSample.cpp -------------------------------------------------------------------------------- /Source/sfzero/SFZSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SFZSample.h -------------------------------------------------------------------------------- /Source/sfzero/SFZSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SFZSound.cpp -------------------------------------------------------------------------------- /Source/sfzero/SFZSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SFZSound.h -------------------------------------------------------------------------------- /Source/sfzero/SFZSynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SFZSynth.cpp -------------------------------------------------------------------------------- /Source/sfzero/SFZSynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SFZSynth.h -------------------------------------------------------------------------------- /Source/sfzero/SFZVoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SFZVoice.cpp -------------------------------------------------------------------------------- /Source/sfzero/SFZVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/SFZVoice.h -------------------------------------------------------------------------------- /Source/sfzero/sf2-chunks/generators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/sf2-chunks/generators.h -------------------------------------------------------------------------------- /Source/sfzero/sf2-chunks/ibag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/sf2-chunks/ibag.h -------------------------------------------------------------------------------- /Source/sfzero/sf2-chunks/igen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/sf2-chunks/igen.h -------------------------------------------------------------------------------- /Source/sfzero/sf2-chunks/imod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/sf2-chunks/imod.h -------------------------------------------------------------------------------- /Source/sfzero/sf2-chunks/inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/sf2-chunks/inst.h -------------------------------------------------------------------------------- /Source/sfzero/sf2-chunks/iver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/sf2-chunks/iver.h -------------------------------------------------------------------------------- /Source/sfzero/sf2-chunks/pbag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/sf2-chunks/pbag.h -------------------------------------------------------------------------------- /Source/sfzero/sf2-chunks/pgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/sf2-chunks/pgen.h -------------------------------------------------------------------------------- /Source/sfzero/sf2-chunks/phdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/sf2-chunks/phdr.h -------------------------------------------------------------------------------- /Source/sfzero/sf2-chunks/pmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/sf2-chunks/pmod.h -------------------------------------------------------------------------------- /Source/sfzero/sf2-chunks/shdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/sfzero/sf2-chunks/shdr.h -------------------------------------------------------------------------------- /Source/spdlog/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/async.h -------------------------------------------------------------------------------- /Source/spdlog/async_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/async_logger.h -------------------------------------------------------------------------------- /Source/spdlog/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/common.h -------------------------------------------------------------------------------- /Source/spdlog/details/async_logger_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/details/async_logger_impl.h -------------------------------------------------------------------------------- /Source/spdlog/details/circular_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/details/circular_q.h -------------------------------------------------------------------------------- /Source/spdlog/details/console_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/details/console_globals.h -------------------------------------------------------------------------------- /Source/spdlog/details/file_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/details/file_helper.h -------------------------------------------------------------------------------- /Source/spdlog/details/fmt_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/details/fmt_helper.h -------------------------------------------------------------------------------- /Source/spdlog/details/log_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/details/log_msg.h -------------------------------------------------------------------------------- /Source/spdlog/details/logger_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/details/logger_impl.h -------------------------------------------------------------------------------- /Source/spdlog/details/mpmc_blocking_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/details/mpmc_blocking_q.h -------------------------------------------------------------------------------- /Source/spdlog/details/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/details/null_mutex.h -------------------------------------------------------------------------------- /Source/spdlog/details/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/details/os.h -------------------------------------------------------------------------------- /Source/spdlog/details/pattern_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/details/pattern_formatter.h -------------------------------------------------------------------------------- /Source/spdlog/details/periodic_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/details/periodic_worker.h -------------------------------------------------------------------------------- /Source/spdlog/details/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/details/registry.h -------------------------------------------------------------------------------- /Source/spdlog/details/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/details/thread_pool.h -------------------------------------------------------------------------------- /Source/spdlog/fmt/bin_to_hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/fmt/bin_to_hex.h -------------------------------------------------------------------------------- /Source/spdlog/fmt/bundled/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/fmt/bundled/LICENSE.rst -------------------------------------------------------------------------------- /Source/spdlog/fmt/bundled/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/fmt/bundled/chrono.h -------------------------------------------------------------------------------- /Source/spdlog/fmt/bundled/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/fmt/bundled/color.h -------------------------------------------------------------------------------- /Source/spdlog/fmt/bundled/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/fmt/bundled/core.h -------------------------------------------------------------------------------- /Source/spdlog/fmt/bundled/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/fmt/bundled/format-inl.h -------------------------------------------------------------------------------- /Source/spdlog/fmt/bundled/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/fmt/bundled/format.h -------------------------------------------------------------------------------- /Source/spdlog/fmt/bundled/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/fmt/bundled/locale.h -------------------------------------------------------------------------------- /Source/spdlog/fmt/bundled/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/fmt/bundled/ostream.h -------------------------------------------------------------------------------- /Source/spdlog/fmt/bundled/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/fmt/bundled/posix.h -------------------------------------------------------------------------------- /Source/spdlog/fmt/bundled/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/fmt/bundled/printf.h -------------------------------------------------------------------------------- /Source/spdlog/fmt/bundled/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/fmt/bundled/ranges.h -------------------------------------------------------------------------------- /Source/spdlog/fmt/bundled/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/fmt/bundled/time.h -------------------------------------------------------------------------------- /Source/spdlog/fmt/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/fmt/fmt.h -------------------------------------------------------------------------------- /Source/spdlog/fmt/ostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/fmt/ostr.h -------------------------------------------------------------------------------- /Source/spdlog/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/formatter.h -------------------------------------------------------------------------------- /Source/spdlog/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/logger.h -------------------------------------------------------------------------------- /Source/spdlog/sinks/android_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/sinks/android_sink.h -------------------------------------------------------------------------------- /Source/spdlog/sinks/ansicolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/sinks/ansicolor_sink.h -------------------------------------------------------------------------------- /Source/spdlog/sinks/base_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/sinks/base_sink.h -------------------------------------------------------------------------------- /Source/spdlog/sinks/basic_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/sinks/basic_file_sink.h -------------------------------------------------------------------------------- /Source/spdlog/sinks/daily_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/sinks/daily_file_sink.h -------------------------------------------------------------------------------- /Source/spdlog/sinks/dist_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/sinks/dist_sink.h -------------------------------------------------------------------------------- /Source/spdlog/sinks/msvc_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/sinks/msvc_sink.h -------------------------------------------------------------------------------- /Source/spdlog/sinks/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/sinks/null_sink.h -------------------------------------------------------------------------------- /Source/spdlog/sinks/ostream_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/sinks/ostream_sink.h -------------------------------------------------------------------------------- /Source/spdlog/sinks/rotating_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/sinks/rotating_file_sink.h -------------------------------------------------------------------------------- /Source/spdlog/sinks/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/sinks/sink.h -------------------------------------------------------------------------------- /Source/spdlog/sinks/stdout_color_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/sinks/stdout_color_sinks.h -------------------------------------------------------------------------------- /Source/spdlog/sinks/stdout_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/sinks/stdout_sinks.h -------------------------------------------------------------------------------- /Source/spdlog/sinks/syslog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/sinks/syslog_sink.h -------------------------------------------------------------------------------- /Source/spdlog/sinks/wincolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/sinks/wincolor_sink.h -------------------------------------------------------------------------------- /Source/spdlog/spdlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/spdlog.h -------------------------------------------------------------------------------- /Source/spdlog/tweakme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/tweakme.h -------------------------------------------------------------------------------- /Source/spdlog/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Source/spdlog/version.h -------------------------------------------------------------------------------- /Tests/BeatDescriptionTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Tests/BeatDescriptionTests.cpp -------------------------------------------------------------------------------- /Tests/BeatSequenceTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Tests/BeatSequenceTests.cpp -------------------------------------------------------------------------------- /Tests/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Tests/Main.cpp -------------------------------------------------------------------------------- /Tests/MidiNoteTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Tests/MidiNoteTests.cpp -------------------------------------------------------------------------------- /Tests/TestFiles/12-8 Slow Hat F1.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Tests/TestFiles/12-8 Slow Hat F1.mid -------------------------------------------------------------------------------- /Tests/TestFiles/Basic_drum_pattern_with_16th_note_ride.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Tests/TestFiles/Basic_drum_pattern_with_16th_note_ride.mid -------------------------------------------------------------------------------- /Tests/TestFiles/Shuffle_feel_simple.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Tests/TestFiles/Shuffle_feel_simple.mid -------------------------------------------------------------------------------- /Tests/TestFiles/full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Tests/TestFiles/full.json -------------------------------------------------------------------------------- /Tests/TestFiles/minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Tests/TestFiles/minimal.json -------------------------------------------------------------------------------- /Tests/TestFiles/minimal.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Tests/TestFiles/minimal.zip -------------------------------------------------------------------------------- /Tests/TestFiles/subdir/Basic_drum_pattern_with_16th_note_ride.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Tests/TestFiles/subdir/Basic_drum_pattern_with_16th_note_ride.mid -------------------------------------------------------------------------------- /Tests/TestFiles/subdir/Shuffle_feel_simple.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Tests/TestFiles/subdir/Shuffle_feel_simple.mid -------------------------------------------------------------------------------- /Tests/TestFiles/subdirectories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Tests/TestFiles/subdirectories.json -------------------------------------------------------------------------------- /Tests/TestFiles/subdirectories.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Tests/TestFiles/subdirectories.zip -------------------------------------------------------------------------------- /Tests/catch2/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Tests/catch2/catch.hpp -------------------------------------------------------------------------------- /Tests/catch2/catch_reporter_automake.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Tests/catch2/catch_reporter_automake.hpp -------------------------------------------------------------------------------- /Tests/catch2/catch_reporter_tap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Tests/catch2/catch_reporter_tap.hpp -------------------------------------------------------------------------------- /Tests/catch2/catch_reporter_teamcity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/Tests/catch2/catch_reporter_teamcity.hpp -------------------------------------------------------------------------------- /innosetup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/innosetup.iss -------------------------------------------------------------------------------- /resources/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/resources/icons/icon.icns -------------------------------------------------------------------------------- /resources/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/resources/icons/icon.ico -------------------------------------------------------------------------------- /resources/icons/icon_128px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/resources/icons/icon_128px.png -------------------------------------------------------------------------------- /resources/icons/icon_16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/resources/icons/icon_16px.png -------------------------------------------------------------------------------- /resources/icons/icon_256px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/resources/icons/icon_256px.png -------------------------------------------------------------------------------- /resources/icons/icon_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/resources/icons/icon_32px.png -------------------------------------------------------------------------------- /resources/icons/icon_48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/resources/icons/icon_48px.png -------------------------------------------------------------------------------- /resources/linux/BeatBox.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/resources/linux/BeatBox.desktop -------------------------------------------------------------------------------- /resources/linux/beatbox.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/resources/linux/beatbox.appdata.xml -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfztools/beatbox-juce/HEAD/screenshot.png --------------------------------------------------------------------------------