├── .gitignore ├── .gitmodules ├── Audio Players ├── SMKAVPlayerItem.h ├── SMKAVPlayerItem.m ├── SMKAVQueuePlayer.h ├── SMKAVQueuePlayer.m ├── SMKMPMusicPlayer.h ├── SMKMPMusicPlayer.m ├── SMKSFBAudioPlayer.h ├── SMKSFBAudioPlayer.mm ├── SMKSpotifyPlayer.h └── SMKSpotifyPlayer.m ├── Categories ├── NSBundle+SMKAdditions.h ├── NSBundle+SMKAdditions.m ├── NSError+SMKAdditions.h ├── NSError+SMKAdditions.m ├── NSManagedObjectContext+SMKAdditions.h ├── NSManagedObjectContext+SMKAdditions.m ├── NSMutableArray+SMKAdditions.h ├── NSMutableArray+SMKAdditions.m ├── NSObject+AssociatedObjects.h ├── NSObject+AssociatedObjects.m ├── NSString+SMKAdditions.h ├── NSString+SMKAdditions.m ├── NSURL+SMKAdditions.h └── NSURL+SMKAdditions.m ├── Common Headers ├── SMKConvenience.h ├── SMKErrorCodes.h ├── SMKErrorCodes.m ├── SMKGlobalConstants.h ├── SMKGlobalConstants.m └── SMKPlatformImports.h ├── Content Sources ├── 8tracks │ ├── Data Model │ │ ├── SMK8TracksMix.h │ │ ├── SMK8TracksMix.m │ │ ├── SMK8TracksObject.h │ │ ├── SMK8TracksObject.m │ │ ├── SMK8TracksUser.h │ │ └── SMK8TracksUser.m │ ├── SMK8TracksContentSource.h │ └── SMK8TracksContentSource.m ├── MPMediaLibrary │ ├── Data Model │ │ ├── SMKMPMediaAlbum.h │ │ ├── SMKMPMediaAlbum.m │ │ ├── SMKMPMediaArtist.h │ │ ├── SMKMPMediaArtist.m │ │ ├── SMKMPMediaPlaylist.h │ │ ├── SMKMPMediaPlaylist.m │ │ ├── SMKMPMediaPredicate.h │ │ ├── SMKMPMediaPredicate.m │ │ ├── SMKMPMediaTrack.h │ │ └── SMKMPMediaTrack.m │ ├── SMKMPMediaContentSource.h │ ├── SMKMPMediaContentSource.m │ ├── SMKMPMediaHelpers.h │ └── SMKMPMediaHelpers.m ├── Shared │ ├── SMKArtworkCache.h │ ├── SMKArtworkCache.m │ ├── SMKManagedObjectContext.h │ ├── SMKManagedObjectContext.m │ ├── SMKPlatformNativeImage+SMKAdditions.h │ └── SMKPlatformNativeImage+SMKAdditions.m ├── Spotify │ ├── Categories │ │ ├── NSObject+SMKSpotifyAdditions.h │ │ └── NSObject+SMKSpotifyAdditions.m │ ├── Data Model │ │ ├── SPAlbum+SMKAlbum.h │ │ ├── SPAlbum+SMKAlbum.m │ │ ├── SPArtist+SMKArtist.h │ │ ├── SPArtist+SMKArtist.m │ │ ├── SPPlaylist+SMKPlaylist.h │ │ ├── SPPlaylist+SMKPlaylist.m │ │ ├── SPToplist+SMKPlaylist.h │ │ ├── SPToplist+SMKPlaylist.m │ │ ├── SPTrack+SMKTrack.h │ │ ├── SPTrack+SMKTrack.m │ │ ├── SPUser+SMKUser.h │ │ └── SPUser+SMKUser.m │ ├── SMKSpotifyConstants.h │ ├── SMKSpotifyConstants.m │ ├── SMKSpotifyContentSource.h │ ├── SMKSpotifyContentSource.m │ ├── SMKSpotifyHelpers.h │ └── SMKSpotifyHelpers.m └── iTunes │ ├── Categories │ ├── NSManagedObjectContext+SMKiTunesAdditions.h │ └── NSManagedObjectContext+SMKiTunesAdditions.m │ ├── Data Model │ ├── SMKiTunesDataModel.xcdatamodeld │ │ ├── .xccurrentversion │ │ └── SMKiTunesDataModel.xcdatamodel │ │ │ └── contents │ └── mogenerator │ │ ├── SMKITunesAlbum.h │ │ ├── SMKITunesAlbum.m │ │ ├── SMKiTunesArtist.h │ │ ├── SMKiTunesArtist.m │ │ ├── SMKiTunesKeyword.h │ │ ├── SMKiTunesKeyword.m │ │ ├── SMKiTunesObject.h │ │ ├── SMKiTunesObject.m │ │ ├── SMKiTunesPlaylist.h │ │ ├── SMKiTunesPlaylist.m │ │ ├── SMKiTunesTrack.h │ │ ├── SMKiTunesTrack.m │ │ ├── _SMKITunesAlbum.h │ │ ├── _SMKITunesAlbum.m │ │ ├── _SMKiTunesArtist.h │ │ ├── _SMKiTunesArtist.m │ │ ├── _SMKiTunesKeyword.h │ │ ├── _SMKiTunesKeyword.m │ │ ├── _SMKiTunesObject.h │ │ ├── _SMKiTunesObject.m │ │ ├── _SMKiTunesPlaylist.h │ │ ├── _SMKiTunesPlaylist.m │ │ ├── _SMKiTunesTrack.h │ │ └── _SMKiTunesTrack.m │ ├── SMKiTunesConstants.h │ ├── SMKiTunesConstants.m │ ├── SMKiTunesContentSource.h │ ├── SMKiTunesContentSource.m │ ├── SMKiTunesSyncOperation.h │ └── SMKiTunesSyncOperation.m ├── Example Apps ├── 8tracksExample │ ├── 8tracksExample-Info.plist │ ├── 8tracksExample-Prefix.pch │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── en.lproj │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ └── main.m ├── MPMediaLibraryExample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── DetailViewController.h │ ├── DetailViewController.m │ ├── MPMediaLibraryExample-Info.plist │ ├── MPMediaLibraryExample-Prefix.pch │ ├── MasterViewController.h │ ├── MasterViewController.m │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ ├── MainStoryboard_iPad.storyboard │ │ └── MainStoryboard_iPhone.storyboard │ └── main.m ├── SpotifyExampleMac │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── SpotifyExampleMac-Info.plist │ ├── SpotifyExampleMac-Prefix.pch │ ├── en.lproj │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ └── main.m └── iTunesExample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── User Interface │ ├── InsetTextField.h │ └── InsetTextField.m │ ├── en.lproj │ ├── Credits.rtf │ ├── InfoPlist.strings │ └── MainMenu.xib │ ├── iTunesExample-Info.plist │ ├── iTunesExample-Prefix.pch │ └── main.m ├── Master API ├── SMKQueueController.h └── SMKQueueController.m ├── Other Services ├── SMKLastFMClient+SMKTrack.h ├── SMKLastFMClient+SMKTrack.m ├── SMKLastFMClient.h └── SMKLastFMClient.m ├── Protocols ├── SMKAlbum.h ├── SMKArtist.h ├── SMKArtworkObject.h ├── SMKContentObject.h ├── SMKContentSource.h ├── SMKHierarchicalLoading.h ├── SMKPlayer.h ├── SMKPlaylist.h ├── SMKTrack.h ├── SMKUser.h └── SMKWebObject.h ├── README.md ├── SNRMusicKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── indragie.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── indragie.xcuserdatad │ └── xcschemes │ ├── SNRMusicKit.xcscheme │ ├── SNRMusicKitMac.xcscheme │ ├── SNRMusicKitiOS.xcscheme │ └── xcschememanagement.plist ├── SNRMusicKitMac ├── SNRMusicKitMac-Info.plist ├── SNRMusicKitMac-Prefix.pch ├── SNRMusicKitMac.h ├── SNRMusicKitMac.m └── en.lproj │ └── InfoPlist.strings └── SNRMusicKitiOS ├── SNRMusicKitiOS-Prefix.pch └── SNRMusicKitiOS.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/.gitmodules -------------------------------------------------------------------------------- /Audio Players/SMKAVPlayerItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Audio Players/SMKAVPlayerItem.h -------------------------------------------------------------------------------- /Audio Players/SMKAVPlayerItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Audio Players/SMKAVPlayerItem.m -------------------------------------------------------------------------------- /Audio Players/SMKAVQueuePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Audio Players/SMKAVQueuePlayer.h -------------------------------------------------------------------------------- /Audio Players/SMKAVQueuePlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Audio Players/SMKAVQueuePlayer.m -------------------------------------------------------------------------------- /Audio Players/SMKMPMusicPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Audio Players/SMKMPMusicPlayer.h -------------------------------------------------------------------------------- /Audio Players/SMKMPMusicPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Audio Players/SMKMPMusicPlayer.m -------------------------------------------------------------------------------- /Audio Players/SMKSFBAudioPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Audio Players/SMKSFBAudioPlayer.h -------------------------------------------------------------------------------- /Audio Players/SMKSFBAudioPlayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Audio Players/SMKSFBAudioPlayer.mm -------------------------------------------------------------------------------- /Audio Players/SMKSpotifyPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Audio Players/SMKSpotifyPlayer.h -------------------------------------------------------------------------------- /Audio Players/SMKSpotifyPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Audio Players/SMKSpotifyPlayer.m -------------------------------------------------------------------------------- /Categories/NSBundle+SMKAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Categories/NSBundle+SMKAdditions.h -------------------------------------------------------------------------------- /Categories/NSBundle+SMKAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Categories/NSBundle+SMKAdditions.m -------------------------------------------------------------------------------- /Categories/NSError+SMKAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Categories/NSError+SMKAdditions.h -------------------------------------------------------------------------------- /Categories/NSError+SMKAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Categories/NSError+SMKAdditions.m -------------------------------------------------------------------------------- /Categories/NSManagedObjectContext+SMKAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Categories/NSManagedObjectContext+SMKAdditions.h -------------------------------------------------------------------------------- /Categories/NSManagedObjectContext+SMKAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Categories/NSManagedObjectContext+SMKAdditions.m -------------------------------------------------------------------------------- /Categories/NSMutableArray+SMKAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Categories/NSMutableArray+SMKAdditions.h -------------------------------------------------------------------------------- /Categories/NSMutableArray+SMKAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Categories/NSMutableArray+SMKAdditions.m -------------------------------------------------------------------------------- /Categories/NSObject+AssociatedObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Categories/NSObject+AssociatedObjects.h -------------------------------------------------------------------------------- /Categories/NSObject+AssociatedObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Categories/NSObject+AssociatedObjects.m -------------------------------------------------------------------------------- /Categories/NSString+SMKAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Categories/NSString+SMKAdditions.h -------------------------------------------------------------------------------- /Categories/NSString+SMKAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Categories/NSString+SMKAdditions.m -------------------------------------------------------------------------------- /Categories/NSURL+SMKAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Categories/NSURL+SMKAdditions.h -------------------------------------------------------------------------------- /Categories/NSURL+SMKAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Categories/NSURL+SMKAdditions.m -------------------------------------------------------------------------------- /Common Headers/SMKConvenience.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Common Headers/SMKConvenience.h -------------------------------------------------------------------------------- /Common Headers/SMKErrorCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Common Headers/SMKErrorCodes.h -------------------------------------------------------------------------------- /Common Headers/SMKErrorCodes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Common Headers/SMKErrorCodes.m -------------------------------------------------------------------------------- /Common Headers/SMKGlobalConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Common Headers/SMKGlobalConstants.h -------------------------------------------------------------------------------- /Common Headers/SMKGlobalConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Common Headers/SMKGlobalConstants.m -------------------------------------------------------------------------------- /Common Headers/SMKPlatformImports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Common Headers/SMKPlatformImports.h -------------------------------------------------------------------------------- /Content Sources/8tracks/Data Model/SMK8TracksMix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/8tracks/Data Model/SMK8TracksMix.h -------------------------------------------------------------------------------- /Content Sources/8tracks/Data Model/SMK8TracksMix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/8tracks/Data Model/SMK8TracksMix.m -------------------------------------------------------------------------------- /Content Sources/8tracks/Data Model/SMK8TracksObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/8tracks/Data Model/SMK8TracksObject.h -------------------------------------------------------------------------------- /Content Sources/8tracks/Data Model/SMK8TracksObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/8tracks/Data Model/SMK8TracksObject.m -------------------------------------------------------------------------------- /Content Sources/8tracks/Data Model/SMK8TracksUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/8tracks/Data Model/SMK8TracksUser.h -------------------------------------------------------------------------------- /Content Sources/8tracks/Data Model/SMK8TracksUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/8tracks/Data Model/SMK8TracksUser.m -------------------------------------------------------------------------------- /Content Sources/8tracks/SMK8TracksContentSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/8tracks/SMK8TracksContentSource.h -------------------------------------------------------------------------------- /Content Sources/8tracks/SMK8TracksContentSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/8tracks/SMK8TracksContentSource.m -------------------------------------------------------------------------------- /Content Sources/MPMediaLibrary/Data Model/SMKMPMediaAlbum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/MPMediaLibrary/Data Model/SMKMPMediaAlbum.h -------------------------------------------------------------------------------- /Content Sources/MPMediaLibrary/Data Model/SMKMPMediaAlbum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/MPMediaLibrary/Data Model/SMKMPMediaAlbum.m -------------------------------------------------------------------------------- /Content Sources/MPMediaLibrary/Data Model/SMKMPMediaArtist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/MPMediaLibrary/Data Model/SMKMPMediaArtist.h -------------------------------------------------------------------------------- /Content Sources/MPMediaLibrary/Data Model/SMKMPMediaArtist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/MPMediaLibrary/Data Model/SMKMPMediaArtist.m -------------------------------------------------------------------------------- /Content Sources/MPMediaLibrary/Data Model/SMKMPMediaPlaylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/MPMediaLibrary/Data Model/SMKMPMediaPlaylist.h -------------------------------------------------------------------------------- /Content Sources/MPMediaLibrary/Data Model/SMKMPMediaPlaylist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/MPMediaLibrary/Data Model/SMKMPMediaPlaylist.m -------------------------------------------------------------------------------- /Content Sources/MPMediaLibrary/Data Model/SMKMPMediaPredicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/MPMediaLibrary/Data Model/SMKMPMediaPredicate.h -------------------------------------------------------------------------------- /Content Sources/MPMediaLibrary/Data Model/SMKMPMediaPredicate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/MPMediaLibrary/Data Model/SMKMPMediaPredicate.m -------------------------------------------------------------------------------- /Content Sources/MPMediaLibrary/Data Model/SMKMPMediaTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/MPMediaLibrary/Data Model/SMKMPMediaTrack.h -------------------------------------------------------------------------------- /Content Sources/MPMediaLibrary/Data Model/SMKMPMediaTrack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/MPMediaLibrary/Data Model/SMKMPMediaTrack.m -------------------------------------------------------------------------------- /Content Sources/MPMediaLibrary/SMKMPMediaContentSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/MPMediaLibrary/SMKMPMediaContentSource.h -------------------------------------------------------------------------------- /Content Sources/MPMediaLibrary/SMKMPMediaContentSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/MPMediaLibrary/SMKMPMediaContentSource.m -------------------------------------------------------------------------------- /Content Sources/MPMediaLibrary/SMKMPMediaHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/MPMediaLibrary/SMKMPMediaHelpers.h -------------------------------------------------------------------------------- /Content Sources/MPMediaLibrary/SMKMPMediaHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/MPMediaLibrary/SMKMPMediaHelpers.m -------------------------------------------------------------------------------- /Content Sources/Shared/SMKArtworkCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Shared/SMKArtworkCache.h -------------------------------------------------------------------------------- /Content Sources/Shared/SMKArtworkCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Shared/SMKArtworkCache.m -------------------------------------------------------------------------------- /Content Sources/Shared/SMKManagedObjectContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Shared/SMKManagedObjectContext.h -------------------------------------------------------------------------------- /Content Sources/Shared/SMKManagedObjectContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Shared/SMKManagedObjectContext.m -------------------------------------------------------------------------------- /Content Sources/Shared/SMKPlatformNativeImage+SMKAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Shared/SMKPlatformNativeImage+SMKAdditions.h -------------------------------------------------------------------------------- /Content Sources/Shared/SMKPlatformNativeImage+SMKAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Shared/SMKPlatformNativeImage+SMKAdditions.m -------------------------------------------------------------------------------- /Content Sources/Spotify/Categories/NSObject+SMKSpotifyAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Spotify/Categories/NSObject+SMKSpotifyAdditions.h -------------------------------------------------------------------------------- /Content Sources/Spotify/Categories/NSObject+SMKSpotifyAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Spotify/Categories/NSObject+SMKSpotifyAdditions.m -------------------------------------------------------------------------------- /Content Sources/Spotify/Data Model/SPAlbum+SMKAlbum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Spotify/Data Model/SPAlbum+SMKAlbum.h -------------------------------------------------------------------------------- /Content Sources/Spotify/Data Model/SPAlbum+SMKAlbum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Spotify/Data Model/SPAlbum+SMKAlbum.m -------------------------------------------------------------------------------- /Content Sources/Spotify/Data Model/SPArtist+SMKArtist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Spotify/Data Model/SPArtist+SMKArtist.h -------------------------------------------------------------------------------- /Content Sources/Spotify/Data Model/SPArtist+SMKArtist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Spotify/Data Model/SPArtist+SMKArtist.m -------------------------------------------------------------------------------- /Content Sources/Spotify/Data Model/SPPlaylist+SMKPlaylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Spotify/Data Model/SPPlaylist+SMKPlaylist.h -------------------------------------------------------------------------------- /Content Sources/Spotify/Data Model/SPPlaylist+SMKPlaylist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Spotify/Data Model/SPPlaylist+SMKPlaylist.m -------------------------------------------------------------------------------- /Content Sources/Spotify/Data Model/SPToplist+SMKPlaylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Spotify/Data Model/SPToplist+SMKPlaylist.h -------------------------------------------------------------------------------- /Content Sources/Spotify/Data Model/SPToplist+SMKPlaylist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Spotify/Data Model/SPToplist+SMKPlaylist.m -------------------------------------------------------------------------------- /Content Sources/Spotify/Data Model/SPTrack+SMKTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Spotify/Data Model/SPTrack+SMKTrack.h -------------------------------------------------------------------------------- /Content Sources/Spotify/Data Model/SPTrack+SMKTrack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Spotify/Data Model/SPTrack+SMKTrack.m -------------------------------------------------------------------------------- /Content Sources/Spotify/Data Model/SPUser+SMKUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Spotify/Data Model/SPUser+SMKUser.h -------------------------------------------------------------------------------- /Content Sources/Spotify/Data Model/SPUser+SMKUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Spotify/Data Model/SPUser+SMKUser.m -------------------------------------------------------------------------------- /Content Sources/Spotify/SMKSpotifyConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Spotify/SMKSpotifyConstants.h -------------------------------------------------------------------------------- /Content Sources/Spotify/SMKSpotifyConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Spotify/SMKSpotifyConstants.m -------------------------------------------------------------------------------- /Content Sources/Spotify/SMKSpotifyContentSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Spotify/SMKSpotifyContentSource.h -------------------------------------------------------------------------------- /Content Sources/Spotify/SMKSpotifyContentSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Spotify/SMKSpotifyContentSource.m -------------------------------------------------------------------------------- /Content Sources/Spotify/SMKSpotifyHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Spotify/SMKSpotifyHelpers.h -------------------------------------------------------------------------------- /Content Sources/Spotify/SMKSpotifyHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/Spotify/SMKSpotifyHelpers.m -------------------------------------------------------------------------------- /Content Sources/iTunes/Categories/NSManagedObjectContext+SMKiTunesAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Categories/NSManagedObjectContext+SMKiTunesAdditions.h -------------------------------------------------------------------------------- /Content Sources/iTunes/Categories/NSManagedObjectContext+SMKiTunesAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Categories/NSManagedObjectContext+SMKiTunesAdditions.m -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/SMKiTunesDataModel.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/SMKiTunesDataModel.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/SMKiTunesDataModel.xcdatamodeld/SMKiTunesDataModel.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/SMKiTunesDataModel.xcdatamodeld/SMKiTunesDataModel.xcdatamodel/contents -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/SMKITunesAlbum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/SMKITunesAlbum.h -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/SMKITunesAlbum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/SMKITunesAlbum.m -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/SMKiTunesArtist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/SMKiTunesArtist.h -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/SMKiTunesArtist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/SMKiTunesArtist.m -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/SMKiTunesKeyword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/SMKiTunesKeyword.h -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/SMKiTunesKeyword.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/SMKiTunesKeyword.m -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/SMKiTunesObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/SMKiTunesObject.h -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/SMKiTunesObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/SMKiTunesObject.m -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/SMKiTunesPlaylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/SMKiTunesPlaylist.h -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/SMKiTunesPlaylist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/SMKiTunesPlaylist.m -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/SMKiTunesTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/SMKiTunesTrack.h -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/SMKiTunesTrack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/SMKiTunesTrack.m -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/_SMKITunesAlbum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/_SMKITunesAlbum.h -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/_SMKITunesAlbum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/_SMKITunesAlbum.m -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/_SMKiTunesArtist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/_SMKiTunesArtist.h -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/_SMKiTunesArtist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/_SMKiTunesArtist.m -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/_SMKiTunesKeyword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/_SMKiTunesKeyword.h -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/_SMKiTunesKeyword.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/_SMKiTunesKeyword.m -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/_SMKiTunesObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/_SMKiTunesObject.h -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/_SMKiTunesObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/_SMKiTunesObject.m -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/_SMKiTunesPlaylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/_SMKiTunesPlaylist.h -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/_SMKiTunesPlaylist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/_SMKiTunesPlaylist.m -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/_SMKiTunesTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/_SMKiTunesTrack.h -------------------------------------------------------------------------------- /Content Sources/iTunes/Data Model/mogenerator/_SMKiTunesTrack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/Data Model/mogenerator/_SMKiTunesTrack.m -------------------------------------------------------------------------------- /Content Sources/iTunes/SMKiTunesConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/SMKiTunesConstants.h -------------------------------------------------------------------------------- /Content Sources/iTunes/SMKiTunesConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/SMKiTunesConstants.m -------------------------------------------------------------------------------- /Content Sources/iTunes/SMKiTunesContentSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/SMKiTunesContentSource.h -------------------------------------------------------------------------------- /Content Sources/iTunes/SMKiTunesContentSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/SMKiTunesContentSource.m -------------------------------------------------------------------------------- /Content Sources/iTunes/SMKiTunesSyncOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/SMKiTunesSyncOperation.h -------------------------------------------------------------------------------- /Content Sources/iTunes/SMKiTunesSyncOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Content Sources/iTunes/SMKiTunesSyncOperation.m -------------------------------------------------------------------------------- /Example Apps/8tracksExample/8tracksExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/8tracksExample/8tracksExample-Info.plist -------------------------------------------------------------------------------- /Example Apps/8tracksExample/8tracksExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/8tracksExample/8tracksExample-Prefix.pch -------------------------------------------------------------------------------- /Example Apps/8tracksExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/8tracksExample/AppDelegate.h -------------------------------------------------------------------------------- /Example Apps/8tracksExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/8tracksExample/AppDelegate.m -------------------------------------------------------------------------------- /Example Apps/8tracksExample/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/8tracksExample/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /Example Apps/8tracksExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example Apps/8tracksExample/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/8tracksExample/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Example Apps/8tracksExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/8tracksExample/main.m -------------------------------------------------------------------------------- /Example Apps/MPMediaLibraryExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/MPMediaLibraryExample/AppDelegate.h -------------------------------------------------------------------------------- /Example Apps/MPMediaLibraryExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/MPMediaLibraryExample/AppDelegate.m -------------------------------------------------------------------------------- /Example Apps/MPMediaLibraryExample/DetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/MPMediaLibraryExample/DetailViewController.h -------------------------------------------------------------------------------- /Example Apps/MPMediaLibraryExample/DetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/MPMediaLibraryExample/DetailViewController.m -------------------------------------------------------------------------------- /Example Apps/MPMediaLibraryExample/MPMediaLibraryExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/MPMediaLibraryExample/MPMediaLibraryExample-Info.plist -------------------------------------------------------------------------------- /Example Apps/MPMediaLibraryExample/MPMediaLibraryExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/MPMediaLibraryExample/MPMediaLibraryExample-Prefix.pch -------------------------------------------------------------------------------- /Example Apps/MPMediaLibraryExample/MasterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/MPMediaLibraryExample/MasterViewController.h -------------------------------------------------------------------------------- /Example Apps/MPMediaLibraryExample/MasterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/MPMediaLibraryExample/MasterViewController.m -------------------------------------------------------------------------------- /Example Apps/MPMediaLibraryExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example Apps/MPMediaLibraryExample/en.lproj/MainStoryboard_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/MPMediaLibraryExample/en.lproj/MainStoryboard_iPad.storyboard -------------------------------------------------------------------------------- /Example Apps/MPMediaLibraryExample/en.lproj/MainStoryboard_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/MPMediaLibraryExample/en.lproj/MainStoryboard_iPhone.storyboard -------------------------------------------------------------------------------- /Example Apps/MPMediaLibraryExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/MPMediaLibraryExample/main.m -------------------------------------------------------------------------------- /Example Apps/SpotifyExampleMac/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/SpotifyExampleMac/AppDelegate.h -------------------------------------------------------------------------------- /Example Apps/SpotifyExampleMac/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/SpotifyExampleMac/AppDelegate.m -------------------------------------------------------------------------------- /Example Apps/SpotifyExampleMac/SpotifyExampleMac-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/SpotifyExampleMac/SpotifyExampleMac-Info.plist -------------------------------------------------------------------------------- /Example Apps/SpotifyExampleMac/SpotifyExampleMac-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/SpotifyExampleMac/SpotifyExampleMac-Prefix.pch -------------------------------------------------------------------------------- /Example Apps/SpotifyExampleMac/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/SpotifyExampleMac/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /Example Apps/SpotifyExampleMac/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example Apps/SpotifyExampleMac/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/SpotifyExampleMac/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Example Apps/SpotifyExampleMac/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/SpotifyExampleMac/main.m -------------------------------------------------------------------------------- /Example Apps/iTunesExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/iTunesExample/AppDelegate.h -------------------------------------------------------------------------------- /Example Apps/iTunesExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/iTunesExample/AppDelegate.m -------------------------------------------------------------------------------- /Example Apps/iTunesExample/User Interface/InsetTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/iTunesExample/User Interface/InsetTextField.h -------------------------------------------------------------------------------- /Example Apps/iTunesExample/User Interface/InsetTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/iTunesExample/User Interface/InsetTextField.m -------------------------------------------------------------------------------- /Example Apps/iTunesExample/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/iTunesExample/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /Example Apps/iTunesExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example Apps/iTunesExample/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/iTunesExample/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Example Apps/iTunesExample/iTunesExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/iTunesExample/iTunesExample-Info.plist -------------------------------------------------------------------------------- /Example Apps/iTunesExample/iTunesExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/iTunesExample/iTunesExample-Prefix.pch -------------------------------------------------------------------------------- /Example Apps/iTunesExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Example Apps/iTunesExample/main.m -------------------------------------------------------------------------------- /Master API/SMKQueueController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Master API/SMKQueueController.h -------------------------------------------------------------------------------- /Master API/SMKQueueController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Master API/SMKQueueController.m -------------------------------------------------------------------------------- /Other Services/SMKLastFMClient+SMKTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Other Services/SMKLastFMClient+SMKTrack.h -------------------------------------------------------------------------------- /Other Services/SMKLastFMClient+SMKTrack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Other Services/SMKLastFMClient+SMKTrack.m -------------------------------------------------------------------------------- /Other Services/SMKLastFMClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Other Services/SMKLastFMClient.h -------------------------------------------------------------------------------- /Other Services/SMKLastFMClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Other Services/SMKLastFMClient.m -------------------------------------------------------------------------------- /Protocols/SMKAlbum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Protocols/SMKAlbum.h -------------------------------------------------------------------------------- /Protocols/SMKArtist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Protocols/SMKArtist.h -------------------------------------------------------------------------------- /Protocols/SMKArtworkObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Protocols/SMKArtworkObject.h -------------------------------------------------------------------------------- /Protocols/SMKContentObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Protocols/SMKContentObject.h -------------------------------------------------------------------------------- /Protocols/SMKContentSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Protocols/SMKContentSource.h -------------------------------------------------------------------------------- /Protocols/SMKHierarchicalLoading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Protocols/SMKHierarchicalLoading.h -------------------------------------------------------------------------------- /Protocols/SMKPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Protocols/SMKPlayer.h -------------------------------------------------------------------------------- /Protocols/SMKPlaylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Protocols/SMKPlaylist.h -------------------------------------------------------------------------------- /Protocols/SMKTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Protocols/SMKTrack.h -------------------------------------------------------------------------------- /Protocols/SMKUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Protocols/SMKUser.h -------------------------------------------------------------------------------- /Protocols/SMKWebObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/Protocols/SMKWebObject.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/README.md -------------------------------------------------------------------------------- /SNRMusicKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/SNRMusicKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SNRMusicKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/SNRMusicKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SNRMusicKit.xcodeproj/project.xcworkspace/xcuserdata/indragie.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/SNRMusicKit.xcodeproj/project.xcworkspace/xcuserdata/indragie.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SNRMusicKit.xcodeproj/xcuserdata/indragie.xcuserdatad/xcschemes/SNRMusicKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/SNRMusicKit.xcodeproj/xcuserdata/indragie.xcuserdatad/xcschemes/SNRMusicKit.xcscheme -------------------------------------------------------------------------------- /SNRMusicKit.xcodeproj/xcuserdata/indragie.xcuserdatad/xcschemes/SNRMusicKitMac.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/SNRMusicKit.xcodeproj/xcuserdata/indragie.xcuserdatad/xcschemes/SNRMusicKitMac.xcscheme -------------------------------------------------------------------------------- /SNRMusicKit.xcodeproj/xcuserdata/indragie.xcuserdatad/xcschemes/SNRMusicKitiOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/SNRMusicKit.xcodeproj/xcuserdata/indragie.xcuserdatad/xcschemes/SNRMusicKitiOS.xcscheme -------------------------------------------------------------------------------- /SNRMusicKit.xcodeproj/xcuserdata/indragie.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/SNRMusicKit.xcodeproj/xcuserdata/indragie.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SNRMusicKitMac/SNRMusicKitMac-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/SNRMusicKitMac/SNRMusicKitMac-Info.plist -------------------------------------------------------------------------------- /SNRMusicKitMac/SNRMusicKitMac-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/SNRMusicKitMac/SNRMusicKitMac-Prefix.pch -------------------------------------------------------------------------------- /SNRMusicKitMac/SNRMusicKitMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/SNRMusicKitMac/SNRMusicKitMac.h -------------------------------------------------------------------------------- /SNRMusicKitMac/SNRMusicKitMac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/SNRMusicKitMac/SNRMusicKitMac.m -------------------------------------------------------------------------------- /SNRMusicKitMac/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SNRMusicKitiOS/SNRMusicKitiOS-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/SNRMusicKitiOS/SNRMusicKitiOS-Prefix.pch -------------------------------------------------------------------------------- /SNRMusicKitiOS/SNRMusicKitiOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/SNRMusicKit/HEAD/SNRMusicKitiOS/SNRMusicKitiOS.h --------------------------------------------------------------------------------