├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md ├── SoundcloudPlayer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── StreamCloud Beta.xcscheme │ └── StreamCloud.xcscheme ├── SoundcloudPlayer.xcworkspace └── contents.xcworkspacedata ├── SoundcloudPlayer ├── AppDelegate.h ├── AppDelegate.m ├── AppleMediaKeyController.h ├── AppleMediaKeyController.m ├── ArtworkOverlayView.h ├── ArtworkOverlayView.m ├── Base.lproj │ └── MainMenu.xib ├── ClickableTableView.h ├── ClickableTableView.m ├── ClickableTextField.h ├── ClickableTextField.m ├── ConnectButtonCell.h ├── ConnectButtonCell.m ├── Images.xcassets │ ├── AppIcon Beta.appiconset │ │ ├── Contents.json │ │ ├── beta-128.png │ │ ├── beta-128@2x.png │ │ ├── beta-16.png │ │ ├── beta-16@2x.png │ │ ├── beta-256.png │ │ ├── beta-256@2x.png │ │ ├── beta-32.png │ │ ├── beta-32@2x.png │ │ ├── beta-512.png │ │ └── beta-512@2x.png │ ├── AppIcon.appiconset │ │ ├── AppIcon128.png │ │ ├── AppIcon128@2x.png │ │ ├── AppIcon16.png │ │ ├── AppIcon16@2x.png │ │ ├── AppIcon256.png │ │ ├── AppIcon256@2x.png │ │ ├── AppIcon32.png │ │ ├── AppIcon32@2x.png │ │ ├── AppIcon512.png │ │ ├── AppIcon512@2x.png │ │ └── Contents.json │ ├── icon-lastfm.imageset │ │ ├── Contents.json │ │ ├── icon-lastfm.png │ │ └── icon-lastfm@2x.png │ ├── menuBarIcon.imageset │ │ ├── Contents.json │ │ ├── menuBarIcon.png │ │ └── menuBarIcon@2x.png │ ├── menuBarIcon_active.imageset │ │ ├── Contents.json │ │ ├── menuBarIcon_active.png │ │ └── menuBarIcon_active@2x.png │ ├── plaetzchen.imageset │ │ ├── Contents.json │ │ ├── plaetzchen.png │ │ └── plaetzchen@2x.png │ └── zutrinken.imageset │ │ ├── Contents.json │ │ ├── zutrinken.png │ │ └── zutrinken@2x.png ├── IsRepostedLabelView.h ├── IsRepostedLabelView.m ├── LoadSpeakerOverlayView.h ├── LoadSpeakerOverlayView.m ├── LowerShadowView.h ├── LowerShadowView.m ├── MouseOverImageView.h ├── MouseOverImageView.m ├── NSImage+RoundedCorners.h ├── NSImage+RoundedCorners.m ├── NextButtonCell.h ├── NextButtonCell.m ├── OAuth2Client.framework │ ├── Headers │ ├── OAuth2Client │ ├── Resources │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── NSData+NXOAuth2.h │ │ │ ├── NSString+NXOAuth2.h │ │ │ ├── NSURL+NXOAuth2.h │ │ │ ├── NXOAuth2.h │ │ │ ├── NXOAuth2AccessToken.h │ │ │ ├── NXOAuth2Account.h │ │ │ ├── NXOAuth2AccountStore.h │ │ │ ├── NXOAuth2Client.h │ │ │ ├── NXOAuth2ClientDelegate.h │ │ │ ├── NXOAuth2Connection.h │ │ │ ├── NXOAuth2ConnectionDelegate.h │ │ │ ├── NXOAuth2Constants.h │ │ │ ├── NXOAuth2FileStreamWrapper.h │ │ │ ├── NXOAuth2PostBodyStream.h │ │ │ ├── NXOAuth2Request.h │ │ │ └── NXOAuth2TrustDelegate.h │ │ ├── OAuth2Client │ │ └── Resources │ │ │ └── Info.plist │ │ └── Current ├── PlayPauseButtonCell.h ├── PlayPauseButtonCell.m ├── PlayPauseOverlayView.h ├── PlayPauseOverlayView.m ├── PlayingIndicatorView.h ├── PlayingIndicatorView.m ├── PreviousButtonCell.h ├── PreviousButtonCell.m ├── ProgressIndicatorView.h ├── ProgressIndicatorView.m ├── ProgressSliderCell.h ├── ProgressSliderCell.m ├── ProgressSliderView.h ├── ProgressSliderView.m ├── RepeatButtonCell.h ├── RepeatButtonCell.m ├── SeperatorView.h ├── SeperatorView.m ├── SettingsViewController.h ├── SettingsViewController.m ├── SharedAudioPlayer.h ├── SharedAudioPlayer.m ├── ShuffleButtonCell.h ├── ShuffleButtonCell.m ├── SoundCloudAPI.framework │ ├── Headers │ ├── Resources │ ├── SoundCloudAPI │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── SCAPI.h │ │ │ ├── SCAccount+Private.h │ │ │ ├── SCAccount.h │ │ │ ├── SCConstants.h │ │ │ ├── SCRequest.h │ │ │ ├── SCSoundCloud+Private.h │ │ │ └── SCSoundCloud.h │ │ ├── Resources │ │ │ └── Info.plist │ │ └── SoundCloudAPI │ │ └── Current ├── SoundCloudAPIClient.h ├── SoundCloudAPIClient.m ├── SoundCloudItem.h ├── SoundCloudItem.m ├── SoundCloudPlaylist.h ├── SoundCloudPlaylist.m ├── SoundCloudTrack.h ├── SoundCloudTrack.m ├── SoundCloudUser.h ├── SoundCloudUser.m ├── SoundcloudPlayer-Info.plist ├── SoundcloudPlayer-Prefix.pch ├── SoundcloudPlayer.entitlements ├── StatusBarPlayerViewController.h ├── StatusBarPlayerViewController.m ├── StatusBarPlayerViewController.xib ├── StreamCloudApplication.h ├── StreamCloudApplication.m ├── StreamCloudStyles.h ├── StreamCloudStyles.m ├── TrackCellForPlaylistItemView.h ├── TrackCellForPlaylistItemView.m ├── TrackCellView.h ├── TrackCellView.m ├── UpperShadowView.h ├── UpperShadowView.m ├── VolumeButtonCell.h ├── VolumeButtonCell.m ├── WhiteBackgroundView.h ├── WhiteBackgroundView.m ├── en.lproj │ ├── Credits.rtf │ └── InfoPlist.strings ├── main.m └── singleton.h ├── SoundcloudPlayerTests ├── SoundcloudPlayerTests-Info.plist ├── SoundcloudPlayerTests.m └── en.lproj │ └── InfoPlist.strings ├── StreamCloud copy-Info.plist ├── streamcloud-icons.pcvd └── streamcloud_beta.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/README.md -------------------------------------------------------------------------------- /SoundcloudPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SoundcloudPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SoundcloudPlayer.xcodeproj/xcshareddata/xcschemes/StreamCloud Beta.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer.xcodeproj/xcshareddata/xcschemes/StreamCloud Beta.xcscheme -------------------------------------------------------------------------------- /SoundcloudPlayer.xcodeproj/xcshareddata/xcschemes/StreamCloud.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer.xcodeproj/xcshareddata/xcschemes/StreamCloud.xcscheme -------------------------------------------------------------------------------- /SoundcloudPlayer.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SoundcloudPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/AppDelegate.h -------------------------------------------------------------------------------- /SoundcloudPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/AppDelegate.m -------------------------------------------------------------------------------- /SoundcloudPlayer/AppleMediaKeyController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/AppleMediaKeyController.h -------------------------------------------------------------------------------- /SoundcloudPlayer/AppleMediaKeyController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/AppleMediaKeyController.m -------------------------------------------------------------------------------- /SoundcloudPlayer/ArtworkOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/ArtworkOverlayView.h -------------------------------------------------------------------------------- /SoundcloudPlayer/ArtworkOverlayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/ArtworkOverlayView.m -------------------------------------------------------------------------------- /SoundcloudPlayer/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /SoundcloudPlayer/ClickableTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/ClickableTableView.h -------------------------------------------------------------------------------- /SoundcloudPlayer/ClickableTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/ClickableTableView.m -------------------------------------------------------------------------------- /SoundcloudPlayer/ClickableTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/ClickableTextField.h -------------------------------------------------------------------------------- /SoundcloudPlayer/ClickableTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/ClickableTextField.m -------------------------------------------------------------------------------- /SoundcloudPlayer/ConnectButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/ConnectButtonCell.h -------------------------------------------------------------------------------- /SoundcloudPlayer/ConnectButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/ConnectButtonCell.m -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/Contents.json -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/beta-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/beta-128.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/beta-128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/beta-128@2x.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/beta-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/beta-16.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/beta-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/beta-16@2x.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/beta-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/beta-256.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/beta-256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/beta-256@2x.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/beta-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/beta-32.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/beta-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/beta-32@2x.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/beta-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/beta-512.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/beta-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon Beta.appiconset/beta-512@2x.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/AppIcon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/AppIcon128.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/AppIcon128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/AppIcon128@2x.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/AppIcon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/AppIcon16.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/AppIcon16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/AppIcon16@2x.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/AppIcon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/AppIcon256.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/AppIcon256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/AppIcon256@2x.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/AppIcon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/AppIcon32.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/AppIcon32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/AppIcon32@2x.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/AppIcon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/AppIcon512.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/AppIcon512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/AppIcon512@2x.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/icon-lastfm.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/icon-lastfm.imageset/Contents.json -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/icon-lastfm.imageset/icon-lastfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/icon-lastfm.imageset/icon-lastfm.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/icon-lastfm.imageset/icon-lastfm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/icon-lastfm.imageset/icon-lastfm@2x.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/menuBarIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/menuBarIcon.imageset/Contents.json -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/menuBarIcon.imageset/menuBarIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/menuBarIcon.imageset/menuBarIcon.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/menuBarIcon.imageset/menuBarIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/menuBarIcon.imageset/menuBarIcon@2x.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/menuBarIcon_active.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/menuBarIcon_active.imageset/Contents.json -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/menuBarIcon_active.imageset/menuBarIcon_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/menuBarIcon_active.imageset/menuBarIcon_active.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/menuBarIcon_active.imageset/menuBarIcon_active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/menuBarIcon_active.imageset/menuBarIcon_active@2x.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/plaetzchen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/plaetzchen.imageset/Contents.json -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/plaetzchen.imageset/plaetzchen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/plaetzchen.imageset/plaetzchen.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/plaetzchen.imageset/plaetzchen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/plaetzchen.imageset/plaetzchen@2x.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/zutrinken.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/zutrinken.imageset/Contents.json -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/zutrinken.imageset/zutrinken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/zutrinken.imageset/zutrinken.png -------------------------------------------------------------------------------- /SoundcloudPlayer/Images.xcassets/zutrinken.imageset/zutrinken@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/Images.xcassets/zutrinken.imageset/zutrinken@2x.png -------------------------------------------------------------------------------- /SoundcloudPlayer/IsRepostedLabelView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/IsRepostedLabelView.h -------------------------------------------------------------------------------- /SoundcloudPlayer/IsRepostedLabelView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/IsRepostedLabelView.m -------------------------------------------------------------------------------- /SoundcloudPlayer/LoadSpeakerOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/LoadSpeakerOverlayView.h -------------------------------------------------------------------------------- /SoundcloudPlayer/LoadSpeakerOverlayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/LoadSpeakerOverlayView.m -------------------------------------------------------------------------------- /SoundcloudPlayer/LowerShadowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/LowerShadowView.h -------------------------------------------------------------------------------- /SoundcloudPlayer/LowerShadowView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/LowerShadowView.m -------------------------------------------------------------------------------- /SoundcloudPlayer/MouseOverImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/MouseOverImageView.h -------------------------------------------------------------------------------- /SoundcloudPlayer/MouseOverImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/MouseOverImageView.m -------------------------------------------------------------------------------- /SoundcloudPlayer/NSImage+RoundedCorners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/NSImage+RoundedCorners.h -------------------------------------------------------------------------------- /SoundcloudPlayer/NSImage+RoundedCorners.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/NSImage+RoundedCorners.m -------------------------------------------------------------------------------- /SoundcloudPlayer/NextButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/NextButtonCell.h -------------------------------------------------------------------------------- /SoundcloudPlayer/NextButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/NextButtonCell.m -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/OAuth2Client: -------------------------------------------------------------------------------- 1 | Versions/Current/OAuth2Client -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NSData+NXOAuth2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NSData+NXOAuth2.h -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NSString+NXOAuth2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NSString+NXOAuth2.h -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NSURL+NXOAuth2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NSURL+NXOAuth2.h -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2.h -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2AccessToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2AccessToken.h -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2Account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2Account.h -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2AccountStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2AccountStore.h -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2Client.h -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2ClientDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2ClientDelegate.h -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2Connection.h -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2ConnectionDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2ConnectionDelegate.h -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2Constants.h -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2FileStreamWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2FileStreamWrapper.h -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2PostBodyStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2PostBodyStream.h -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2Request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2Request.h -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2TrustDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/OAuth2Client.framework/Versions/A/Headers/NXOAuth2TrustDelegate.h -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Versions/A/OAuth2Client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/OAuth2Client.framework/Versions/A/OAuth2Client -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/OAuth2Client.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /SoundcloudPlayer/OAuth2Client.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /SoundcloudPlayer/PlayPauseButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/PlayPauseButtonCell.h -------------------------------------------------------------------------------- /SoundcloudPlayer/PlayPauseButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/PlayPauseButtonCell.m -------------------------------------------------------------------------------- /SoundcloudPlayer/PlayPauseOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/PlayPauseOverlayView.h -------------------------------------------------------------------------------- /SoundcloudPlayer/PlayPauseOverlayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/PlayPauseOverlayView.m -------------------------------------------------------------------------------- /SoundcloudPlayer/PlayingIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/PlayingIndicatorView.h -------------------------------------------------------------------------------- /SoundcloudPlayer/PlayingIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/PlayingIndicatorView.m -------------------------------------------------------------------------------- /SoundcloudPlayer/PreviousButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/PreviousButtonCell.h -------------------------------------------------------------------------------- /SoundcloudPlayer/PreviousButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/PreviousButtonCell.m -------------------------------------------------------------------------------- /SoundcloudPlayer/ProgressIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/ProgressIndicatorView.h -------------------------------------------------------------------------------- /SoundcloudPlayer/ProgressIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/ProgressIndicatorView.m -------------------------------------------------------------------------------- /SoundcloudPlayer/ProgressSliderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/ProgressSliderCell.h -------------------------------------------------------------------------------- /SoundcloudPlayer/ProgressSliderCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/ProgressSliderCell.m -------------------------------------------------------------------------------- /SoundcloudPlayer/ProgressSliderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/ProgressSliderView.h -------------------------------------------------------------------------------- /SoundcloudPlayer/ProgressSliderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/ProgressSliderView.m -------------------------------------------------------------------------------- /SoundcloudPlayer/RepeatButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/RepeatButtonCell.h -------------------------------------------------------------------------------- /SoundcloudPlayer/RepeatButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/RepeatButtonCell.m -------------------------------------------------------------------------------- /SoundcloudPlayer/SeperatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SeperatorView.h -------------------------------------------------------------------------------- /SoundcloudPlayer/SeperatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SeperatorView.m -------------------------------------------------------------------------------- /SoundcloudPlayer/SettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SettingsViewController.h -------------------------------------------------------------------------------- /SoundcloudPlayer/SettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SettingsViewController.m -------------------------------------------------------------------------------- /SoundcloudPlayer/SharedAudioPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SharedAudioPlayer.h -------------------------------------------------------------------------------- /SoundcloudPlayer/SharedAudioPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SharedAudioPlayer.m -------------------------------------------------------------------------------- /SoundcloudPlayer/ShuffleButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/ShuffleButtonCell.h -------------------------------------------------------------------------------- /SoundcloudPlayer/ShuffleButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/ShuffleButtonCell.m -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudAPI.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudAPI.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudAPI.framework/SoundCloudAPI: -------------------------------------------------------------------------------- 1 | Versions/Current/SoundCloudAPI -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudAPI.framework/Versions/A/Headers/SCAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundCloudAPI.framework/Versions/A/Headers/SCAPI.h -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudAPI.framework/Versions/A/Headers/SCAccount+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundCloudAPI.framework/Versions/A/Headers/SCAccount+Private.h -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudAPI.framework/Versions/A/Headers/SCAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundCloudAPI.framework/Versions/A/Headers/SCAccount.h -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudAPI.framework/Versions/A/Headers/SCConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundCloudAPI.framework/Versions/A/Headers/SCConstants.h -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudAPI.framework/Versions/A/Headers/SCRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundCloudAPI.framework/Versions/A/Headers/SCRequest.h -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudAPI.framework/Versions/A/Headers/SCSoundCloud+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundCloudAPI.framework/Versions/A/Headers/SCSoundCloud+Private.h -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudAPI.framework/Versions/A/Headers/SCSoundCloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundCloudAPI.framework/Versions/A/Headers/SCSoundCloud.h -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudAPI.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundCloudAPI.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudAPI.framework/Versions/A/SoundCloudAPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundCloudAPI.framework/Versions/A/SoundCloudAPI -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudAPI.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundCloudAPIClient.h -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudAPIClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundCloudAPIClient.m -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundCloudItem.h -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundCloudItem.m -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudPlaylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundCloudPlaylist.h -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudPlaylist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundCloudPlaylist.m -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundCloudTrack.h -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudTrack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundCloudTrack.m -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundCloudUser.h -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundCloudUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundCloudUser.m -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundcloudPlayer-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundcloudPlayer-Info.plist -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundcloudPlayer-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundcloudPlayer-Prefix.pch -------------------------------------------------------------------------------- /SoundcloudPlayer/SoundcloudPlayer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/SoundcloudPlayer.entitlements -------------------------------------------------------------------------------- /SoundcloudPlayer/StatusBarPlayerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/StatusBarPlayerViewController.h -------------------------------------------------------------------------------- /SoundcloudPlayer/StatusBarPlayerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/StatusBarPlayerViewController.m -------------------------------------------------------------------------------- /SoundcloudPlayer/StatusBarPlayerViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/StatusBarPlayerViewController.xib -------------------------------------------------------------------------------- /SoundcloudPlayer/StreamCloudApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/StreamCloudApplication.h -------------------------------------------------------------------------------- /SoundcloudPlayer/StreamCloudApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/StreamCloudApplication.m -------------------------------------------------------------------------------- /SoundcloudPlayer/StreamCloudStyles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/StreamCloudStyles.h -------------------------------------------------------------------------------- /SoundcloudPlayer/StreamCloudStyles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/StreamCloudStyles.m -------------------------------------------------------------------------------- /SoundcloudPlayer/TrackCellForPlaylistItemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/TrackCellForPlaylistItemView.h -------------------------------------------------------------------------------- /SoundcloudPlayer/TrackCellForPlaylistItemView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/TrackCellForPlaylistItemView.m -------------------------------------------------------------------------------- /SoundcloudPlayer/TrackCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/TrackCellView.h -------------------------------------------------------------------------------- /SoundcloudPlayer/TrackCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/TrackCellView.m -------------------------------------------------------------------------------- /SoundcloudPlayer/UpperShadowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/UpperShadowView.h -------------------------------------------------------------------------------- /SoundcloudPlayer/UpperShadowView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/UpperShadowView.m -------------------------------------------------------------------------------- /SoundcloudPlayer/VolumeButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/VolumeButtonCell.h -------------------------------------------------------------------------------- /SoundcloudPlayer/VolumeButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/VolumeButtonCell.m -------------------------------------------------------------------------------- /SoundcloudPlayer/WhiteBackgroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/WhiteBackgroundView.h -------------------------------------------------------------------------------- /SoundcloudPlayer/WhiteBackgroundView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/WhiteBackgroundView.m -------------------------------------------------------------------------------- /SoundcloudPlayer/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /SoundcloudPlayer/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SoundcloudPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/main.m -------------------------------------------------------------------------------- /SoundcloudPlayer/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayer/singleton.h -------------------------------------------------------------------------------- /SoundcloudPlayerTests/SoundcloudPlayerTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayerTests/SoundcloudPlayerTests-Info.plist -------------------------------------------------------------------------------- /SoundcloudPlayerTests/SoundcloudPlayerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/SoundcloudPlayerTests/SoundcloudPlayerTests.m -------------------------------------------------------------------------------- /SoundcloudPlayerTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /StreamCloud copy-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/StreamCloud copy-Info.plist -------------------------------------------------------------------------------- /streamcloud-icons.pcvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/streamcloud-icons.pcvd -------------------------------------------------------------------------------- /streamcloud_beta.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamcloudapp/StreamCloud/HEAD/streamcloud_beta.plist --------------------------------------------------------------------------------