├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── other.md └── workflows │ └── build-test-release.yml ├── .gitignore ├── BGM.xcworkspace └── contents.xcworkspacedata ├── BGMApp ├── BGMApp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── BGMXPCHelper.xcscheme │ │ └── Background Music.xcscheme ├── BGMApp │ ├── BGMApp-Debug.entitlements │ ├── BGMApp.entitlements │ ├── BGMAppDelegate.h │ ├── BGMAppDelegate.mm │ ├── BGMAppVolumes.h │ ├── BGMAppVolumes.m │ ├── BGMAppVolumesController.h │ ├── BGMAppVolumesController.mm │ ├── BGMAppWatcher.h │ ├── BGMAppWatcher.m │ ├── BGMAudioDevice.cpp │ ├── BGMAudioDevice.h │ ├── BGMAudioDeviceManager.h │ ├── BGMAudioDeviceManager.mm │ ├── BGMAutoPauseMenuItem.h │ ├── BGMAutoPauseMenuItem.m │ ├── BGMAutoPauseMusic.h │ ├── BGMAutoPauseMusic.mm │ ├── BGMBackgroundMusicDevice.cpp │ ├── BGMBackgroundMusicDevice.h │ ├── BGMDebugLoggingMenuItem.h │ ├── BGMDebugLoggingMenuItem.m │ ├── BGMDeviceControlSync.cpp │ ├── BGMDeviceControlSync.h │ ├── BGMDeviceControlsList.cpp │ ├── BGMDeviceControlsList.h │ ├── BGMOutputDeviceMenuSection.h │ ├── BGMOutputDeviceMenuSection.mm │ ├── BGMOutputVolumeMenuItem.h │ ├── BGMOutputVolumeMenuItem.mm │ ├── BGMPlayThrough.cpp │ ├── BGMPlayThrough.h │ ├── BGMPlayThroughRTLogger.cpp │ ├── BGMPlayThroughRTLogger.h │ ├── BGMPreferredOutputDevices.h │ ├── BGMPreferredOutputDevices.mm │ ├── BGMStatusBarItem.h │ ├── BGMStatusBarItem.mm │ ├── BGMSystemSoundsVolume.h │ ├── BGMSystemSoundsVolume.mm │ ├── BGMTermination.h │ ├── BGMTermination.mm │ ├── BGMUserDefaults.h │ ├── BGMUserDefaults.m │ ├── BGMVolumeChangeListener.cpp │ ├── BGMVolumeChangeListener.h │ ├── BGMXPCListener.h │ ├── BGMXPCListener.mm │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Images.xcassets │ │ ├── AirPlayIcon.imageset │ │ │ ├── AirPlay.pdf │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── appicon_1024.png │ │ │ ├── appicon_128.png │ │ │ ├── appicon_16.png │ │ │ ├── appicon_256.png │ │ │ ├── appicon_32.png │ │ │ ├── appicon_512.png │ │ │ └── appicon_64.png │ │ ├── Contents.json │ │ ├── FermataIcon.imageset │ │ │ ├── Contents.json │ │ │ └── FermataIcon.pdf │ │ ├── Volume0.imageset │ │ │ ├── Contents.json │ │ │ └── Volume0.pdf │ │ ├── Volume1.imageset │ │ │ ├── Contents.json │ │ │ └── Volume1.pdf │ │ ├── Volume2.imageset │ │ │ ├── Contents.json │ │ │ └── Volume2.pdf │ │ └── Volume3.imageset │ │ │ ├── Contents.json │ │ │ └── Volume3.pdf │ ├── Info.plist │ ├── LICENSE │ ├── Music Players │ │ ├── BGMDecibel.h │ │ ├── BGMDecibel.m │ │ ├── BGMGooglePlayMusicDesktopPlayer.h │ │ ├── BGMGooglePlayMusicDesktopPlayer.m │ │ ├── BGMGooglePlayMusicDesktopPlayerConnection.h │ │ ├── BGMGooglePlayMusicDesktopPlayerConnection.m │ │ ├── BGMHermes.h │ │ ├── BGMHermes.m │ │ ├── BGMMusic.h │ │ ├── BGMMusic.m │ │ ├── BGMMusicPlayer.h │ │ ├── BGMMusicPlayer.m │ │ ├── BGMMusicPlayers.h │ │ ├── BGMMusicPlayers.mm │ │ ├── BGMScriptingBridge.h │ │ ├── BGMScriptingBridge.m │ │ ├── BGMSpotify.h │ │ ├── BGMSpotify.m │ │ ├── BGMSwinsian.h │ │ ├── BGMSwinsian.m │ │ ├── BGMVLC.h │ │ ├── BGMVLC.m │ │ ├── BGMVOX.h │ │ ├── BGMVOX.m │ │ ├── BGMiTunes.h │ │ ├── BGMiTunes.m │ │ ├── Decibel.h │ │ ├── GooglePlayMusicDesktopPlayer.js │ │ ├── Hermes.h │ │ ├── Music.h │ │ ├── Spotify.h │ │ ├── Swinsian.h │ │ ├── VLC.h │ │ ├── VOX.h │ │ └── iTunes.h │ ├── Preferences │ │ ├── BGMAboutPanel.h │ │ ├── BGMAboutPanel.m │ │ ├── BGMAutoPauseMusicPrefs.h │ │ ├── BGMAutoPauseMusicPrefs.mm │ │ ├── BGMPreferencesMenu.h │ │ └── BGMPreferencesMenu.mm │ ├── Scripting │ │ ├── BGMASApplication.h │ │ ├── BGMASApplication.m │ │ ├── BGMASOutputDevice.h │ │ ├── BGMASOutputDevice.mm │ │ ├── BGMApp.sdef │ │ ├── BGMAppDelegate+AppleScript.h │ │ └── BGMAppDelegate+AppleScript.mm │ ├── SystemPreferences.h │ ├── _uninstall-non-interactive.sh │ └── main.m ├── BGMAppTests │ ├── UITests │ │ ├── BGMApp.h │ │ ├── BGMAppUITests-Info.plist │ │ ├── BGMAppUITests.mm │ │ └── skip-ui-tests.py │ └── UnitTests │ │ ├── BGMAppUnitTests-Info.plist │ │ ├── BGMMusicPlayersUnitTests.mm │ │ ├── BGMPlayThroughRTLoggerTests.mm │ │ ├── BGMPlayThroughTests.mm │ │ └── Mocks │ │ ├── MockAudioDevice.cpp │ │ ├── MockAudioDevice.h │ │ ├── MockAudioObject.cpp │ │ ├── MockAudioObject.h │ │ ├── MockAudioObjects.cpp │ │ ├── MockAudioObjects.h │ │ ├── Mock_CAHALAudioDevice.cpp │ │ ├── Mock_CAHALAudioObject.cpp │ │ └── Mock_CAHALAudioSystemObject.cpp ├── BGMThreadSafetyAnalysis.h ├── BGMXPCHelper │ ├── BGMXPCHelperService.h │ ├── BGMXPCHelperService.mm │ ├── BGMXPCListenerDelegate.h │ ├── BGMXPCListenerDelegate.m │ ├── Info.plist │ ├── com.bearisdriving.BGM.XPCHelper.plist.template │ ├── main.m │ ├── post_install.sh │ └── safe_install_dir.sh ├── BGMXPCHelperTests │ ├── BGMXPCHelperTests-Info.plist │ └── BGMXPCHelperTests.m ├── OptimizationProfiles │ └── BGMApp.profdata └── PublicUtility │ ├── BGMDebugLogging.c │ ├── BGMDebugLogging.h │ ├── CAAtomic.h │ ├── CAAutoDisposer.h │ ├── CABitOperations.h │ ├── CACFArray.cpp │ ├── CACFArray.h │ ├── CACFDictionary.cpp │ ├── CACFDictionary.h │ ├── CACFNumber.cpp │ ├── CACFNumber.h │ ├── CACFString.cpp │ ├── CACFString.h │ ├── CADebugMacros.cpp │ ├── CADebugMacros.h │ ├── CADebugPrintf.cpp │ ├── CADebugPrintf.h │ ├── CADebugger.cpp │ ├── CADebugger.h │ ├── CAException.h │ ├── CAHALAudioDevice.cpp │ ├── CAHALAudioDevice.h │ ├── CAHALAudioObject.cpp │ ├── CAHALAudioObject.h │ ├── CAHALAudioStream.cpp │ ├── CAHALAudioStream.h │ ├── CAHALAudioSystemObject.cpp │ ├── CAHALAudioSystemObject.h │ ├── CAHostTimeBase.cpp │ ├── CAHostTimeBase.h │ ├── CAMutex.cpp │ ├── CAMutex.h │ ├── CAPThread.cpp │ ├── CAPThread.h │ ├── CAPropertyAddress.h │ ├── CARingBuffer.cpp │ └── CARingBuffer.h ├── BGMDriver ├── BGMDriver.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── Background Music Device.xcscheme │ │ └── PublicUtility.xcscheme ├── BGMDriver │ ├── BGM_AbstractDevice.cpp │ ├── BGM_AbstractDevice.h │ ├── BGM_AudibleState.cpp │ ├── BGM_AudibleState.h │ ├── BGM_Control.cpp │ ├── BGM_Control.h │ ├── BGM_Device.cpp │ ├── BGM_Device.h │ ├── BGM_MuteControl.cpp │ ├── BGM_MuteControl.h │ ├── BGM_NullDevice.cpp │ ├── BGM_NullDevice.h │ ├── BGM_Object.cpp │ ├── BGM_Object.h │ ├── BGM_PlugIn.cpp │ ├── BGM_PlugIn.h │ ├── BGM_PlugInInterface.cpp │ ├── BGM_Stream.cpp │ ├── BGM_Stream.h │ ├── BGM_TaskQueue.cpp │ ├── BGM_TaskQueue.h │ ├── BGM_VolumeControl.cpp │ ├── BGM_VolumeControl.h │ ├── BGM_WrappedAudioEngine.cpp │ ├── BGM_WrappedAudioEngine.h │ ├── BGM_XPCHelper.h │ ├── BGM_XPCHelper.m │ ├── DeviceClients │ │ ├── BGM_Client.cpp │ │ ├── BGM_Client.h │ │ ├── BGM_ClientMap.cpp │ │ ├── BGM_ClientMap.h │ │ ├── BGM_ClientTasks.h │ │ ├── BGM_Clients.cpp │ │ └── BGM_Clients.h │ ├── DeviceIcon.icns │ ├── Info.plist │ └── quick_install.sh ├── BGMDriverTests │ ├── BGM_ClientMapTests.mm │ ├── BGM_ClientsTests.mm │ ├── BGM_DeviceTests.mm │ └── Info.plist └── PublicUtility │ ├── CAAtomic.h │ ├── CAAtomicStack.h │ ├── CAAutoDisposer.h │ ├── CABitOperations.h │ ├── CACFArray.cpp │ ├── CACFArray.h │ ├── CACFDictionary.cpp │ ├── CACFDictionary.h │ ├── CACFNumber.cpp │ ├── CACFNumber.h │ ├── CACFString.cpp │ ├── CACFString.h │ ├── CADebugMacros.cpp │ ├── CADebugMacros.h │ ├── CADebugPrintf.cpp │ ├── CADebugPrintf.h │ ├── CADebugger.cpp │ ├── CADebugger.h │ ├── CADispatchQueue.cpp │ ├── CADispatchQueue.h │ ├── CAException.h │ ├── CAHostTimeBase.cpp │ ├── CAHostTimeBase.h │ ├── CAMutex.cpp │ ├── CAMutex.h │ ├── CAPThread.cpp │ ├── CAPThread.h │ ├── CAPropertyAddress.h │ ├── CARingBuffer.cpp │ ├── CARingBuffer.h │ ├── CAVolumeCurve.cpp │ └── CAVolumeCurve.h ├── CONTRIBUTING.md ├── DEVELOPING.md ├── Images ├── FermataIcon.pdf ├── FermataIcon.tex ├── README │ ├── FermataIcon.png │ ├── Screenshot.png │ └── pkg-icon.png ├── VolumeIcons.tex ├── generate_icon_pngs.sh └── iconizer.sh ├── LICENSE ├── LICENSE-Apple-Sample-Code ├── MANUAL-INSTALL.md ├── MANUAL-UNINSTALL.md ├── README.md ├── SharedSource ├── BGMXPCProtocols.h ├── BGM_TestUtils.h ├── BGM_Types.h ├── BGM_Utils.cpp ├── BGM_Utils.h └── Scripts │ └── set-version.sh ├── TODO.md ├── package.sh ├── pkg ├── Distribution.xml.template ├── ListInputDevices.swift ├── README.md ├── pkgbuild.plist ├── postinstall └── preinstall └── uninstall.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.github/workflows/build-test-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/.github/workflows/build-test-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/.gitignore -------------------------------------------------------------------------------- /BGM.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGM.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BGMApp/BGMApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BGMApp/BGMApp.xcodeproj/xcshareddata/xcschemes/BGMXPCHelper.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp.xcodeproj/xcshareddata/xcschemes/BGMXPCHelper.xcscheme -------------------------------------------------------------------------------- /BGMApp/BGMApp.xcodeproj/xcshareddata/xcschemes/Background Music.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp.xcodeproj/xcshareddata/xcschemes/Background Music.xcscheme -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMApp-Debug.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMApp-Debug.entitlements -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMApp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMApp.entitlements -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMAppDelegate.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMAppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMAppDelegate.mm -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMAppVolumes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMAppVolumes.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMAppVolumes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMAppVolumes.m -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMAppVolumesController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMAppVolumesController.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMAppVolumesController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMAppVolumesController.mm -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMAppWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMAppWatcher.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMAppWatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMAppWatcher.m -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMAudioDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMAudioDevice.cpp -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMAudioDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMAudioDevice.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMAudioDeviceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMAudioDeviceManager.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMAudioDeviceManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMAudioDeviceManager.mm -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMAutoPauseMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMAutoPauseMenuItem.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMAutoPauseMenuItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMAutoPauseMenuItem.m -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMAutoPauseMusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMAutoPauseMusic.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMAutoPauseMusic.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMAutoPauseMusic.mm -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMBackgroundMusicDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMBackgroundMusicDevice.cpp -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMBackgroundMusicDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMBackgroundMusicDevice.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMDebugLoggingMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMDebugLoggingMenuItem.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMDebugLoggingMenuItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMDebugLoggingMenuItem.m -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMDeviceControlSync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMDeviceControlSync.cpp -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMDeviceControlSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMDeviceControlSync.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMDeviceControlsList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMDeviceControlsList.cpp -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMDeviceControlsList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMDeviceControlsList.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMOutputDeviceMenuSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMOutputDeviceMenuSection.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMOutputDeviceMenuSection.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMOutputDeviceMenuSection.mm -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMOutputVolumeMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMOutputVolumeMenuItem.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMOutputVolumeMenuItem.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMOutputVolumeMenuItem.mm -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMPlayThrough.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMPlayThrough.cpp -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMPlayThrough.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMPlayThrough.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMPlayThroughRTLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMPlayThroughRTLogger.cpp -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMPlayThroughRTLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMPlayThroughRTLogger.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMPreferredOutputDevices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMPreferredOutputDevices.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMPreferredOutputDevices.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMPreferredOutputDevices.mm -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMStatusBarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMStatusBarItem.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMStatusBarItem.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMStatusBarItem.mm -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMSystemSoundsVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMSystemSoundsVolume.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMSystemSoundsVolume.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMSystemSoundsVolume.mm -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMTermination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMTermination.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMTermination.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMTermination.mm -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMUserDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMUserDefaults.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMUserDefaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMUserDefaults.m -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMVolumeChangeListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMVolumeChangeListener.cpp -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMVolumeChangeListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMVolumeChangeListener.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMXPCListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMXPCListener.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/BGMXPCListener.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/BGMXPCListener.mm -------------------------------------------------------------------------------- /BGMApp/BGMApp/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/AirPlayIcon.imageset/AirPlay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/AirPlayIcon.imageset/AirPlay.pdf -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/AirPlayIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/AirPlayIcon.imageset/Contents.json -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/AppIcon.appiconset/appicon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/AppIcon.appiconset/appicon_1024.png -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/AppIcon.appiconset/appicon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/AppIcon.appiconset/appicon_128.png -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/AppIcon.appiconset/appicon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/AppIcon.appiconset/appicon_16.png -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/AppIcon.appiconset/appicon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/AppIcon.appiconset/appicon_256.png -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/AppIcon.appiconset/appicon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/AppIcon.appiconset/appicon_32.png -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/AppIcon.appiconset/appicon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/AppIcon.appiconset/appicon_512.png -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/AppIcon.appiconset/appicon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/AppIcon.appiconset/appicon_64.png -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/FermataIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/FermataIcon.imageset/Contents.json -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/FermataIcon.imageset/FermataIcon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/FermataIcon.imageset/FermataIcon.pdf -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/Volume0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/Volume0.imageset/Contents.json -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/Volume0.imageset/Volume0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/Volume0.imageset/Volume0.pdf -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/Volume1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/Volume1.imageset/Contents.json -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/Volume1.imageset/Volume1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/Volume1.imageset/Volume1.pdf -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/Volume2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/Volume2.imageset/Contents.json -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/Volume2.imageset/Volume2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/Volume2.imageset/Volume2.pdf -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/Volume3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/Volume3.imageset/Contents.json -------------------------------------------------------------------------------- /BGMApp/BGMApp/Images.xcassets/Volume3.imageset/Volume3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Images.xcassets/Volume3.imageset/Volume3.pdf -------------------------------------------------------------------------------- /BGMApp/BGMApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Info.plist -------------------------------------------------------------------------------- /BGMApp/BGMApp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/LICENSE -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMDecibel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMDecibel.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMDecibel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMDecibel.m -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMGooglePlayMusicDesktopPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMGooglePlayMusicDesktopPlayer.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMGooglePlayMusicDesktopPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMGooglePlayMusicDesktopPlayer.m -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMGooglePlayMusicDesktopPlayerConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMGooglePlayMusicDesktopPlayerConnection.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMGooglePlayMusicDesktopPlayerConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMGooglePlayMusicDesktopPlayerConnection.m -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMHermes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMHermes.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMHermes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMHermes.m -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMMusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMMusic.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMMusic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMMusic.m -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMMusicPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMMusicPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMMusicPlayer.m -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMMusicPlayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMMusicPlayers.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMMusicPlayers.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMMusicPlayers.mm -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMScriptingBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMScriptingBridge.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMScriptingBridge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMScriptingBridge.m -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMSpotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMSpotify.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMSpotify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMSpotify.m -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMSwinsian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMSwinsian.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMSwinsian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMSwinsian.m -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMVLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMVLC.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMVLC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMVLC.m -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMVOX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMVOX.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMVOX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMVOX.m -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMiTunes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMiTunes.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/BGMiTunes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/BGMiTunes.m -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/Decibel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/Decibel.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/GooglePlayMusicDesktopPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/GooglePlayMusicDesktopPlayer.js -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/Hermes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/Hermes.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/Music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/Music.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/Spotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/Spotify.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/Swinsian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/Swinsian.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/VLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/VLC.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/VOX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/VOX.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Music Players/iTunes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Music Players/iTunes.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Preferences/BGMAboutPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Preferences/BGMAboutPanel.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Preferences/BGMAboutPanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Preferences/BGMAboutPanel.m -------------------------------------------------------------------------------- /BGMApp/BGMApp/Preferences/BGMAutoPauseMusicPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Preferences/BGMAutoPauseMusicPrefs.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Preferences/BGMAutoPauseMusicPrefs.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Preferences/BGMAutoPauseMusicPrefs.mm -------------------------------------------------------------------------------- /BGMApp/BGMApp/Preferences/BGMPreferencesMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Preferences/BGMPreferencesMenu.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Preferences/BGMPreferencesMenu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Preferences/BGMPreferencesMenu.mm -------------------------------------------------------------------------------- /BGMApp/BGMApp/Scripting/BGMASApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Scripting/BGMASApplication.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Scripting/BGMASApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Scripting/BGMASApplication.m -------------------------------------------------------------------------------- /BGMApp/BGMApp/Scripting/BGMASOutputDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Scripting/BGMASOutputDevice.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Scripting/BGMASOutputDevice.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Scripting/BGMASOutputDevice.mm -------------------------------------------------------------------------------- /BGMApp/BGMApp/Scripting/BGMApp.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Scripting/BGMApp.sdef -------------------------------------------------------------------------------- /BGMApp/BGMApp/Scripting/BGMAppDelegate+AppleScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Scripting/BGMAppDelegate+AppleScript.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/Scripting/BGMAppDelegate+AppleScript.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/Scripting/BGMAppDelegate+AppleScript.mm -------------------------------------------------------------------------------- /BGMApp/BGMApp/SystemPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/SystemPreferences.h -------------------------------------------------------------------------------- /BGMApp/BGMApp/_uninstall-non-interactive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/_uninstall-non-interactive.sh -------------------------------------------------------------------------------- /BGMApp/BGMApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMApp/main.m -------------------------------------------------------------------------------- /BGMApp/BGMAppTests/UITests/BGMApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMAppTests/UITests/BGMApp.h -------------------------------------------------------------------------------- /BGMApp/BGMAppTests/UITests/BGMAppUITests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMAppTests/UITests/BGMAppUITests-Info.plist -------------------------------------------------------------------------------- /BGMApp/BGMAppTests/UITests/BGMAppUITests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMAppTests/UITests/BGMAppUITests.mm -------------------------------------------------------------------------------- /BGMApp/BGMAppTests/UITests/skip-ui-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMAppTests/UITests/skip-ui-tests.py -------------------------------------------------------------------------------- /BGMApp/BGMAppTests/UnitTests/BGMAppUnitTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMAppTests/UnitTests/BGMAppUnitTests-Info.plist -------------------------------------------------------------------------------- /BGMApp/BGMAppTests/UnitTests/BGMMusicPlayersUnitTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMAppTests/UnitTests/BGMMusicPlayersUnitTests.mm -------------------------------------------------------------------------------- /BGMApp/BGMAppTests/UnitTests/BGMPlayThroughRTLoggerTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMAppTests/UnitTests/BGMPlayThroughRTLoggerTests.mm -------------------------------------------------------------------------------- /BGMApp/BGMAppTests/UnitTests/BGMPlayThroughTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMAppTests/UnitTests/BGMPlayThroughTests.mm -------------------------------------------------------------------------------- /BGMApp/BGMAppTests/UnitTests/Mocks/MockAudioDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMAppTests/UnitTests/Mocks/MockAudioDevice.cpp -------------------------------------------------------------------------------- /BGMApp/BGMAppTests/UnitTests/Mocks/MockAudioDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMAppTests/UnitTests/Mocks/MockAudioDevice.h -------------------------------------------------------------------------------- /BGMApp/BGMAppTests/UnitTests/Mocks/MockAudioObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMAppTests/UnitTests/Mocks/MockAudioObject.cpp -------------------------------------------------------------------------------- /BGMApp/BGMAppTests/UnitTests/Mocks/MockAudioObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMAppTests/UnitTests/Mocks/MockAudioObject.h -------------------------------------------------------------------------------- /BGMApp/BGMAppTests/UnitTests/Mocks/MockAudioObjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMAppTests/UnitTests/Mocks/MockAudioObjects.cpp -------------------------------------------------------------------------------- /BGMApp/BGMAppTests/UnitTests/Mocks/MockAudioObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMAppTests/UnitTests/Mocks/MockAudioObjects.h -------------------------------------------------------------------------------- /BGMApp/BGMAppTests/UnitTests/Mocks/Mock_CAHALAudioDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMAppTests/UnitTests/Mocks/Mock_CAHALAudioDevice.cpp -------------------------------------------------------------------------------- /BGMApp/BGMAppTests/UnitTests/Mocks/Mock_CAHALAudioObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMAppTests/UnitTests/Mocks/Mock_CAHALAudioObject.cpp -------------------------------------------------------------------------------- /BGMApp/BGMAppTests/UnitTests/Mocks/Mock_CAHALAudioSystemObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMAppTests/UnitTests/Mocks/Mock_CAHALAudioSystemObject.cpp -------------------------------------------------------------------------------- /BGMApp/BGMThreadSafetyAnalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMThreadSafetyAnalysis.h -------------------------------------------------------------------------------- /BGMApp/BGMXPCHelper/BGMXPCHelperService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMXPCHelper/BGMXPCHelperService.h -------------------------------------------------------------------------------- /BGMApp/BGMXPCHelper/BGMXPCHelperService.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMXPCHelper/BGMXPCHelperService.mm -------------------------------------------------------------------------------- /BGMApp/BGMXPCHelper/BGMXPCListenerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMXPCHelper/BGMXPCListenerDelegate.h -------------------------------------------------------------------------------- /BGMApp/BGMXPCHelper/BGMXPCListenerDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMXPCHelper/BGMXPCListenerDelegate.m -------------------------------------------------------------------------------- /BGMApp/BGMXPCHelper/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMXPCHelper/Info.plist -------------------------------------------------------------------------------- /BGMApp/BGMXPCHelper/com.bearisdriving.BGM.XPCHelper.plist.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMXPCHelper/com.bearisdriving.BGM.XPCHelper.plist.template -------------------------------------------------------------------------------- /BGMApp/BGMXPCHelper/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMXPCHelper/main.m -------------------------------------------------------------------------------- /BGMApp/BGMXPCHelper/post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMXPCHelper/post_install.sh -------------------------------------------------------------------------------- /BGMApp/BGMXPCHelper/safe_install_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMXPCHelper/safe_install_dir.sh -------------------------------------------------------------------------------- /BGMApp/BGMXPCHelperTests/BGMXPCHelperTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMXPCHelperTests/BGMXPCHelperTests-Info.plist -------------------------------------------------------------------------------- /BGMApp/BGMXPCHelperTests/BGMXPCHelperTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/BGMXPCHelperTests/BGMXPCHelperTests.m -------------------------------------------------------------------------------- /BGMApp/OptimizationProfiles/BGMApp.profdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/OptimizationProfiles/BGMApp.profdata -------------------------------------------------------------------------------- /BGMApp/PublicUtility/BGMDebugLogging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/BGMDebugLogging.c -------------------------------------------------------------------------------- /BGMApp/PublicUtility/BGMDebugLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/BGMDebugLogging.h -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CAAtomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CAAtomic.h -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CAAutoDisposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CAAutoDisposer.h -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CABitOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CABitOperations.h -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CACFArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CACFArray.cpp -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CACFArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CACFArray.h -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CACFDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CACFDictionary.cpp -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CACFDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CACFDictionary.h -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CACFNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CACFNumber.cpp -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CACFNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CACFNumber.h -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CACFString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CACFString.cpp -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CACFString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CACFString.h -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CADebugMacros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CADebugMacros.cpp -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CADebugMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CADebugMacros.h -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CADebugPrintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CADebugPrintf.cpp -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CADebugPrintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CADebugPrintf.h -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CADebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CADebugger.cpp -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CADebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CADebugger.h -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CAException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CAException.h -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CAHALAudioDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CAHALAudioDevice.cpp -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CAHALAudioDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CAHALAudioDevice.h -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CAHALAudioObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CAHALAudioObject.cpp -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CAHALAudioObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CAHALAudioObject.h -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CAHALAudioStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CAHALAudioStream.cpp -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CAHALAudioStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CAHALAudioStream.h -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CAHALAudioSystemObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CAHALAudioSystemObject.cpp -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CAHALAudioSystemObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CAHALAudioSystemObject.h -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CAHostTimeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CAHostTimeBase.cpp -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CAHostTimeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CAHostTimeBase.h -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CAMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CAMutex.cpp -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CAMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CAMutex.h -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CAPThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CAPThread.cpp -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CAPThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CAPThread.h -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CAPropertyAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CAPropertyAddress.h -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CARingBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CARingBuffer.cpp -------------------------------------------------------------------------------- /BGMApp/PublicUtility/CARingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMApp/PublicUtility/CARingBuffer.h -------------------------------------------------------------------------------- /BGMDriver/BGMDriver.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BGMDriver/BGMDriver.xcodeproj/xcshareddata/xcschemes/Background Music Device.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver.xcodeproj/xcshareddata/xcschemes/Background Music Device.xcscheme -------------------------------------------------------------------------------- /BGMDriver/BGMDriver.xcodeproj/xcshareddata/xcschemes/PublicUtility.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver.xcodeproj/xcshareddata/xcschemes/PublicUtility.xcscheme -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_AbstractDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_AbstractDevice.cpp -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_AbstractDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_AbstractDevice.h -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_AudibleState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_AudibleState.cpp -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_AudibleState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_AudibleState.h -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_Control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_Control.cpp -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_Control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_Control.h -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_Device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_Device.cpp -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_Device.h -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_MuteControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_MuteControl.cpp -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_MuteControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_MuteControl.h -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_NullDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_NullDevice.cpp -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_NullDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_NullDevice.h -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_Object.cpp -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_Object.h -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_PlugIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_PlugIn.cpp -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_PlugIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_PlugIn.h -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_PlugInInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_PlugInInterface.cpp -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_Stream.cpp -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_Stream.h -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_TaskQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_TaskQueue.cpp -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_TaskQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_TaskQueue.h -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_VolumeControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_VolumeControl.cpp -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_VolumeControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_VolumeControl.h -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_WrappedAudioEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_WrappedAudioEngine.cpp -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_WrappedAudioEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_WrappedAudioEngine.h -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_XPCHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_XPCHelper.h -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/BGM_XPCHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/BGM_XPCHelper.m -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/DeviceClients/BGM_Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/DeviceClients/BGM_Client.cpp -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/DeviceClients/BGM_Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/DeviceClients/BGM_Client.h -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/DeviceClients/BGM_ClientMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/DeviceClients/BGM_ClientMap.cpp -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/DeviceClients/BGM_ClientMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/DeviceClients/BGM_ClientMap.h -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/DeviceClients/BGM_ClientTasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/DeviceClients/BGM_ClientTasks.h -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/DeviceClients/BGM_Clients.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/DeviceClients/BGM_Clients.cpp -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/DeviceClients/BGM_Clients.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/DeviceClients/BGM_Clients.h -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/DeviceIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/DeviceIcon.icns -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/Info.plist -------------------------------------------------------------------------------- /BGMDriver/BGMDriver/quick_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriver/quick_install.sh -------------------------------------------------------------------------------- /BGMDriver/BGMDriverTests/BGM_ClientMapTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriverTests/BGM_ClientMapTests.mm -------------------------------------------------------------------------------- /BGMDriver/BGMDriverTests/BGM_ClientsTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriverTests/BGM_ClientsTests.mm -------------------------------------------------------------------------------- /BGMDriver/BGMDriverTests/BGM_DeviceTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriverTests/BGM_DeviceTests.mm -------------------------------------------------------------------------------- /BGMDriver/BGMDriverTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/BGMDriverTests/Info.plist -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CAAtomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CAAtomic.h -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CAAtomicStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CAAtomicStack.h -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CAAutoDisposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CAAutoDisposer.h -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CABitOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CABitOperations.h -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CACFArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CACFArray.cpp -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CACFArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CACFArray.h -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CACFDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CACFDictionary.cpp -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CACFDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CACFDictionary.h -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CACFNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CACFNumber.cpp -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CACFNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CACFNumber.h -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CACFString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CACFString.cpp -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CACFString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CACFString.h -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CADebugMacros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CADebugMacros.cpp -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CADebugMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CADebugMacros.h -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CADebugPrintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CADebugPrintf.cpp -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CADebugPrintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CADebugPrintf.h -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CADebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CADebugger.cpp -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CADebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CADebugger.h -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CADispatchQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CADispatchQueue.cpp -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CADispatchQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CADispatchQueue.h -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CAException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CAException.h -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CAHostTimeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CAHostTimeBase.cpp -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CAHostTimeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CAHostTimeBase.h -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CAMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CAMutex.cpp -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CAMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CAMutex.h -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CAPThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CAPThread.cpp -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CAPThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CAPThread.h -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CAPropertyAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CAPropertyAddress.h -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CARingBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CARingBuffer.cpp -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CARingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CARingBuffer.h -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CAVolumeCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CAVolumeCurve.cpp -------------------------------------------------------------------------------- /BGMDriver/PublicUtility/CAVolumeCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/BGMDriver/PublicUtility/CAVolumeCurve.h -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/DEVELOPING.md -------------------------------------------------------------------------------- /Images/FermataIcon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/Images/FermataIcon.pdf -------------------------------------------------------------------------------- /Images/FermataIcon.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/Images/FermataIcon.tex -------------------------------------------------------------------------------- /Images/README/FermataIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/Images/README/FermataIcon.png -------------------------------------------------------------------------------- /Images/README/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/Images/README/Screenshot.png -------------------------------------------------------------------------------- /Images/README/pkg-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/Images/README/pkg-icon.png -------------------------------------------------------------------------------- /Images/VolumeIcons.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/Images/VolumeIcons.tex -------------------------------------------------------------------------------- /Images/generate_icon_pngs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/Images/generate_icon_pngs.sh -------------------------------------------------------------------------------- /Images/iconizer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/Images/iconizer.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-Apple-Sample-Code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/LICENSE-Apple-Sample-Code -------------------------------------------------------------------------------- /MANUAL-INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/MANUAL-INSTALL.md -------------------------------------------------------------------------------- /MANUAL-UNINSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/MANUAL-UNINSTALL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/README.md -------------------------------------------------------------------------------- /SharedSource/BGMXPCProtocols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/SharedSource/BGMXPCProtocols.h -------------------------------------------------------------------------------- /SharedSource/BGM_TestUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/SharedSource/BGM_TestUtils.h -------------------------------------------------------------------------------- /SharedSource/BGM_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/SharedSource/BGM_Types.h -------------------------------------------------------------------------------- /SharedSource/BGM_Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/SharedSource/BGM_Utils.cpp -------------------------------------------------------------------------------- /SharedSource/BGM_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/SharedSource/BGM_Utils.h -------------------------------------------------------------------------------- /SharedSource/Scripts/set-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/SharedSource/Scripts/set-version.sh -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/TODO.md -------------------------------------------------------------------------------- /package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/package.sh -------------------------------------------------------------------------------- /pkg/Distribution.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/pkg/Distribution.xml.template -------------------------------------------------------------------------------- /pkg/ListInputDevices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/pkg/ListInputDevices.swift -------------------------------------------------------------------------------- /pkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/pkg/README.md -------------------------------------------------------------------------------- /pkg/pkgbuild.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/pkg/pkgbuild.plist -------------------------------------------------------------------------------- /pkg/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/pkg/postinstall -------------------------------------------------------------------------------- /pkg/preinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/pkg/preinstall -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleneideck/BackgroundMusic/HEAD/uninstall.sh --------------------------------------------------------------------------------