File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed
Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 22// SPDX-License-Identifier: GPL-3.0-or-later
33#pragma once
44
5+ #include < juce_audio_utils/juce_audio_utils.h>
6+
57namespace vmc {
68
7- class Engine final : public AudioIODeviceCallback,
8- public MidiInputCallback {
9+ class Engine final {
910public:
1011 Engine () = default ;
1112 ~Engine () = default ;
1213
14+ private:
15+ juce::AudioProcessorPlayer _player;
1316 Engine (const Engine&) = delete ;
1417 Engine& operator = (const Engine&) = delete ;
1518 Engine (Engine&&) = delete ;
Original file line number Diff line number Diff line change @@ -17,20 +17,20 @@ class Settings : public ApplicationProperties {
1717 Settings ()
1818 {
1919 PropertiesFile::Options opts;
20- opts.applicationName = " VirtualMidiController " ;
20+ opts.applicationName = " virtual-midi-controller " ;
2121 opts.filenameSuffix = " conf" ;
2222 opts.osxLibrarySubFolder = " Application Support" ;
2323 opts.storageFormat = PropertiesFile::storeAsCompressedBinary;
2424
2525#if JUCE_DEBUG
26- opts.applicationName << " Debug " ;
26+ opts.applicationName << " _debug " ;
2727 opts.storageFormat = PropertiesFile::storeAsXML;
2828#endif
2929
3030#if JUCE_LINUX
31- opts.folderName = " .config/Kushview/VirtualMidiController " ;
31+ opts.folderName = " .config/kushview/virtual-midi-controller " ;
3232#else
33- opts.folderName = " Kushview/VirtualMidiController " ;
33+ opts.folderName = " Kushview/Virtual MIDI Controller " ;
3434#endif
3535
3636 setStorageParameters (opts);
You can’t perform that action at this time.
0 commit comments