├── .gitignore ├── FMLib ├── FMBase62Decoder.h ├── FMBase62Decoder.m ├── FMGLUtils.h ├── FMGLUtils.m ├── FMLib-Prefix.pch ├── FMLucidaClient.h ├── FMLucidaClient.m ├── FMLucidaParser.h ├── FMLucidaParser.m ├── FMLucidaParserDelegate.h ├── FMLucidaParserDelegate.m ├── FMMutableURLQueryDictionary.h ├── FMMutableURLQueryDictionary.m ├── FMSpotifyAPIParser.h ├── FMSpotifyAPIParser.m ├── FMSpotifyAlbum.h ├── FMSpotifyAlbum.m ├── FMSpotifyContinuableArray.h ├── FMSpotifyContinuableArray.m ├── FMSpotifyPlaylist.h ├── FMSpotifyPlaylist.m ├── FMSpotifyPlaylistArray.h ├── FMSpotifyPlaylistArray.m ├── FMSpotifyToken.h ├── FMSpotifyToken.m ├── FMSpotifyTrack.h ├── FMSpotifyTrack.m ├── FMSpotifyTrackArray.h ├── FMSpotifyTrackArray.m ├── FMTouch.h ├── FMTrackStore.h ├── FMTrackStore.m ├── FMURLConnection.h ├── FMURLConnection.m ├── FMURLConnectionDelegate.h ├── FMURLConnectionDelegate.m ├── FMWaveForm.h ├── FMWaveForm.m ├── FMYouTubeAPIParser.h ├── FMYouTubeAPIParser.m ├── FMYouTubeChannel.h ├── FMYouTubeChannel.m ├── FMYouTubeClient.h ├── FMYouTubeClient.m ├── FMYouTubeContinuation.h ├── FMYouTubeContinuation.m ├── FMYouTubePlaybackTracker.h ├── FMYouTubePlaybackTracker.m ├── FMYouTubeProfile.h ├── FMYouTubeProfile.m ├── FMYouTubeVideo.h ├── FMYouTubeVideo.m ├── FMYouTubeVideoFormat.h └── FMYouTubeVideoFormat.m ├── FMLibTests ├── FMLibTests-Info.plist ├── FMLibTests.h ├── FMLibTests.m └── en.lproj │ └── InfoPlist.strings ├── FMSocketRocket ├── SRWebSocket.h ├── SRWebSocket.m ├── base64.c └── base64.h ├── FMSpotifyLoginViewController.h ├── FMSpotifyLoginViewController.m ├── FoxMusic.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── Lasse.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── Lasse.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ ├── FMKit.xcscheme │ ├── FMLib.xcscheme │ ├── FoxMusic.xcscheme │ ├── FoxMusicLegacy.xcscheme │ └── xcschememanagement.plist ├── FoxMusic ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── DigiCert_Global_G2_TLS_RSA_SHA256_2020_CA1.pem ├── DigiCert_Global_Root_G2.pem ├── FMAlertDelegate.h ├── FMAlertDelegate.m ├── FMAppDelegate.h ├── FMAppDelegate.m ├── FMAudioPlayerViewController.h ├── FMAudioPlayerViewController.m ├── FMBarVisualizerViewController.h ├── FMBarVisualizerViewController.m ├── FMDeviceAuthorizationInfo.h ├── FMDeviceAuthorizationInfo.m ├── FMFirstViewController.h ├── FMFirstViewController.m ├── FMHTTPServer.h ├── FMHTTPServer.m ├── FMHistoryViewController.h ├── FMHistoryViewController.m ├── FMIndeterminableButton.h ├── FMIndeterminableButton.m ├── FMMutableURLQueryDictionary.h ├── FMMutableURLQueryDictionary.m ├── FMNavigationController.h ├── FMNavigationController.m ├── FMPageViewController.h ├── FMPageViewController.m ├── FMSearchResultTableViewController.h ├── FMSearchResultTableViewController.m ├── FMSearchViewController.h ├── FMSearchViewController.m ├── FMSecondViewController.h ├── FMSecondViewController.m ├── FMSpotifyClient.h ├── FMSpotifyClient.m ├── FMSpotifyLoginLoadingViewController.h ├── FMSpotifyLoginLoadingViewController.m ├── FMSpotifyLoginPageViewController.h ├── FMSpotifyLoginPageViewController.m ├── FMSpotifyNavigationController.h ├── FMSpotifyNavigationController.m ├── FMSpotifyPlaylistTableViewController.h ├── FMSpotifyPlaylistTableViewController.m ├── FMSpotifyTrackTableViewController.h ├── FMSpotifyTrackTableViewController.m ├── FMSpotifyTrackViewController.h ├── FMSpotifyTrackViewController.m ├── FMTableViewController.h ├── FMTableViewController.m ├── FMURLQueryBuilder.h ├── FMURLQueryBuilder.m ├── FMVideoPlayerViewController.h ├── FMVideoPlayerViewController.m ├── FMViewController.h ├── FMViewController.m ├── FMVisualizerViewController.h ├── FMVisualizerViewController.m ├── FMWebSocket.h ├── FMWebSocket.m ├── FMWebSocketDelegate.h ├── FMWebSocketDelegate.m ├── FMYouTubeMusicCollectionViewCell.h ├── FMYouTubeMusicCollectionViewCell.m ├── FMYouTubeMusicCollectionViewController.h ├── FMYouTubeMusicCollectionViewController.m ├── FoxMusic-Info.plist ├── FoxMusic-Prefix.pch ├── FragmentShader.glsl ├── VertexShader.glsl ├── en.lproj │ ├── InfoPlist.strings │ ├── MainStoryboard_iPad.storyboard │ └── MainStoryboard_iPhone.storyboard ├── first.png ├── first@2x.png ├── main.m ├── second.png ├── second@2x.png ├── spotify.png ├── spotify@2x.png ├── spotifyold.png └── spotifyold@2x.png ├── FoxMusicDesktop ├── BasicVertexShader.vs ├── FMDAppDelegate.h ├── FMDAppDelegate.m ├── FMDOpenGLVisualizerView.h ├── FMDOpenGLVisualizerView.m ├── FMDTrackTableItem.h ├── FMDTrackTableItem.m ├── FMDTrackTableView.h ├── FMDTrackTableView.m ├── FMDTrackTableViewController.h ├── FMDTrackTableViewController.m ├── FMDTrackTableViewDelegate.h ├── FMDTrackTableViewDelegate.m ├── FMTrack.h ├── FMTrack.m ├── FoxMusicDesktop-Info.plist ├── FoxMusicDesktop-Prefix.pch ├── FragmentShader.fs ├── VertexShader.vs ├── YellowFragmentShader.fs ├── en.lproj │ ├── Credits.rtf │ ├── InfoPlist.strings │ └── MainMenu.xib └── main.m ├── FoxMusicLegacy ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── FMAppDelegate.h ├── FMAppDelegate.m ├── FMViewController.h ├── FMViewController.m ├── FMViewController_iPad.xib ├── FMViewController_iPhone.xib ├── FoxMusicLegacy-Info.plist ├── FoxMusicLegacy-Prefix.pch ├── MainView.xib ├── en.lproj │ └── InfoPlist.strings └── main.m ├── FoxMusicLegacyTests ├── FMSpotifyClient.h ├── FMSpotifyClient.m ├── FMSpotifyDeviceAuthorizationInfo.h ├── FMSpotifyDeviceAuthorizationInfo.m ├── FoxMusicLegacyTests-Info.plist ├── FoxMusicLegacyTests.h ├── FoxMusicLegacyTests.m └── en.lproj │ └── InfoPlist.strings ├── FoxMusicTests ├── FoxMusicTests-Info.plist ├── FoxMusicTests.h ├── FoxMusicTests.m └── en.lproj │ └── InfoPlist.strings ├── README.md ├── foxmusic.png ├── foxmusic@2x.png ├── foxmusicipad.png └── foxmusicipad@2x.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/.gitignore -------------------------------------------------------------------------------- /FMLib/FMBase62Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMBase62Decoder.h -------------------------------------------------------------------------------- /FMLib/FMBase62Decoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMBase62Decoder.m -------------------------------------------------------------------------------- /FMLib/FMGLUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMGLUtils.h -------------------------------------------------------------------------------- /FMLib/FMGLUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMGLUtils.m -------------------------------------------------------------------------------- /FMLib/FMLib-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMLib-Prefix.pch -------------------------------------------------------------------------------- /FMLib/FMLucidaClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMLucidaClient.h -------------------------------------------------------------------------------- /FMLib/FMLucidaClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMLucidaClient.m -------------------------------------------------------------------------------- /FMLib/FMLucidaParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMLucidaParser.h -------------------------------------------------------------------------------- /FMLib/FMLucidaParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMLucidaParser.m -------------------------------------------------------------------------------- /FMLib/FMLucidaParserDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMLucidaParserDelegate.h -------------------------------------------------------------------------------- /FMLib/FMLucidaParserDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMLucidaParserDelegate.m -------------------------------------------------------------------------------- /FMLib/FMMutableURLQueryDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMMutableURLQueryDictionary.h -------------------------------------------------------------------------------- /FMLib/FMMutableURLQueryDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMMutableURLQueryDictionary.m -------------------------------------------------------------------------------- /FMLib/FMSpotifyAPIParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMSpotifyAPIParser.h -------------------------------------------------------------------------------- /FMLib/FMSpotifyAPIParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMSpotifyAPIParser.m -------------------------------------------------------------------------------- /FMLib/FMSpotifyAlbum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMSpotifyAlbum.h -------------------------------------------------------------------------------- /FMLib/FMSpotifyAlbum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMSpotifyAlbum.m -------------------------------------------------------------------------------- /FMLib/FMSpotifyContinuableArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMSpotifyContinuableArray.h -------------------------------------------------------------------------------- /FMLib/FMSpotifyContinuableArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMSpotifyContinuableArray.m -------------------------------------------------------------------------------- /FMLib/FMSpotifyPlaylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMSpotifyPlaylist.h -------------------------------------------------------------------------------- /FMLib/FMSpotifyPlaylist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMSpotifyPlaylist.m -------------------------------------------------------------------------------- /FMLib/FMSpotifyPlaylistArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMSpotifyPlaylistArray.h -------------------------------------------------------------------------------- /FMLib/FMSpotifyPlaylistArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMSpotifyPlaylistArray.m -------------------------------------------------------------------------------- /FMLib/FMSpotifyToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMSpotifyToken.h -------------------------------------------------------------------------------- /FMLib/FMSpotifyToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMSpotifyToken.m -------------------------------------------------------------------------------- /FMLib/FMSpotifyTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMSpotifyTrack.h -------------------------------------------------------------------------------- /FMLib/FMSpotifyTrack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMSpotifyTrack.m -------------------------------------------------------------------------------- /FMLib/FMSpotifyTrackArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMSpotifyTrackArray.h -------------------------------------------------------------------------------- /FMLib/FMSpotifyTrackArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMSpotifyTrackArray.m -------------------------------------------------------------------------------- /FMLib/FMTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMTouch.h -------------------------------------------------------------------------------- /FMLib/FMTrackStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMTrackStore.h -------------------------------------------------------------------------------- /FMLib/FMTrackStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMTrackStore.m -------------------------------------------------------------------------------- /FMLib/FMURLConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMURLConnection.h -------------------------------------------------------------------------------- /FMLib/FMURLConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMURLConnection.m -------------------------------------------------------------------------------- /FMLib/FMURLConnectionDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMURLConnectionDelegate.h -------------------------------------------------------------------------------- /FMLib/FMURLConnectionDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMURLConnectionDelegate.m -------------------------------------------------------------------------------- /FMLib/FMWaveForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMWaveForm.h -------------------------------------------------------------------------------- /FMLib/FMWaveForm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMWaveForm.m -------------------------------------------------------------------------------- /FMLib/FMYouTubeAPIParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMYouTubeAPIParser.h -------------------------------------------------------------------------------- /FMLib/FMYouTubeAPIParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMYouTubeAPIParser.m -------------------------------------------------------------------------------- /FMLib/FMYouTubeChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMYouTubeChannel.h -------------------------------------------------------------------------------- /FMLib/FMYouTubeChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMYouTubeChannel.m -------------------------------------------------------------------------------- /FMLib/FMYouTubeClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMYouTubeClient.h -------------------------------------------------------------------------------- /FMLib/FMYouTubeClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMYouTubeClient.m -------------------------------------------------------------------------------- /FMLib/FMYouTubeContinuation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMYouTubeContinuation.h -------------------------------------------------------------------------------- /FMLib/FMYouTubeContinuation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMYouTubeContinuation.m -------------------------------------------------------------------------------- /FMLib/FMYouTubePlaybackTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMYouTubePlaybackTracker.h -------------------------------------------------------------------------------- /FMLib/FMYouTubePlaybackTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMYouTubePlaybackTracker.m -------------------------------------------------------------------------------- /FMLib/FMYouTubeProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMYouTubeProfile.h -------------------------------------------------------------------------------- /FMLib/FMYouTubeProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMYouTubeProfile.m -------------------------------------------------------------------------------- /FMLib/FMYouTubeVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMYouTubeVideo.h -------------------------------------------------------------------------------- /FMLib/FMYouTubeVideo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMYouTubeVideo.m -------------------------------------------------------------------------------- /FMLib/FMYouTubeVideoFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMYouTubeVideoFormat.h -------------------------------------------------------------------------------- /FMLib/FMYouTubeVideoFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLib/FMYouTubeVideoFormat.m -------------------------------------------------------------------------------- /FMLibTests/FMLibTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLibTests/FMLibTests-Info.plist -------------------------------------------------------------------------------- /FMLibTests/FMLibTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLibTests/FMLibTests.h -------------------------------------------------------------------------------- /FMLibTests/FMLibTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMLibTests/FMLibTests.m -------------------------------------------------------------------------------- /FMLibTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FMSocketRocket/SRWebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMSocketRocket/SRWebSocket.h -------------------------------------------------------------------------------- /FMSocketRocket/SRWebSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMSocketRocket/SRWebSocket.m -------------------------------------------------------------------------------- /FMSocketRocket/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMSocketRocket/base64.c -------------------------------------------------------------------------------- /FMSocketRocket/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMSocketRocket/base64.h -------------------------------------------------------------------------------- /FMSpotifyLoginViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMSpotifyLoginViewController.h -------------------------------------------------------------------------------- /FMSpotifyLoginViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FMSpotifyLoginViewController.m -------------------------------------------------------------------------------- /FoxMusic.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FoxMusic.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FoxMusic.xcodeproj/project.xcworkspace/xcuserdata/Lasse.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic.xcodeproj/project.xcworkspace/xcuserdata/Lasse.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FoxMusic.xcodeproj/project.xcworkspace/xcuserdata/Lasse.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic.xcodeproj/project.xcworkspace/xcuserdata/Lasse.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /FoxMusic.xcodeproj/xcuserdata/Lasse.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic.xcodeproj/xcuserdata/Lasse.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /FoxMusic.xcodeproj/xcuserdata/Lasse.xcuserdatad/xcschemes/FMKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic.xcodeproj/xcuserdata/Lasse.xcuserdatad/xcschemes/FMKit.xcscheme -------------------------------------------------------------------------------- /FoxMusic.xcodeproj/xcuserdata/Lasse.xcuserdatad/xcschemes/FMLib.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic.xcodeproj/xcuserdata/Lasse.xcuserdatad/xcschemes/FMLib.xcscheme -------------------------------------------------------------------------------- /FoxMusic.xcodeproj/xcuserdata/Lasse.xcuserdatad/xcschemes/FoxMusic.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic.xcodeproj/xcuserdata/Lasse.xcuserdatad/xcschemes/FoxMusic.xcscheme -------------------------------------------------------------------------------- /FoxMusic.xcodeproj/xcuserdata/Lasse.xcuserdatad/xcschemes/FoxMusicLegacy.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic.xcodeproj/xcuserdata/Lasse.xcuserdatad/xcschemes/FoxMusicLegacy.xcscheme -------------------------------------------------------------------------------- /FoxMusic.xcodeproj/xcuserdata/Lasse.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic.xcodeproj/xcuserdata/Lasse.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FoxMusic/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/Default-568h@2x.png -------------------------------------------------------------------------------- /FoxMusic/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/Default.png -------------------------------------------------------------------------------- /FoxMusic/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/Default@2x.png -------------------------------------------------------------------------------- /FoxMusic/DigiCert_Global_G2_TLS_RSA_SHA256_2020_CA1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/DigiCert_Global_G2_TLS_RSA_SHA256_2020_CA1.pem -------------------------------------------------------------------------------- /FoxMusic/DigiCert_Global_Root_G2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/DigiCert_Global_Root_G2.pem -------------------------------------------------------------------------------- /FoxMusic/FMAlertDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMAlertDelegate.h -------------------------------------------------------------------------------- /FoxMusic/FMAlertDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMAlertDelegate.m -------------------------------------------------------------------------------- /FoxMusic/FMAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMAppDelegate.h -------------------------------------------------------------------------------- /FoxMusic/FMAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMAppDelegate.m -------------------------------------------------------------------------------- /FoxMusic/FMAudioPlayerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMAudioPlayerViewController.h -------------------------------------------------------------------------------- /FoxMusic/FMAudioPlayerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMAudioPlayerViewController.m -------------------------------------------------------------------------------- /FoxMusic/FMBarVisualizerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMBarVisualizerViewController.h -------------------------------------------------------------------------------- /FoxMusic/FMBarVisualizerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMBarVisualizerViewController.m -------------------------------------------------------------------------------- /FoxMusic/FMDeviceAuthorizationInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMDeviceAuthorizationInfo.h -------------------------------------------------------------------------------- /FoxMusic/FMDeviceAuthorizationInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMDeviceAuthorizationInfo.m -------------------------------------------------------------------------------- /FoxMusic/FMFirstViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMFirstViewController.h -------------------------------------------------------------------------------- /FoxMusic/FMFirstViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMFirstViewController.m -------------------------------------------------------------------------------- /FoxMusic/FMHTTPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMHTTPServer.h -------------------------------------------------------------------------------- /FoxMusic/FMHTTPServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMHTTPServer.m -------------------------------------------------------------------------------- /FoxMusic/FMHistoryViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMHistoryViewController.h -------------------------------------------------------------------------------- /FoxMusic/FMHistoryViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMHistoryViewController.m -------------------------------------------------------------------------------- /FoxMusic/FMIndeterminableButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMIndeterminableButton.h -------------------------------------------------------------------------------- /FoxMusic/FMIndeterminableButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMIndeterminableButton.m -------------------------------------------------------------------------------- /FoxMusic/FMMutableURLQueryDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMMutableURLQueryDictionary.h -------------------------------------------------------------------------------- /FoxMusic/FMMutableURLQueryDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMMutableURLQueryDictionary.m -------------------------------------------------------------------------------- /FoxMusic/FMNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMNavigationController.h -------------------------------------------------------------------------------- /FoxMusic/FMNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMNavigationController.m -------------------------------------------------------------------------------- /FoxMusic/FMPageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMPageViewController.h -------------------------------------------------------------------------------- /FoxMusic/FMPageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMPageViewController.m -------------------------------------------------------------------------------- /FoxMusic/FMSearchResultTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMSearchResultTableViewController.h -------------------------------------------------------------------------------- /FoxMusic/FMSearchResultTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMSearchResultTableViewController.m -------------------------------------------------------------------------------- /FoxMusic/FMSearchViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMSearchViewController.h -------------------------------------------------------------------------------- /FoxMusic/FMSearchViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMSearchViewController.m -------------------------------------------------------------------------------- /FoxMusic/FMSecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMSecondViewController.h -------------------------------------------------------------------------------- /FoxMusic/FMSecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMSecondViewController.m -------------------------------------------------------------------------------- /FoxMusic/FMSpotifyClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMSpotifyClient.h -------------------------------------------------------------------------------- /FoxMusic/FMSpotifyClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMSpotifyClient.m -------------------------------------------------------------------------------- /FoxMusic/FMSpotifyLoginLoadingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMSpotifyLoginLoadingViewController.h -------------------------------------------------------------------------------- /FoxMusic/FMSpotifyLoginLoadingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMSpotifyLoginLoadingViewController.m -------------------------------------------------------------------------------- /FoxMusic/FMSpotifyLoginPageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMSpotifyLoginPageViewController.h -------------------------------------------------------------------------------- /FoxMusic/FMSpotifyLoginPageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMSpotifyLoginPageViewController.m -------------------------------------------------------------------------------- /FoxMusic/FMSpotifyNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMSpotifyNavigationController.h -------------------------------------------------------------------------------- /FoxMusic/FMSpotifyNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMSpotifyNavigationController.m -------------------------------------------------------------------------------- /FoxMusic/FMSpotifyPlaylistTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMSpotifyPlaylistTableViewController.h -------------------------------------------------------------------------------- /FoxMusic/FMSpotifyPlaylistTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMSpotifyPlaylistTableViewController.m -------------------------------------------------------------------------------- /FoxMusic/FMSpotifyTrackTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMSpotifyTrackTableViewController.h -------------------------------------------------------------------------------- /FoxMusic/FMSpotifyTrackTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMSpotifyTrackTableViewController.m -------------------------------------------------------------------------------- /FoxMusic/FMSpotifyTrackViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMSpotifyTrackViewController.h -------------------------------------------------------------------------------- /FoxMusic/FMSpotifyTrackViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMSpotifyTrackViewController.m -------------------------------------------------------------------------------- /FoxMusic/FMTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMTableViewController.h -------------------------------------------------------------------------------- /FoxMusic/FMTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMTableViewController.m -------------------------------------------------------------------------------- /FoxMusic/FMURLQueryBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMURLQueryBuilder.h -------------------------------------------------------------------------------- /FoxMusic/FMURLQueryBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMURLQueryBuilder.m -------------------------------------------------------------------------------- /FoxMusic/FMVideoPlayerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMVideoPlayerViewController.h -------------------------------------------------------------------------------- /FoxMusic/FMVideoPlayerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMVideoPlayerViewController.m -------------------------------------------------------------------------------- /FoxMusic/FMViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMViewController.h -------------------------------------------------------------------------------- /FoxMusic/FMViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMViewController.m -------------------------------------------------------------------------------- /FoxMusic/FMVisualizerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMVisualizerViewController.h -------------------------------------------------------------------------------- /FoxMusic/FMVisualizerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMVisualizerViewController.m -------------------------------------------------------------------------------- /FoxMusic/FMWebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMWebSocket.h -------------------------------------------------------------------------------- /FoxMusic/FMWebSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMWebSocket.m -------------------------------------------------------------------------------- /FoxMusic/FMWebSocketDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMWebSocketDelegate.h -------------------------------------------------------------------------------- /FoxMusic/FMWebSocketDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMWebSocketDelegate.m -------------------------------------------------------------------------------- /FoxMusic/FMYouTubeMusicCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMYouTubeMusicCollectionViewCell.h -------------------------------------------------------------------------------- /FoxMusic/FMYouTubeMusicCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMYouTubeMusicCollectionViewCell.m -------------------------------------------------------------------------------- /FoxMusic/FMYouTubeMusicCollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMYouTubeMusicCollectionViewController.h -------------------------------------------------------------------------------- /FoxMusic/FMYouTubeMusicCollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FMYouTubeMusicCollectionViewController.m -------------------------------------------------------------------------------- /FoxMusic/FoxMusic-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FoxMusic-Info.plist -------------------------------------------------------------------------------- /FoxMusic/FoxMusic-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FoxMusic-Prefix.pch -------------------------------------------------------------------------------- /FoxMusic/FragmentShader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/FragmentShader.glsl -------------------------------------------------------------------------------- /FoxMusic/VertexShader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/VertexShader.glsl -------------------------------------------------------------------------------- /FoxMusic/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FoxMusic/en.lproj/MainStoryboard_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/en.lproj/MainStoryboard_iPad.storyboard -------------------------------------------------------------------------------- /FoxMusic/en.lproj/MainStoryboard_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/en.lproj/MainStoryboard_iPhone.storyboard -------------------------------------------------------------------------------- /FoxMusic/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/first.png -------------------------------------------------------------------------------- /FoxMusic/first@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/first@2x.png -------------------------------------------------------------------------------- /FoxMusic/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/main.m -------------------------------------------------------------------------------- /FoxMusic/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/second.png -------------------------------------------------------------------------------- /FoxMusic/second@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/second@2x.png -------------------------------------------------------------------------------- /FoxMusic/spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/spotify.png -------------------------------------------------------------------------------- /FoxMusic/spotify@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/spotify@2x.png -------------------------------------------------------------------------------- /FoxMusic/spotifyold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/spotifyold.png -------------------------------------------------------------------------------- /FoxMusic/spotifyold@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusic/spotifyold@2x.png -------------------------------------------------------------------------------- /FoxMusicDesktop/BasicVertexShader.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/BasicVertexShader.vs -------------------------------------------------------------------------------- /FoxMusicDesktop/FMDAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/FMDAppDelegate.h -------------------------------------------------------------------------------- /FoxMusicDesktop/FMDAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/FMDAppDelegate.m -------------------------------------------------------------------------------- /FoxMusicDesktop/FMDOpenGLVisualizerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/FMDOpenGLVisualizerView.h -------------------------------------------------------------------------------- /FoxMusicDesktop/FMDOpenGLVisualizerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/FMDOpenGLVisualizerView.m -------------------------------------------------------------------------------- /FoxMusicDesktop/FMDTrackTableItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/FMDTrackTableItem.h -------------------------------------------------------------------------------- /FoxMusicDesktop/FMDTrackTableItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/FMDTrackTableItem.m -------------------------------------------------------------------------------- /FoxMusicDesktop/FMDTrackTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/FMDTrackTableView.h -------------------------------------------------------------------------------- /FoxMusicDesktop/FMDTrackTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/FMDTrackTableView.m -------------------------------------------------------------------------------- /FoxMusicDesktop/FMDTrackTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/FMDTrackTableViewController.h -------------------------------------------------------------------------------- /FoxMusicDesktop/FMDTrackTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/FMDTrackTableViewController.m -------------------------------------------------------------------------------- /FoxMusicDesktop/FMDTrackTableViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/FMDTrackTableViewDelegate.h -------------------------------------------------------------------------------- /FoxMusicDesktop/FMDTrackTableViewDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/FMDTrackTableViewDelegate.m -------------------------------------------------------------------------------- /FoxMusicDesktop/FMTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/FMTrack.h -------------------------------------------------------------------------------- /FoxMusicDesktop/FMTrack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/FMTrack.m -------------------------------------------------------------------------------- /FoxMusicDesktop/FoxMusicDesktop-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/FoxMusicDesktop-Info.plist -------------------------------------------------------------------------------- /FoxMusicDesktop/FoxMusicDesktop-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/FoxMusicDesktop-Prefix.pch -------------------------------------------------------------------------------- /FoxMusicDesktop/FragmentShader.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/FragmentShader.fs -------------------------------------------------------------------------------- /FoxMusicDesktop/VertexShader.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/VertexShader.vs -------------------------------------------------------------------------------- /FoxMusicDesktop/YellowFragmentShader.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/YellowFragmentShader.fs -------------------------------------------------------------------------------- /FoxMusicDesktop/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /FoxMusicDesktop/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FoxMusicDesktop/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /FoxMusicDesktop/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicDesktop/main.m -------------------------------------------------------------------------------- /FoxMusicLegacy/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicLegacy/Default-568h@2x.png -------------------------------------------------------------------------------- /FoxMusicLegacy/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicLegacy/Default.png -------------------------------------------------------------------------------- /FoxMusicLegacy/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicLegacy/Default@2x.png -------------------------------------------------------------------------------- /FoxMusicLegacy/FMAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicLegacy/FMAppDelegate.h -------------------------------------------------------------------------------- /FoxMusicLegacy/FMAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicLegacy/FMAppDelegate.m -------------------------------------------------------------------------------- /FoxMusicLegacy/FMViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicLegacy/FMViewController.h -------------------------------------------------------------------------------- /FoxMusicLegacy/FMViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicLegacy/FMViewController.m -------------------------------------------------------------------------------- /FoxMusicLegacy/FMViewController_iPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicLegacy/FMViewController_iPad.xib -------------------------------------------------------------------------------- /FoxMusicLegacy/FMViewController_iPhone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicLegacy/FMViewController_iPhone.xib -------------------------------------------------------------------------------- /FoxMusicLegacy/FoxMusicLegacy-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicLegacy/FoxMusicLegacy-Info.plist -------------------------------------------------------------------------------- /FoxMusicLegacy/FoxMusicLegacy-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicLegacy/FoxMusicLegacy-Prefix.pch -------------------------------------------------------------------------------- /FoxMusicLegacy/MainView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicLegacy/MainView.xib -------------------------------------------------------------------------------- /FoxMusicLegacy/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FoxMusicLegacy/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicLegacy/main.m -------------------------------------------------------------------------------- /FoxMusicLegacyTests/FMSpotifyClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicLegacyTests/FMSpotifyClient.h -------------------------------------------------------------------------------- /FoxMusicLegacyTests/FMSpotifyClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicLegacyTests/FMSpotifyClient.m -------------------------------------------------------------------------------- /FoxMusicLegacyTests/FMSpotifyDeviceAuthorizationInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicLegacyTests/FMSpotifyDeviceAuthorizationInfo.h -------------------------------------------------------------------------------- /FoxMusicLegacyTests/FMSpotifyDeviceAuthorizationInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicLegacyTests/FMSpotifyDeviceAuthorizationInfo.m -------------------------------------------------------------------------------- /FoxMusicLegacyTests/FoxMusicLegacyTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicLegacyTests/FoxMusicLegacyTests-Info.plist -------------------------------------------------------------------------------- /FoxMusicLegacyTests/FoxMusicLegacyTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicLegacyTests/FoxMusicLegacyTests.h -------------------------------------------------------------------------------- /FoxMusicLegacyTests/FoxMusicLegacyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicLegacyTests/FoxMusicLegacyTests.m -------------------------------------------------------------------------------- /FoxMusicLegacyTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FoxMusicTests/FoxMusicTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicTests/FoxMusicTests-Info.plist -------------------------------------------------------------------------------- /FoxMusicTests/FoxMusicTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicTests/FoxMusicTests.h -------------------------------------------------------------------------------- /FoxMusicTests/FoxMusicTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/FoxMusicTests/FoxMusicTests.m -------------------------------------------------------------------------------- /FoxMusicTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/README.md -------------------------------------------------------------------------------- /foxmusic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/foxmusic.png -------------------------------------------------------------------------------- /foxmusic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/foxmusic@2x.png -------------------------------------------------------------------------------- /foxmusicipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/foxmusicipad.png -------------------------------------------------------------------------------- /foxmusicipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iemand005/FoxMusic/HEAD/foxmusicipad@2x.png --------------------------------------------------------------------------------