├── .gitignore ├── Images ├── Header.webp └── MainWindow@2x.png ├── LICENSE ├── README.md ├── pre-commit ├── rm2000.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── xcshareddata │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ └── RM2000 Tape Recorder.xcscheme ├── rm2000 ├── Acknowledgements.rtf ├── AppDelegate.swift ├── AppState.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 128x128.png │ │ ├── 128x128@2x.png │ │ ├── 16x16.png │ │ ├── 16x16@2x.png │ │ ├── 256x256.png │ │ ├── 256x256@2x.png │ │ ├── 32x32.png │ │ ├── 32x32@2x.png │ │ ├── 512x512.png │ │ ├── 512x512@2x.png │ │ └── Contents.json │ ├── Contents.json │ ├── FolderButton.imageset │ │ ├── Contents.json │ │ ├── Folder_1x.png │ │ └── Folder_2x.png │ ├── HappyFolder.imageset │ │ ├── Contents.json │ │ ├── Group@0.25x.png │ │ └── Group@0.5x.png │ ├── LCDOuterGlow.imageset │ │ ├── Contents.json │ │ ├── LCD Outer Glow_1x 1.png │ │ └── LCD Outer Glow_1x.png │ ├── LCDScreenFrameInactive.imageset │ │ ├── Contents.json │ │ ├── LCD Screen Inactive (Exportable).png │ │ └── LCD Screen Inactive (Exportable)@2x.png │ ├── LCDScreenFrameRecording.imageset │ │ ├── Contents.json │ │ ├── LCD Screen Active (Exportable).png │ │ └── LCD Screen Active (Exportable)@2x.png │ ├── LCDTextColor.colorset │ │ └── Contents.json │ ├── MainWindowBitmap.imageset │ │ ├── Contents.json │ │ ├── Main Window Copy 2@1x.png │ │ └── Main Window Copy 2@2x.png │ ├── MicGrilleBitmap.imageset │ │ ├── Contents.json │ │ ├── Microphone1x.png │ │ ├── Microphone2x.png │ │ ├── dark1@1xMicrophone Dark.png │ │ └── dark1@2xMicrophone Dark.png │ ├── MicGrilleBitmapTahoe.imageset │ │ ├── Contents.json │ │ ├── Microphone Copy.png │ │ ├── Microphone Copy@1x.png │ │ ├── tortured@1xMicrophone Dark.png │ │ └── tortured@2xMicrophone Dark.png │ ├── RecordButtonActiveTemp.imageset │ │ ├── Contents.json │ │ ├── Record Button Inactive (Exportable).png │ │ └── Record Button Inactive (Exportable)@2x.png │ ├── RecordButtonGlow.imageset │ │ ├── Contents.json │ │ ├── Record Button Glow.png │ │ └── Record Button Glow@2x.png │ ├── RecordButtonIndent.imageset │ │ ├── Contents.json │ │ ├── RecordButtonIndent_1x.png │ │ └── RecordButtonIndent_2x.png │ ├── RecordButtonTemp.imageset │ │ ├── Contents.json │ │ ├── Record Button Active (Exportable).png │ │ └── Record Button Active (Exportable)@2x.png │ ├── RecorderBackgroundBigSur.imageset │ │ ├── Backgroundbigsur_nos@1x.png │ │ ├── Backgroundbigsur_nos@2x.png │ │ └── Contents.json │ ├── RecorderBackgroundTahoe.imageset │ │ ├── Backgroundtahoe22@1x.png │ │ ├── Backgroundtahoe22@2x.png │ │ └── Contents.json │ ├── RecordingTapeBlackFlipped.symbolset │ │ ├── Contents.json │ │ └── RecordingTapeBlackFlippedLg.symbols.svg │ ├── SettingsButton.imageset │ │ ├── Contents.json │ │ ├── Settings_1x.png │ │ └── Settings_2x.png │ ├── SmallHappyFolder.imageset │ │ ├── Contents.json │ │ └── smallhappyfinder.png │ ├── SourceButton.imageset │ │ ├── Contents.json │ │ ├── Source_1x.png │ │ └── Source_2x.png │ ├── share_file.symbolset │ │ ├── Contents.json │ │ └── custom.square.and.arrow.up.badge.waveform.svg │ ├── unlinked.symbolset │ │ ├── Contents.json │ │ └── untagged.svg │ └── untagged.symbolset │ │ ├── Contents.json │ │ └── tagslash.svg ├── Credits.rtfd │ ├── TXT.rtf │ └── spec_smalles1tblhe.png ├── Fonts │ ├── InstrumentSerif-Regular.ttf │ ├── TASAExplorer-SemiBold.otf │ └── Tachyo.otf ├── Info.plist ├── Logging.swift ├── Models │ ├── AudioFormat.swift │ ├── RecordingStateEnum.swift │ ├── Sample.swift │ ├── SampleMetadata.swift │ └── TemporaryActiveRecording.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Products.storekit ├── RM2000 Tape Recorder.swift ├── Sample Managing │ ├── SampleEditConfiguration.swift │ ├── SampleEditOperation.swift │ ├── SampleEditor.swift │ ├── SampleProcessor.swift │ └── SampleStorage.swift ├── Shared.swift ├── StoreKitManager.swift ├── StoreKitTestCertificate.cer ├── Tape Mechanism │ ├── AudioManager.swift │ ├── Backends │ │ ├── CoreAudioTaps │ │ │ └── CoreAudio.swift │ │ ├── Protocols.swift │ │ └── ScreenCaptureKit │ │ │ └── SCStreamManager.swift │ ├── Extensions.swift │ ├── TapeMechanism.swift │ └── digest.txt ├── TapeRecorderState.swift ├── Views │ ├── Global Recording Preview │ │ ├── GlobalRecordingPreviewView.swift │ │ └── GlobalRecordingPreviewWindow.swift │ ├── Main Window │ │ ├── Buttons.swift │ │ ├── ContentView.swift │ │ ├── Glyphs │ │ │ ├── DonutSpinner.swift │ │ │ ├── ErrorGlyph.swift │ │ │ ├── RecordingGlyph.swift │ │ │ ├── SourceGlyph.swift │ │ │ └── VUMeterView.swift │ │ ├── LCDScreenView.swift │ │ ├── Shaders.metal │ │ └── TitleBar.swift │ ├── Menu Bar │ │ └── MenuBar.swift │ ├── Noise.metal │ ├── Onboarding │ │ ├── CompletedOnboardingView.swift │ │ ├── GettingStartedOnboardingView.swift │ │ ├── OnboardingView.swift │ │ ├── RequestPermissionOnboardingView.swift │ │ ├── SettingsOnboardingView.swift │ │ └── WelcomeOnboardingView.swift │ ├── Sample Editing │ │ ├── EditSampleView.swift │ │ ├── EditingHUDWindow.swift │ │ ├── EditingSheetWindow.swift │ │ ├── PreviewFilenameView.swift │ │ ├── TokenFieldView.swift │ │ └── TrimmingPlayerView.swift │ ├── Sample Library │ │ ├── Audio Player │ │ │ ├── AudioPlayerToolbar.swift │ │ │ └── SampleLibraryAutoPlayer.swift │ │ ├── Detail Views │ │ │ ├── DetailView.swift │ │ │ ├── ListView.swift │ │ │ └── TableView.swift │ │ ├── InspectorView.swift │ │ ├── Sample Importer │ │ │ └── ImportSampleSheetView.swift │ │ ├── SampleLibraryView.swift │ │ ├── SampleLibraryViewModel.swift │ │ ├── SidebarView.swift │ │ ├── TagComponent.swift │ │ ├── ToolbarButtons.swift │ │ └── WaveformView.swift │ ├── Settings │ │ ├── DebugTabView.swift │ │ ├── GeneralTabView.swift │ │ ├── LicenseTabView.swift │ │ ├── RecordingTabView.swift │ │ └── SettingsView.swift │ ├── UserNotifications.swift │ └── WhatsNewView.swift └── rm2000.entitlements ├── rm2000Tests └── rm2000Tests.swift └── rm2000UITests ├── rm2000UITests.swift └── rm2000UITestsLaunchTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/Header.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/Images/Header.webp -------------------------------------------------------------------------------- /Images/MainWindow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/Images/MainWindow@2x.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/README.md -------------------------------------------------------------------------------- /pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/pre-commit -------------------------------------------------------------------------------- /rm2000.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /rm2000.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /rm2000.xcodeproj/xcshareddata/xcschemes/RM2000 Tape Recorder.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000.xcodeproj/xcshareddata/xcschemes/RM2000 Tape Recorder.xcscheme -------------------------------------------------------------------------------- /rm2000/Acknowledgements.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Acknowledgements.rtf -------------------------------------------------------------------------------- /rm2000/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/AppDelegate.swift -------------------------------------------------------------------------------- /rm2000/AppState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/AppState.swift -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/AppIcon.appiconset/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/AppIcon.appiconset/128x128.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/AppIcon.appiconset/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/AppIcon.appiconset/128x128@2x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/AppIcon.appiconset/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/AppIcon.appiconset/16x16.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/AppIcon.appiconset/16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/AppIcon.appiconset/16x16@2x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/AppIcon.appiconset/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/AppIcon.appiconset/256x256.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/AppIcon.appiconset/256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/AppIcon.appiconset/256x256@2x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/AppIcon.appiconset/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/AppIcon.appiconset/32x32.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/AppIcon.appiconset/32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/AppIcon.appiconset/32x32@2x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/AppIcon.appiconset/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/AppIcon.appiconset/512x512.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/AppIcon.appiconset/512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/AppIcon.appiconset/512x512@2x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/FolderButton.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/FolderButton.imageset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/FolderButton.imageset/Folder_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/FolderButton.imageset/Folder_1x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/FolderButton.imageset/Folder_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/FolderButton.imageset/Folder_2x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/HappyFolder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/HappyFolder.imageset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/HappyFolder.imageset/Group@0.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/HappyFolder.imageset/Group@0.25x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/HappyFolder.imageset/Group@0.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/HappyFolder.imageset/Group@0.5x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/LCDOuterGlow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/LCDOuterGlow.imageset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/LCDOuterGlow.imageset/LCD Outer Glow_1x 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/LCDOuterGlow.imageset/LCD Outer Glow_1x 1.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/LCDOuterGlow.imageset/LCD Outer Glow_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/LCDOuterGlow.imageset/LCD Outer Glow_1x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/LCDScreenFrameInactive.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/LCDScreenFrameInactive.imageset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/LCDScreenFrameInactive.imageset/LCD Screen Inactive (Exportable).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/LCDScreenFrameInactive.imageset/LCD Screen Inactive (Exportable).png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/LCDScreenFrameInactive.imageset/LCD Screen Inactive (Exportable)@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/LCDScreenFrameInactive.imageset/LCD Screen Inactive (Exportable)@2x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/LCDScreenFrameRecording.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/LCDScreenFrameRecording.imageset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/LCDScreenFrameRecording.imageset/LCD Screen Active (Exportable).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/LCDScreenFrameRecording.imageset/LCD Screen Active (Exportable).png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/LCDScreenFrameRecording.imageset/LCD Screen Active (Exportable)@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/LCDScreenFrameRecording.imageset/LCD Screen Active (Exportable)@2x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/LCDTextColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/LCDTextColor.colorset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/MainWindowBitmap.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/MainWindowBitmap.imageset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/MainWindowBitmap.imageset/Main Window Copy 2@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/MainWindowBitmap.imageset/Main Window Copy 2@1x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/MainWindowBitmap.imageset/Main Window Copy 2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/MainWindowBitmap.imageset/Main Window Copy 2@2x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/MicGrilleBitmap.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/MicGrilleBitmap.imageset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/MicGrilleBitmap.imageset/Microphone1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/MicGrilleBitmap.imageset/Microphone1x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/MicGrilleBitmap.imageset/Microphone2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/MicGrilleBitmap.imageset/Microphone2x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/MicGrilleBitmap.imageset/dark1@1xMicrophone Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/MicGrilleBitmap.imageset/dark1@1xMicrophone Dark.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/MicGrilleBitmap.imageset/dark1@2xMicrophone Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/MicGrilleBitmap.imageset/dark1@2xMicrophone Dark.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/MicGrilleBitmapTahoe.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/MicGrilleBitmapTahoe.imageset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/MicGrilleBitmapTahoe.imageset/Microphone Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/MicGrilleBitmapTahoe.imageset/Microphone Copy.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/MicGrilleBitmapTahoe.imageset/Microphone Copy@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/MicGrilleBitmapTahoe.imageset/Microphone Copy@1x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/MicGrilleBitmapTahoe.imageset/tortured@1xMicrophone Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/MicGrilleBitmapTahoe.imageset/tortured@1xMicrophone Dark.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/MicGrilleBitmapTahoe.imageset/tortured@2xMicrophone Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/MicGrilleBitmapTahoe.imageset/tortured@2xMicrophone Dark.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/RecordButtonActiveTemp.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/RecordButtonActiveTemp.imageset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/RecordButtonActiveTemp.imageset/Record Button Inactive (Exportable).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/RecordButtonActiveTemp.imageset/Record Button Inactive (Exportable).png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/RecordButtonActiveTemp.imageset/Record Button Inactive (Exportable)@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/RecordButtonActiveTemp.imageset/Record Button Inactive (Exportable)@2x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/RecordButtonGlow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/RecordButtonGlow.imageset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/RecordButtonGlow.imageset/Record Button Glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/RecordButtonGlow.imageset/Record Button Glow.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/RecordButtonGlow.imageset/Record Button Glow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/RecordButtonGlow.imageset/Record Button Glow@2x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/RecordButtonIndent.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/RecordButtonIndent.imageset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/RecordButtonIndent.imageset/RecordButtonIndent_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/RecordButtonIndent.imageset/RecordButtonIndent_1x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/RecordButtonIndent.imageset/RecordButtonIndent_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/RecordButtonIndent.imageset/RecordButtonIndent_2x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/RecordButtonTemp.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/RecordButtonTemp.imageset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/RecordButtonTemp.imageset/Record Button Active (Exportable).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/RecordButtonTemp.imageset/Record Button Active (Exportable).png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/RecordButtonTemp.imageset/Record Button Active (Exportable)@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/RecordButtonTemp.imageset/Record Button Active (Exportable)@2x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/RecorderBackgroundBigSur.imageset/Backgroundbigsur_nos@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/RecorderBackgroundBigSur.imageset/Backgroundbigsur_nos@1x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/RecorderBackgroundBigSur.imageset/Backgroundbigsur_nos@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/RecorderBackgroundBigSur.imageset/Backgroundbigsur_nos@2x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/RecorderBackgroundBigSur.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/RecorderBackgroundBigSur.imageset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/RecorderBackgroundTahoe.imageset/Backgroundtahoe22@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/RecorderBackgroundTahoe.imageset/Backgroundtahoe22@1x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/RecorderBackgroundTahoe.imageset/Backgroundtahoe22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/RecorderBackgroundTahoe.imageset/Backgroundtahoe22@2x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/RecorderBackgroundTahoe.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/RecorderBackgroundTahoe.imageset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/RecordingTapeBlackFlipped.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/RecordingTapeBlackFlipped.symbolset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/RecordingTapeBlackFlipped.symbolset/RecordingTapeBlackFlippedLg.symbols.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/RecordingTapeBlackFlipped.symbolset/RecordingTapeBlackFlippedLg.symbols.svg -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/SettingsButton.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/SettingsButton.imageset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/SettingsButton.imageset/Settings_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/SettingsButton.imageset/Settings_1x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/SettingsButton.imageset/Settings_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/SettingsButton.imageset/Settings_2x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/SmallHappyFolder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/SmallHappyFolder.imageset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/SmallHappyFolder.imageset/smallhappyfinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/SmallHappyFolder.imageset/smallhappyfinder.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/SourceButton.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/SourceButton.imageset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/SourceButton.imageset/Source_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/SourceButton.imageset/Source_1x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/SourceButton.imageset/Source_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/SourceButton.imageset/Source_2x.png -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/share_file.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/share_file.symbolset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/share_file.symbolset/custom.square.and.arrow.up.badge.waveform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/share_file.symbolset/custom.square.and.arrow.up.badge.waveform.svg -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/unlinked.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/unlinked.symbolset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/unlinked.symbolset/untagged.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/unlinked.symbolset/untagged.svg -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/untagged.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/untagged.symbolset/Contents.json -------------------------------------------------------------------------------- /rm2000/Assets.xcassets/untagged.symbolset/tagslash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Assets.xcassets/untagged.symbolset/tagslash.svg -------------------------------------------------------------------------------- /rm2000/Credits.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Credits.rtfd/TXT.rtf -------------------------------------------------------------------------------- /rm2000/Credits.rtfd/spec_smalles1tblhe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Credits.rtfd/spec_smalles1tblhe.png -------------------------------------------------------------------------------- /rm2000/Fonts/InstrumentSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Fonts/InstrumentSerif-Regular.ttf -------------------------------------------------------------------------------- /rm2000/Fonts/TASAExplorer-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Fonts/TASAExplorer-SemiBold.otf -------------------------------------------------------------------------------- /rm2000/Fonts/Tachyo.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Fonts/Tachyo.otf -------------------------------------------------------------------------------- /rm2000/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Info.plist -------------------------------------------------------------------------------- /rm2000/Logging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Logging.swift -------------------------------------------------------------------------------- /rm2000/Models/AudioFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Models/AudioFormat.swift -------------------------------------------------------------------------------- /rm2000/Models/RecordingStateEnum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Models/RecordingStateEnum.swift -------------------------------------------------------------------------------- /rm2000/Models/Sample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Models/Sample.swift -------------------------------------------------------------------------------- /rm2000/Models/SampleMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Models/SampleMetadata.swift -------------------------------------------------------------------------------- /rm2000/Models/TemporaryActiveRecording.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Models/TemporaryActiveRecording.swift -------------------------------------------------------------------------------- /rm2000/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /rm2000/Products.storekit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Products.storekit -------------------------------------------------------------------------------- /rm2000/RM2000 Tape Recorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/RM2000 Tape Recorder.swift -------------------------------------------------------------------------------- /rm2000/Sample Managing/SampleEditConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Sample Managing/SampleEditConfiguration.swift -------------------------------------------------------------------------------- /rm2000/Sample Managing/SampleEditOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Sample Managing/SampleEditOperation.swift -------------------------------------------------------------------------------- /rm2000/Sample Managing/SampleEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Sample Managing/SampleEditor.swift -------------------------------------------------------------------------------- /rm2000/Sample Managing/SampleProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Sample Managing/SampleProcessor.swift -------------------------------------------------------------------------------- /rm2000/Sample Managing/SampleStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Sample Managing/SampleStorage.swift -------------------------------------------------------------------------------- /rm2000/Shared.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Shared.swift -------------------------------------------------------------------------------- /rm2000/StoreKitManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/StoreKitManager.swift -------------------------------------------------------------------------------- /rm2000/StoreKitTestCertificate.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/StoreKitTestCertificate.cer -------------------------------------------------------------------------------- /rm2000/Tape Mechanism/AudioManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Tape Mechanism/AudioManager.swift -------------------------------------------------------------------------------- /rm2000/Tape Mechanism/Backends/CoreAudioTaps/CoreAudio.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Tape Mechanism/Backends/CoreAudioTaps/CoreAudio.swift -------------------------------------------------------------------------------- /rm2000/Tape Mechanism/Backends/Protocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Tape Mechanism/Backends/Protocols.swift -------------------------------------------------------------------------------- /rm2000/Tape Mechanism/Backends/ScreenCaptureKit/SCStreamManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Tape Mechanism/Backends/ScreenCaptureKit/SCStreamManager.swift -------------------------------------------------------------------------------- /rm2000/Tape Mechanism/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Tape Mechanism/Extensions.swift -------------------------------------------------------------------------------- /rm2000/Tape Mechanism/TapeMechanism.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Tape Mechanism/TapeMechanism.swift -------------------------------------------------------------------------------- /rm2000/Tape Mechanism/digest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Tape Mechanism/digest.txt -------------------------------------------------------------------------------- /rm2000/TapeRecorderState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/TapeRecorderState.swift -------------------------------------------------------------------------------- /rm2000/Views/Global Recording Preview/GlobalRecordingPreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Global Recording Preview/GlobalRecordingPreviewView.swift -------------------------------------------------------------------------------- /rm2000/Views/Global Recording Preview/GlobalRecordingPreviewWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Global Recording Preview/GlobalRecordingPreviewWindow.swift -------------------------------------------------------------------------------- /rm2000/Views/Main Window/Buttons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Main Window/Buttons.swift -------------------------------------------------------------------------------- /rm2000/Views/Main Window/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Main Window/ContentView.swift -------------------------------------------------------------------------------- /rm2000/Views/Main Window/Glyphs/DonutSpinner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Main Window/Glyphs/DonutSpinner.swift -------------------------------------------------------------------------------- /rm2000/Views/Main Window/Glyphs/ErrorGlyph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Main Window/Glyphs/ErrorGlyph.swift -------------------------------------------------------------------------------- /rm2000/Views/Main Window/Glyphs/RecordingGlyph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Main Window/Glyphs/RecordingGlyph.swift -------------------------------------------------------------------------------- /rm2000/Views/Main Window/Glyphs/SourceGlyph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Main Window/Glyphs/SourceGlyph.swift -------------------------------------------------------------------------------- /rm2000/Views/Main Window/Glyphs/VUMeterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Main Window/Glyphs/VUMeterView.swift -------------------------------------------------------------------------------- /rm2000/Views/Main Window/LCDScreenView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Main Window/LCDScreenView.swift -------------------------------------------------------------------------------- /rm2000/Views/Main Window/Shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Main Window/Shaders.metal -------------------------------------------------------------------------------- /rm2000/Views/Main Window/TitleBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Main Window/TitleBar.swift -------------------------------------------------------------------------------- /rm2000/Views/Menu Bar/MenuBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Menu Bar/MenuBar.swift -------------------------------------------------------------------------------- /rm2000/Views/Noise.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Noise.metal -------------------------------------------------------------------------------- /rm2000/Views/Onboarding/CompletedOnboardingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Onboarding/CompletedOnboardingView.swift -------------------------------------------------------------------------------- /rm2000/Views/Onboarding/GettingStartedOnboardingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Onboarding/GettingStartedOnboardingView.swift -------------------------------------------------------------------------------- /rm2000/Views/Onboarding/OnboardingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Onboarding/OnboardingView.swift -------------------------------------------------------------------------------- /rm2000/Views/Onboarding/RequestPermissionOnboardingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Onboarding/RequestPermissionOnboardingView.swift -------------------------------------------------------------------------------- /rm2000/Views/Onboarding/SettingsOnboardingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Onboarding/SettingsOnboardingView.swift -------------------------------------------------------------------------------- /rm2000/Views/Onboarding/WelcomeOnboardingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Onboarding/WelcomeOnboardingView.swift -------------------------------------------------------------------------------- /rm2000/Views/Sample Editing/EditSampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Sample Editing/EditSampleView.swift -------------------------------------------------------------------------------- /rm2000/Views/Sample Editing/EditingHUDWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Sample Editing/EditingHUDWindow.swift -------------------------------------------------------------------------------- /rm2000/Views/Sample Editing/EditingSheetWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Sample Editing/EditingSheetWindow.swift -------------------------------------------------------------------------------- /rm2000/Views/Sample Editing/PreviewFilenameView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Sample Editing/PreviewFilenameView.swift -------------------------------------------------------------------------------- /rm2000/Views/Sample Editing/TokenFieldView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Sample Editing/TokenFieldView.swift -------------------------------------------------------------------------------- /rm2000/Views/Sample Editing/TrimmingPlayerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Sample Editing/TrimmingPlayerView.swift -------------------------------------------------------------------------------- /rm2000/Views/Sample Library/Audio Player/AudioPlayerToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Sample Library/Audio Player/AudioPlayerToolbar.swift -------------------------------------------------------------------------------- /rm2000/Views/Sample Library/Audio Player/SampleLibraryAutoPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Sample Library/Audio Player/SampleLibraryAutoPlayer.swift -------------------------------------------------------------------------------- /rm2000/Views/Sample Library/Detail Views/DetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Sample Library/Detail Views/DetailView.swift -------------------------------------------------------------------------------- /rm2000/Views/Sample Library/Detail Views/ListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Sample Library/Detail Views/ListView.swift -------------------------------------------------------------------------------- /rm2000/Views/Sample Library/Detail Views/TableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Sample Library/Detail Views/TableView.swift -------------------------------------------------------------------------------- /rm2000/Views/Sample Library/InspectorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Sample Library/InspectorView.swift -------------------------------------------------------------------------------- /rm2000/Views/Sample Library/Sample Importer/ImportSampleSheetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Sample Library/Sample Importer/ImportSampleSheetView.swift -------------------------------------------------------------------------------- /rm2000/Views/Sample Library/SampleLibraryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Sample Library/SampleLibraryView.swift -------------------------------------------------------------------------------- /rm2000/Views/Sample Library/SampleLibraryViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Sample Library/SampleLibraryViewModel.swift -------------------------------------------------------------------------------- /rm2000/Views/Sample Library/SidebarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Sample Library/SidebarView.swift -------------------------------------------------------------------------------- /rm2000/Views/Sample Library/TagComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Sample Library/TagComponent.swift -------------------------------------------------------------------------------- /rm2000/Views/Sample Library/ToolbarButtons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Sample Library/ToolbarButtons.swift -------------------------------------------------------------------------------- /rm2000/Views/Sample Library/WaveformView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Sample Library/WaveformView.swift -------------------------------------------------------------------------------- /rm2000/Views/Settings/DebugTabView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Settings/DebugTabView.swift -------------------------------------------------------------------------------- /rm2000/Views/Settings/GeneralTabView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Settings/GeneralTabView.swift -------------------------------------------------------------------------------- /rm2000/Views/Settings/LicenseTabView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Settings/LicenseTabView.swift -------------------------------------------------------------------------------- /rm2000/Views/Settings/RecordingTabView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Settings/RecordingTabView.swift -------------------------------------------------------------------------------- /rm2000/Views/Settings/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/Settings/SettingsView.swift -------------------------------------------------------------------------------- /rm2000/Views/UserNotifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/UserNotifications.swift -------------------------------------------------------------------------------- /rm2000/Views/WhatsNewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/Views/WhatsNewView.swift -------------------------------------------------------------------------------- /rm2000/rm2000.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000/rm2000.entitlements -------------------------------------------------------------------------------- /rm2000Tests/rm2000Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000Tests/rm2000Tests.swift -------------------------------------------------------------------------------- /rm2000UITests/rm2000UITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000UITests/rm2000UITests.swift -------------------------------------------------------------------------------- /rm2000UITests/rm2000UITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marceloexc/RM2000TapeRecorder/HEAD/rm2000UITests/rm2000UITestsLaunchTests.swift --------------------------------------------------------------------------------