├── COPYING.txt ├── Design ├── MTR tutorial poster.jpg ├── ipad129-screenshot1.afdesign ├── ipad129-screenshot1.png ├── ipad129-screenshot2.afdesign ├── ipad129-screenshot2.png ├── ipad129-screenshot3.afdesign ├── ipad129-screenshot3.png ├── ipad129-screenshot4.afdesign ├── ipad129-screenshot4.png ├── iphone55-screenshot1.afdesign ├── iphone55-screenshot1.png ├── iphone55-screenshot2.afdesign ├── iphone55-screenshot2.png ├── iphone55-screenshot3.afdesign ├── iphone55-screenshot3.png ├── iphone55-screenshot4.afdesign ├── iphone55-screenshot4.png ├── iphone65-screenshot1.afdesign ├── iphone65-screenshot1.png ├── iphone65-screenshot2.afdesign ├── iphone65-screenshot2.png ├── iphone65-screenshot3.afdesign ├── iphone65-screenshot3.png ├── iphone65-screenshot4.afdesign ├── iphone65-screenshot4.png ├── mac-screenshot1.afdesign ├── mac-screenshot1.png ├── mac-screenshot2.afdesign ├── mac-screenshot2.png ├── mac-screenshot3.afdesign ├── mac-screenshot3.png ├── mac-screenshot4.afdesign ├── mac-screenshot4.png ├── miditaperec.afdesign ├── miditaperec.pdf ├── miditaperec.png ├── miditaperec.svg ├── miditaperec_rounded.svg ├── mtr_connections.afdesign ├── mtr_gui_1.afdesign ├── mtr_gui_2.afdesign ├── mtr_gui_3.afdesign ├── mtr_gui_4.afdesign └── og-screenshot1.afdesign ├── LICENCE.txt ├── MIDI Tape Recorder Plugin ├── Assets.xcassets │ ├── ActivityOff.colorset │ │ └── Contents.json │ ├── ActivityOn.colorset │ │ └── Contents.json │ ├── Blue.colorset │ │ └── Contents.json │ ├── Contents.json │ ├── Gray0.colorset │ │ └── Contents.json │ ├── Gray1.colorset │ │ └── Contents.json │ ├── Gray2.colorset │ │ └── Contents.json │ ├── Gray3.colorset │ │ └── Contents.json │ ├── Gray4.colorset │ │ └── Contents.json │ ├── Gray5.colorset │ │ └── Contents.json │ ├── Gray6.colorset │ │ └── Contents.json │ ├── Green.colorset │ │ └── Contents.json │ ├── Orange.colorset │ │ └── Contents.json │ ├── PreviewEvents.colorset │ │ └── Contents.json │ ├── PreviewNotes.colorset │ │ └── Contents.json │ ├── RecordingEvents.colorset │ │ └── Contents.json │ ├── RecordingNotes.colorset │ │ └── Contents.json │ ├── Red.colorset │ │ └── Contents.json │ ├── Yellow.colorset │ │ └── Contents.json │ ├── backward_end.imageset │ │ ├── Contents.json │ │ └── backward_end.pdf │ ├── backward_end_fill.imageset │ │ ├── Contents.json │ │ └── backward_end_fill.pdf │ ├── chase_playhead.imageset │ │ ├── Contents.json │ │ └── chase_playhead.pdf │ ├── crop.imageset │ │ ├── Contents.json │ │ └── crop.pdf │ ├── gearshape.imageset │ │ ├── Contents.json │ │ └── gearshape.pdf │ ├── gearshape_fill.imageset │ │ ├── Contents.json │ │ └── gearshape_fill.pdf │ ├── grid.imageset │ │ ├── Contents.json │ │ └── grid.pdf │ ├── input_monitor.imageset │ │ ├── Contents.json │ │ └── input_monitor.pdf │ ├── mute.imageset │ │ ├── Contents.json │ │ └── mute.pdf │ ├── play.imageset │ │ ├── Contents.json │ │ └── play.pdf │ ├── play_fill.imageset │ │ ├── Contents.json │ │ └── play_fill.pdf │ ├── punch_in_out.imageset │ │ ├── Contents.json │ │ └── punch_in_out.pdf │ ├── questionmark.imageset │ │ ├── Contents.json │ │ └── questionmark.pdf │ ├── questionmark_circle.imageset │ │ ├── Contents.json │ │ └── questionmark_circle.pdf │ ├── questionmark_circle_fill.imageset │ │ ├── Contents.json │ │ └── questionmark_circle_fill.pdf │ ├── record_circle.imageset │ │ ├── Contents.json │ │ └── record_circle.pdf │ ├── record_circle_fill.imageset │ │ ├── Contents.json │ │ └── record_circle_fill.pdf │ ├── record_enable.imageset │ │ ├── Contents.json │ │ └── record_enable.pdf │ ├── redo.imageset │ │ ├── Contents.json │ │ └── redo.pdf │ ├── repeat.imageset │ │ ├── Contents.json │ │ └── repeat.pdf │ ├── square_and_arrow_down.imageset │ │ ├── Contents.json │ │ └── square_and_arrow_down.pdf │ ├── square_and_arrow_up.imageset │ │ ├── Contents.json │ │ └── square_and_arrow_up.pdf │ ├── trash.imageset │ │ ├── Contents.json │ │ └── trash.pdf │ ├── undo.imageset │ │ ├── Contents.json │ │ └── undo.pdf │ └── xmark.imageset │ │ ├── Contents.json │ │ └── xmark.pdf ├── Audio Unit │ ├── MidiRecorderAudioUnit.h │ └── MidiRecorderAudioUnit.mm ├── DSP │ ├── Infrastructure │ │ ├── BufferedAudioBus.hpp │ │ ├── DSPKernel.h │ │ ├── DSPKernel.mm │ │ ├── DSPKernelAdapter.h │ │ └── DSPKernelAdapter.mm │ ├── MidiRecorderKernel.h │ └── MidiRecorderKernel.mm ├── Data │ ├── MidiRecordedData.cpp │ ├── MidiRecordedData.h │ ├── MidiRecordedPreview.cpp │ ├── MidiRecordedPreview.h │ ├── PreviewPixelData.h │ ├── QueuedMidiMessage.h │ ├── RecordedMidiMessage.cpp │ └── RecordedMidiMessage.h ├── Info.plist ├── MIDI Tape Recorder Plugin.entitlements ├── MainInterface.storyboard ├── Recorder │ ├── MidiPreviewProvider.h │ ├── MidiQueueProcessor.h │ ├── MidiQueueProcessor.mm │ ├── MidiTrackRecorder.h │ ├── MidiTrackRecorder.mm │ └── MidiTrackRecorderDelegate.h ├── State │ ├── AudioUnitIOState.h │ ├── MPEState.h │ ├── MidiRecorderState.cpp │ ├── MidiRecorderState.h │ ├── MidiTrackState.h │ ├── NoteState.cpp │ ├── NoteState.h │ ├── NoteTracker.cpp │ └── NoteTracker.h ├── UI │ ├── Buttons │ │ ├── MPEButton.h │ │ ├── MPEButton.mm │ │ ├── MenuButton.h │ │ ├── MenuButton.mm │ │ ├── ToolBarButton.h │ │ ├── ToolBarButton.mm │ │ ├── ToolTipButton.h │ │ ├── ToolTipButton.mm │ │ ├── TrackButton.h │ │ └── TrackButton.mm │ ├── ViewControllers │ │ ├── AboutViewController.h │ │ ├── AboutViewController.mm │ │ ├── AudioUnitViewController.h │ │ ├── AudioUnitViewController.mm │ │ ├── DonateViewController.h │ │ ├── DonateViewController.mm │ │ ├── RecorderToolTipDelegate.h │ │ ├── SettingsViewController.h │ │ └── SettingsViewController.mm │ └── Views │ │ ├── ActivityIndicatorView.h │ │ ├── ActivityIndicatorView.mm │ │ ├── CropLeftView.h │ │ ├── CropLeftView.mm │ │ ├── CropRightView.h │ │ ├── CropRightView.mm │ │ ├── MidiTrackView.h │ │ ├── MidiTrackView.mm │ │ ├── PlayheadView.h │ │ ├── PlayheadView.mm │ │ ├── PopupView.h │ │ ├── PopupView.mm │ │ ├── PunchInView.h │ │ ├── PunchInView.mm │ │ ├── PunchOutView.h │ │ ├── PunchOutView.mm │ │ ├── TimelineView.h │ │ └── TimelineView.mm └── Utils │ ├── Constants.h │ ├── GraphicsHelper.h │ ├── GraphicsHelper.mm │ ├── Logging.h │ ├── Logging.mm │ ├── MidiHelper.h │ ├── MidiHelper.mm │ ├── Preferences.h │ ├── Preferences.mm │ ├── RecorderUndoManager.h │ ├── RecorderUndoManager.mm │ ├── TPCircularBuffer │ ├── README.markdown │ ├── TPCircularBuffer+AudioBufferList.c │ ├── TPCircularBuffer+AudioBufferList.h │ ├── TPCircularBuffer.c │ ├── TPCircularBuffer.h │ └── TPCircularBuffer.podspec │ ├── URLHelper.h │ └── URLHelper.mm ├── MIDI Tape Recorder.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── xcshareddata │ └── xcschemes │ │ ├── MIDI Recorder Plugin.xcscheme │ │ └── MIDI Recorder.xcscheme └── xcuserdata │ └── gbevin.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── MIDI Tape Recorder ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 100.png │ │ ├── 1024.png │ │ ├── 114.png │ │ ├── 120.png │ │ ├── 144.png │ │ ├── 152.png │ │ ├── 167.png │ │ ├── 180.png │ │ ├── 20.png │ │ ├── 29.png │ │ ├── 40.png │ │ ├── 50.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ ├── 87.png │ │ ├── Contents.json │ │ ├── icon_128x128.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_16x16.png │ │ ├── icon_16x16@2x.png │ │ ├── icon_256x256.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_32x32.png │ │ ├── icon_32x32@2x.png │ │ ├── icon_512x512.png │ │ └── icon_512x512@2x.png │ ├── Contents.json │ └── logo.imageset │ │ ├── Contents.json │ │ └── miditaperec.pdf ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── MIDI Tape Recorder.entitlements ├── ViewController.h ├── ViewController.m └── main.m ├── README.md └── Site ├── docs ├── activity_lights_in_out.png ├── animoog_mpe.png ├── index.html ├── input_monitor_disabled.png ├── input_monitor_enabled.png ├── linnstrument_mpe.png ├── mpe_indicator.png ├── mpe_indicator_details.png ├── mtr_connection_1.png ├── mtr_connection_2.png ├── mtr_gui_1.png ├── mtr_gui_2.png ├── mtr_gui_3.png ├── mtr_gui_4.png ├── playback.png ├── record_armed.png ├── recording.png ├── route_1_to_4_active.png ├── route_4_to_4_active.png ├── routing_1_to_4.png ├── routing_4_to_4.png ├── routing_aum_1.png ├── routing_aum_2.png └── settings.png ├── history └── index.html ├── images ├── Approved-for-free-cultural-works.png ├── donate.png ├── download.png ├── logo.png ├── logo_og.png ├── og-screenshot1.png ├── screenshot.png └── screenshot2.png ├── index.html ├── style └── main.css └── support └── index.html /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/COPYING.txt -------------------------------------------------------------------------------- /Design/MTR tutorial poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/MTR tutorial poster.jpg -------------------------------------------------------------------------------- /Design/ipad129-screenshot1.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/ipad129-screenshot1.afdesign -------------------------------------------------------------------------------- /Design/ipad129-screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/ipad129-screenshot1.png -------------------------------------------------------------------------------- /Design/ipad129-screenshot2.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/ipad129-screenshot2.afdesign -------------------------------------------------------------------------------- /Design/ipad129-screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/ipad129-screenshot2.png -------------------------------------------------------------------------------- /Design/ipad129-screenshot3.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/ipad129-screenshot3.afdesign -------------------------------------------------------------------------------- /Design/ipad129-screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/ipad129-screenshot3.png -------------------------------------------------------------------------------- /Design/ipad129-screenshot4.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/ipad129-screenshot4.afdesign -------------------------------------------------------------------------------- /Design/ipad129-screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/ipad129-screenshot4.png -------------------------------------------------------------------------------- /Design/iphone55-screenshot1.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/iphone55-screenshot1.afdesign -------------------------------------------------------------------------------- /Design/iphone55-screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/iphone55-screenshot1.png -------------------------------------------------------------------------------- /Design/iphone55-screenshot2.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/iphone55-screenshot2.afdesign -------------------------------------------------------------------------------- /Design/iphone55-screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/iphone55-screenshot2.png -------------------------------------------------------------------------------- /Design/iphone55-screenshot3.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/iphone55-screenshot3.afdesign -------------------------------------------------------------------------------- /Design/iphone55-screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/iphone55-screenshot3.png -------------------------------------------------------------------------------- /Design/iphone55-screenshot4.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/iphone55-screenshot4.afdesign -------------------------------------------------------------------------------- /Design/iphone55-screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/iphone55-screenshot4.png -------------------------------------------------------------------------------- /Design/iphone65-screenshot1.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/iphone65-screenshot1.afdesign -------------------------------------------------------------------------------- /Design/iphone65-screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/iphone65-screenshot1.png -------------------------------------------------------------------------------- /Design/iphone65-screenshot2.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/iphone65-screenshot2.afdesign -------------------------------------------------------------------------------- /Design/iphone65-screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/iphone65-screenshot2.png -------------------------------------------------------------------------------- /Design/iphone65-screenshot3.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/iphone65-screenshot3.afdesign -------------------------------------------------------------------------------- /Design/iphone65-screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/iphone65-screenshot3.png -------------------------------------------------------------------------------- /Design/iphone65-screenshot4.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/iphone65-screenshot4.afdesign -------------------------------------------------------------------------------- /Design/iphone65-screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/iphone65-screenshot4.png -------------------------------------------------------------------------------- /Design/mac-screenshot1.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/mac-screenshot1.afdesign -------------------------------------------------------------------------------- /Design/mac-screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/mac-screenshot1.png -------------------------------------------------------------------------------- /Design/mac-screenshot2.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/mac-screenshot2.afdesign -------------------------------------------------------------------------------- /Design/mac-screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/mac-screenshot2.png -------------------------------------------------------------------------------- /Design/mac-screenshot3.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/mac-screenshot3.afdesign -------------------------------------------------------------------------------- /Design/mac-screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/mac-screenshot3.png -------------------------------------------------------------------------------- /Design/mac-screenshot4.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/mac-screenshot4.afdesign -------------------------------------------------------------------------------- /Design/mac-screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/mac-screenshot4.png -------------------------------------------------------------------------------- /Design/miditaperec.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/miditaperec.afdesign -------------------------------------------------------------------------------- /Design/miditaperec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/miditaperec.pdf -------------------------------------------------------------------------------- /Design/miditaperec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/miditaperec.png -------------------------------------------------------------------------------- /Design/miditaperec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/miditaperec.svg -------------------------------------------------------------------------------- /Design/miditaperec_rounded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/miditaperec_rounded.svg -------------------------------------------------------------------------------- /Design/mtr_connections.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/mtr_connections.afdesign -------------------------------------------------------------------------------- /Design/mtr_gui_1.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/mtr_gui_1.afdesign -------------------------------------------------------------------------------- /Design/mtr_gui_2.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/mtr_gui_2.afdesign -------------------------------------------------------------------------------- /Design/mtr_gui_3.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/mtr_gui_3.afdesign -------------------------------------------------------------------------------- /Design/mtr_gui_4.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/mtr_gui_4.afdesign -------------------------------------------------------------------------------- /Design/og-screenshot1.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Design/og-screenshot1.afdesign -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/ActivityOff.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/ActivityOff.colorset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/ActivityOn.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/ActivityOn.colorset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/Blue.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/Blue.colorset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/Gray0.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/Gray0.colorset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/Gray1.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/Gray1.colorset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/Gray2.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/Gray2.colorset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/Gray3.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/Gray3.colorset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/Gray4.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/Gray4.colorset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/Gray5.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/Gray5.colorset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/Gray6.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/Gray6.colorset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/Green.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/Green.colorset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/Orange.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/Orange.colorset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/PreviewEvents.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/PreviewEvents.colorset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/PreviewNotes.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/PreviewNotes.colorset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/RecordingEvents.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/RecordingEvents.colorset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/RecordingNotes.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/RecordingNotes.colorset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/Red.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/Red.colorset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/Yellow.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/Yellow.colorset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/backward_end.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/backward_end.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/backward_end.imageset/backward_end.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/backward_end.imageset/backward_end.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/backward_end_fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/backward_end_fill.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/backward_end_fill.imageset/backward_end_fill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/backward_end_fill.imageset/backward_end_fill.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/chase_playhead.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/chase_playhead.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/chase_playhead.imageset/chase_playhead.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/chase_playhead.imageset/chase_playhead.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/crop.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/crop.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/crop.imageset/crop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/crop.imageset/crop.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/gearshape.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/gearshape.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/gearshape.imageset/gearshape.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/gearshape.imageset/gearshape.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/gearshape_fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/gearshape_fill.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/gearshape_fill.imageset/gearshape_fill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/gearshape_fill.imageset/gearshape_fill.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/grid.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/grid.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/grid.imageset/grid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/grid.imageset/grid.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/input_monitor.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/input_monitor.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/input_monitor.imageset/input_monitor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/input_monitor.imageset/input_monitor.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/mute.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/mute.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/mute.imageset/mute.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/mute.imageset/mute.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/play.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/play.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/play.imageset/play.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/play.imageset/play.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/play_fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/play_fill.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/play_fill.imageset/play_fill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/play_fill.imageset/play_fill.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/punch_in_out.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/punch_in_out.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/punch_in_out.imageset/punch_in_out.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/punch_in_out.imageset/punch_in_out.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/questionmark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/questionmark.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/questionmark.imageset/questionmark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/questionmark.imageset/questionmark.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/questionmark_circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/questionmark_circle.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/questionmark_circle.imageset/questionmark_circle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/questionmark_circle.imageset/questionmark_circle.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/questionmark_circle_fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/questionmark_circle_fill.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/questionmark_circle_fill.imageset/questionmark_circle_fill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/questionmark_circle_fill.imageset/questionmark_circle_fill.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/record_circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/record_circle.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/record_circle.imageset/record_circle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/record_circle.imageset/record_circle.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/record_circle_fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/record_circle_fill.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/record_circle_fill.imageset/record_circle_fill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/record_circle_fill.imageset/record_circle_fill.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/record_enable.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/record_enable.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/record_enable.imageset/record_enable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/record_enable.imageset/record_enable.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/redo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/redo.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/redo.imageset/redo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/redo.imageset/redo.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/repeat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/repeat.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/repeat.imageset/repeat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/repeat.imageset/repeat.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/square_and_arrow_down.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/square_and_arrow_down.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/square_and_arrow_down.imageset/square_and_arrow_down.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/square_and_arrow_down.imageset/square_and_arrow_down.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/square_and_arrow_up.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/square_and_arrow_up.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/square_and_arrow_up.imageset/square_and_arrow_up.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/square_and_arrow_up.imageset/square_and_arrow_up.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/trash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/trash.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/trash.imageset/trash.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/trash.imageset/trash.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/undo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/undo.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/undo.imageset/undo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/undo.imageset/undo.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/xmark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/xmark.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Assets.xcassets/xmark.imageset/xmark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Assets.xcassets/xmark.imageset/xmark.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Audio Unit/MidiRecorderAudioUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Audio Unit/MidiRecorderAudioUnit.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Audio Unit/MidiRecorderAudioUnit.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Audio Unit/MidiRecorderAudioUnit.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/DSP/Infrastructure/BufferedAudioBus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/DSP/Infrastructure/BufferedAudioBus.hpp -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/DSP/Infrastructure/DSPKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/DSP/Infrastructure/DSPKernel.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/DSP/Infrastructure/DSPKernel.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/DSP/Infrastructure/DSPKernel.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/DSP/Infrastructure/DSPKernelAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/DSP/Infrastructure/DSPKernelAdapter.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/DSP/Infrastructure/DSPKernelAdapter.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/DSP/Infrastructure/DSPKernelAdapter.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/DSP/MidiRecorderKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/DSP/MidiRecorderKernel.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/DSP/MidiRecorderKernel.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/DSP/MidiRecorderKernel.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Data/MidiRecordedData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Data/MidiRecordedData.cpp -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Data/MidiRecordedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Data/MidiRecordedData.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Data/MidiRecordedPreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Data/MidiRecordedPreview.cpp -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Data/MidiRecordedPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Data/MidiRecordedPreview.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Data/PreviewPixelData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Data/PreviewPixelData.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Data/QueuedMidiMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Data/QueuedMidiMessage.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Data/RecordedMidiMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Data/RecordedMidiMessage.cpp -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Data/RecordedMidiMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Data/RecordedMidiMessage.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Info.plist -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/MIDI Tape Recorder Plugin.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/MIDI Tape Recorder Plugin.entitlements -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/MainInterface.storyboard -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Recorder/MidiPreviewProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Recorder/MidiPreviewProvider.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Recorder/MidiQueueProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Recorder/MidiQueueProcessor.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Recorder/MidiQueueProcessor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Recorder/MidiQueueProcessor.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Recorder/MidiTrackRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Recorder/MidiTrackRecorder.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Recorder/MidiTrackRecorder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Recorder/MidiTrackRecorder.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Recorder/MidiTrackRecorderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Recorder/MidiTrackRecorderDelegate.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/State/AudioUnitIOState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/State/AudioUnitIOState.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/State/MPEState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/State/MPEState.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/State/MidiRecorderState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/State/MidiRecorderState.cpp -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/State/MidiRecorderState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/State/MidiRecorderState.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/State/MidiTrackState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/State/MidiTrackState.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/State/NoteState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/State/NoteState.cpp -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/State/NoteState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/State/NoteState.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/State/NoteTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/State/NoteTracker.cpp -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/State/NoteTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/State/NoteTracker.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Buttons/MPEButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Buttons/MPEButton.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Buttons/MPEButton.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Buttons/MPEButton.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Buttons/MenuButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Buttons/MenuButton.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Buttons/MenuButton.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Buttons/MenuButton.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Buttons/ToolBarButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Buttons/ToolBarButton.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Buttons/ToolBarButton.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Buttons/ToolBarButton.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Buttons/ToolTipButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Buttons/ToolTipButton.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Buttons/ToolTipButton.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Buttons/ToolTipButton.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Buttons/TrackButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Buttons/TrackButton.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Buttons/TrackButton.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Buttons/TrackButton.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/ViewControllers/AboutViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/ViewControllers/AboutViewController.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/ViewControllers/AboutViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/ViewControllers/AboutViewController.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/ViewControllers/AudioUnitViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/ViewControllers/AudioUnitViewController.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/ViewControllers/AudioUnitViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/ViewControllers/AudioUnitViewController.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/ViewControllers/DonateViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/ViewControllers/DonateViewController.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/ViewControllers/DonateViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/ViewControllers/DonateViewController.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/ViewControllers/RecorderToolTipDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/ViewControllers/RecorderToolTipDelegate.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/ViewControllers/SettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/ViewControllers/SettingsViewController.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/ViewControllers/SettingsViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/ViewControllers/SettingsViewController.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Views/ActivityIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Views/ActivityIndicatorView.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Views/ActivityIndicatorView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Views/ActivityIndicatorView.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Views/CropLeftView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Views/CropLeftView.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Views/CropLeftView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Views/CropLeftView.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Views/CropRightView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Views/CropRightView.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Views/CropRightView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Views/CropRightView.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Views/MidiTrackView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Views/MidiTrackView.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Views/MidiTrackView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Views/MidiTrackView.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Views/PlayheadView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Views/PlayheadView.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Views/PlayheadView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Views/PlayheadView.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Views/PopupView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Views/PopupView.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Views/PopupView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Views/PopupView.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Views/PunchInView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Views/PunchInView.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Views/PunchInView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Views/PunchInView.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Views/PunchOutView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Views/PunchOutView.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Views/PunchOutView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Views/PunchOutView.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Views/TimelineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Views/TimelineView.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/UI/Views/TimelineView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/UI/Views/TimelineView.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Utils/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Utils/Constants.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Utils/GraphicsHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Utils/GraphicsHelper.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Utils/GraphicsHelper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Utils/GraphicsHelper.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Utils/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Utils/Logging.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Utils/Logging.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Utils/Logging.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Utils/MidiHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Utils/MidiHelper.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Utils/MidiHelper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Utils/MidiHelper.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Utils/Preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Utils/Preferences.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Utils/Preferences.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Utils/Preferences.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Utils/RecorderUndoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Utils/RecorderUndoManager.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Utils/RecorderUndoManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Utils/RecorderUndoManager.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Utils/TPCircularBuffer/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Utils/TPCircularBuffer/README.markdown -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Utils/TPCircularBuffer/TPCircularBuffer+AudioBufferList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Utils/TPCircularBuffer/TPCircularBuffer+AudioBufferList.c -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Utils/TPCircularBuffer/TPCircularBuffer+AudioBufferList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Utils/TPCircularBuffer/TPCircularBuffer+AudioBufferList.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Utils/TPCircularBuffer/TPCircularBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Utils/TPCircularBuffer/TPCircularBuffer.c -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Utils/TPCircularBuffer/TPCircularBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Utils/TPCircularBuffer/TPCircularBuffer.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Utils/TPCircularBuffer/TPCircularBuffer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Utils/TPCircularBuffer/TPCircularBuffer.podspec -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Utils/URLHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Utils/URLHelper.h -------------------------------------------------------------------------------- /MIDI Tape Recorder Plugin/Utils/URLHelper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder Plugin/Utils/URLHelper.mm -------------------------------------------------------------------------------- /MIDI Tape Recorder.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MIDI Tape Recorder.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MIDI Tape Recorder.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MIDI Tape Recorder.xcodeproj/xcshareddata/xcschemes/MIDI Recorder Plugin.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder.xcodeproj/xcshareddata/xcschemes/MIDI Recorder Plugin.xcscheme -------------------------------------------------------------------------------- /MIDI Tape Recorder.xcodeproj/xcshareddata/xcschemes/MIDI Recorder.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder.xcodeproj/xcshareddata/xcschemes/MIDI Recorder.xcscheme -------------------------------------------------------------------------------- /MIDI Tape Recorder.xcodeproj/xcuserdata/gbevin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder.xcodeproj/xcuserdata/gbevin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /MIDI Tape Recorder.xcodeproj/xcuserdata/gbevin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder.xcodeproj/xcuserdata/gbevin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MIDI Tape Recorder/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/AppDelegate.h -------------------------------------------------------------------------------- /MIDI Tape Recorder/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/AppDelegate.m -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /MIDI Tape Recorder/Assets.xcassets/logo.imageset/miditaperec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Assets.xcassets/logo.imageset/miditaperec.pdf -------------------------------------------------------------------------------- /MIDI Tape Recorder/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /MIDI Tape Recorder/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MIDI Tape Recorder/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/Info.plist -------------------------------------------------------------------------------- /MIDI Tape Recorder/MIDI Tape Recorder.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/MIDI Tape Recorder.entitlements -------------------------------------------------------------------------------- /MIDI Tape Recorder/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/ViewController.h -------------------------------------------------------------------------------- /MIDI Tape Recorder/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/ViewController.m -------------------------------------------------------------------------------- /MIDI Tape Recorder/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/MIDI Tape Recorder/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/README.md -------------------------------------------------------------------------------- /Site/docs/activity_lights_in_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/activity_lights_in_out.png -------------------------------------------------------------------------------- /Site/docs/animoog_mpe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/animoog_mpe.png -------------------------------------------------------------------------------- /Site/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/index.html -------------------------------------------------------------------------------- /Site/docs/input_monitor_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/input_monitor_disabled.png -------------------------------------------------------------------------------- /Site/docs/input_monitor_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/input_monitor_enabled.png -------------------------------------------------------------------------------- /Site/docs/linnstrument_mpe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/linnstrument_mpe.png -------------------------------------------------------------------------------- /Site/docs/mpe_indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/mpe_indicator.png -------------------------------------------------------------------------------- /Site/docs/mpe_indicator_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/mpe_indicator_details.png -------------------------------------------------------------------------------- /Site/docs/mtr_connection_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/mtr_connection_1.png -------------------------------------------------------------------------------- /Site/docs/mtr_connection_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/mtr_connection_2.png -------------------------------------------------------------------------------- /Site/docs/mtr_gui_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/mtr_gui_1.png -------------------------------------------------------------------------------- /Site/docs/mtr_gui_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/mtr_gui_2.png -------------------------------------------------------------------------------- /Site/docs/mtr_gui_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/mtr_gui_3.png -------------------------------------------------------------------------------- /Site/docs/mtr_gui_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/mtr_gui_4.png -------------------------------------------------------------------------------- /Site/docs/playback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/playback.png -------------------------------------------------------------------------------- /Site/docs/record_armed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/record_armed.png -------------------------------------------------------------------------------- /Site/docs/recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/recording.png -------------------------------------------------------------------------------- /Site/docs/route_1_to_4_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/route_1_to_4_active.png -------------------------------------------------------------------------------- /Site/docs/route_4_to_4_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/route_4_to_4_active.png -------------------------------------------------------------------------------- /Site/docs/routing_1_to_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/routing_1_to_4.png -------------------------------------------------------------------------------- /Site/docs/routing_4_to_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/routing_4_to_4.png -------------------------------------------------------------------------------- /Site/docs/routing_aum_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/routing_aum_1.png -------------------------------------------------------------------------------- /Site/docs/routing_aum_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/routing_aum_2.png -------------------------------------------------------------------------------- /Site/docs/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/docs/settings.png -------------------------------------------------------------------------------- /Site/history/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/history/index.html -------------------------------------------------------------------------------- /Site/images/Approved-for-free-cultural-works.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/images/Approved-for-free-cultural-works.png -------------------------------------------------------------------------------- /Site/images/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/images/donate.png -------------------------------------------------------------------------------- /Site/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/images/download.png -------------------------------------------------------------------------------- /Site/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/images/logo.png -------------------------------------------------------------------------------- /Site/images/logo_og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/images/logo_og.png -------------------------------------------------------------------------------- /Site/images/og-screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/images/og-screenshot1.png -------------------------------------------------------------------------------- /Site/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/images/screenshot.png -------------------------------------------------------------------------------- /Site/images/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/images/screenshot2.png -------------------------------------------------------------------------------- /Site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/index.html -------------------------------------------------------------------------------- /Site/style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/style/main.css -------------------------------------------------------------------------------- /Site/support/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbevin/MIDITapeRecorder/HEAD/Site/support/index.html --------------------------------------------------------------------------------