├── Localizations
└── Strings.es.Designer.cs
├── tools
├── NuGet
│ └── NuGet.exe
└── xpkg
│ ├── xamarin-component.exe
│ └── xamarin-component
├── MusicPlayer.iOS
├── libbass.a
├── iTunesArtwork
├── libbass_fx.a
├── iTunesArtwork@2x
├── Resources
│ ├── empty.mp3
│ ├── launchBg.png
│ ├── accentColor.png
│ ├── headphones.png
│ ├── launchBg@2x.png
│ ├── Fonts
│ │ ├── icomoon.ttf
│ │ ├── SF-UI-Text-Bold.otf
│ │ ├── SF-UI-Display-Bold.otf
│ │ ├── SF-UI-Display-Thin.otf
│ │ ├── SF-UI-Text-Heavy.otf
│ │ ├── SF-UI-Text-Italic.otf
│ │ ├── SF-UI-Text-Light.otf
│ │ ├── SF-UI-Text-Medium.otf
│ │ ├── SF-UI-Text-Regular.otf
│ │ ├── SF-UI-Display-Black.otf
│ │ ├── SF-UI-Display-Heavy.otf
│ │ ├── SF-UI-Display-Light.otf
│ │ ├── SF-UI-Display-Medium.otf
│ │ ├── SF-UI-Text-Semibold.otf
│ │ ├── SF-UI-Display-Regular.otf
│ │ ├── SF-UI-Display-Semibold.otf
│ │ ├── SF-UI-Text-BoldItalic.otf
│ │ ├── SF-UI-Text-HeavyItalic.otf
│ │ ├── SF-UI-Text-LightItalic.otf
│ │ ├── SF-UI-Text-MediumItalic.otf
│ │ ├── SF-UI-Display-Ultralight.otf
│ │ └── SF-UI-Text-SemiboldItalic.otf
│ ├── accentColor@2x.png
│ ├── headphones@2x.png
│ ├── accentColorHorizontal.png
│ ├── accentColorHorizontal@2x.png
│ ├── Media.xcassets
│ │ ├── AppIcons.appiconset
│ │ │ ├── Icon.png
│ │ │ ├── Icon-120.png
│ │ │ ├── Icon-167.png
│ │ │ ├── Icon-72.png
│ │ │ ├── Icon-76.png
│ │ │ ├── Icon@2x.png
│ │ │ ├── Icon-60@3x.png
│ │ │ ├── Icon-72@2x.png
│ │ │ ├── Icon-76@2x.png
│ │ │ ├── Icon-Small.png
│ │ │ ├── Icon-Small-50.png
│ │ │ ├── Icon-Small@2x.png
│ │ │ ├── Icon-Small@3x.png
│ │ │ ├── iTunesArtwork@2x.png
│ │ │ ├── Icon-Spotlight-iOS7.png
│ │ │ ├── Icon-Spotlight-iOS7@2x.png
│ │ │ └── Icon-iPad-Spotlight-iOS7@2x.png
│ │ └── LaunchImages.launchimage
│ │ │ ├── Default@2x.png
│ │ │ ├── Default-568h@2x.png
│ │ │ ├── Default-Portrait~ipad.png
│ │ │ ├── Default-Landscape~ipad.png
│ │ │ ├── Default-Portrait~ipad@2x.png
│ │ │ └── Default-Landscape~ipad@2x.png
│ └── SVG
│ │ ├── previous.svg
│ │ ├── next.svg
│ │ ├── close.svg
│ │ ├── airplay.svg
│ │ ├── pauseButton.svg
│ │ ├── playbackSliderThumb.svg
│ │ └── menu.svg
├── build.sh
├── SetupDev.sh
├── Entitlements.plist
├── App.iOS.cs
├── Cells
│ ├── SettingsBooleanElement.cs
│ ├── MenuHeaderElement.cs
│ ├── BaseCell.cs
│ ├── SettingsSwitch.cs
│ └── SettingsElement.cs
├── Helpers
│ ├── TableViewExtensions.cs
│ ├── Fonts.cs
│ └── UIViewExtensions.cs
├── SetupAppStore.sh
├── ApiConstants.iOS.cs
├── ViewModels
│ └── BaseViewModel.cs
├── Native
│ └── AutolockPowerWatcher.cs
├── UI
│ ├── DarkBlurView.cs
│ └── VideoView.cs
└── ViewControllers
│ ├── OnlinePlaylistViewController.cs
│ ├── BaseModelViewController.cs
│ ├── SongViewController.cs
│ ├── ArtistSongsViewController.cs
│ ├── Car
│ ├── CarGenreViewController.cs
│ ├── CarArtistViewController.cs
│ ├── CarPlaylistViewController.cs
│ └── CarSongsViewController.cs
│ └── BaseEditTableViewController.cs
├── MusicPlayer.OSX
├── libbass.dylib
├── libbass_fx.dylib
├── Resources
│ └── icon.icns
├── VideoPlaybackWindow.designer.cs
├── Views
│ ├── Cells
│ │ ├── BaseCollectionView.cs
│ │ ├── ImageCellView.cs
│ │ ├── SpinnerCell.cs
│ │ ├── BaseCell.cs
│ │ ├── MediaCollectionView.cs
│ │ ├── GenreCell.cs
│ │ ├── PlaylistCell.cs
│ │ ├── SongSearchCell.cs
│ │ ├── HeaderCell.cs
│ │ └── SongCell.cs
│ ├── ILifeCycleView.cs
│ ├── AlbumDetailViewController.designer.cs
│ ├── AlbumDetailsViewControllerController.designer.cs
│ ├── SimpleButton.cs
│ ├── RadioStationListView.cs
│ ├── GenreListView.cs
│ ├── ArtistListView.cs
│ ├── PlaylistListView.cs
│ ├── AlbumListView.cs
│ ├── PlaylistSongsListView.cs
│ └── AutoPlaylistSongsListView.cs
├── ApiConstants.Mac.cs
├── Controls
│ ├── INavigationItem.cs
│ ├── PanaramaView.cs
│ └── NSColorView.cs
├── Menu
│ ├── MenuElement.cs
│ ├── MenuImageElement.cs
│ ├── MenuSection.cs
│ └── Element.cs
├── Main.cs
├── BottomView.cs
├── ViewModels
│ └── ArtistAlbumsViewModel.cs
├── App.OSX.cs
├── Helpers
│ ├── DetatchableNSPopoover.cs
│ ├── Fonts.cs
│ └── Device.cs
├── Entitlements.plist
├── SidebarTableCellView.cs
├── Native
│ ├── PopupManager.cs
│ └── BackgroundDownloadManager.cs
├── CollectionView.cs
├── CollectionView.designer.cs
├── ViewController.designer.cs
├── BottomView.designer.cs
├── MainWindow.designer.cs
├── MainWindowView.designer.cs
├── AkavacheSqliteLinkerOverride.cs
├── ViewController.cs
├── SidebarTableCellView.designer.cs
├── VideoPlaybackWindowController.designer.cs
└── Plugins
│ └── Connectivity
│ └── ConnectionType.cs
├── MusicPlayer.Droid
├── Resources
│ ├── drawable
│ │ ├── bg.png
│ │ ├── Icon.png
│ │ ├── default_background.xml
│ │ └── fullscreen_toolbar_bg_gradient.xml
│ ├── drawable-hdpi
│ │ ├── ic_menu.png
│ │ ├── ic_star_on.png
│ │ ├── ic_by_genre.png
│ │ ├── ic_launcher.png
│ │ ├── ic_star_off.png
│ │ ├── ic_default_art.png
│ │ ├── ic_notification.png
│ │ ├── ic_launcher_white.png
│ │ ├── ic_close_black_24dp.png
│ │ ├── ic_pause_black_36dp.png
│ │ ├── ic_allmusic_black_24dp.png
│ │ ├── ic_skip_next_white_24dp.png
│ │ ├── ic_skip_next_white_48dp.png
│ │ ├── ic_equalizer1_white_36dp.png
│ │ ├── ic_equalizer2_white_36dp.png
│ │ ├── ic_equalizer3_white_36dp.png
│ │ ├── ic_play_arrow_black_36dp.png
│ │ ├── uamp_ic_pause_white_24dp.png
│ │ ├── uamp_ic_pause_white_48dp.png
│ │ ├── ic_info_outline_grey600_48dp.png
│ │ ├── ic_playlist_music_black_24dp.png
│ │ ├── ic_skip_previous_white_24dp.png
│ │ ├── ic_skip_previous_white_48dp.png
│ │ ├── uamp_ic_play_arrow_white_24dp.png
│ │ └── uamp_ic_play_arrow_white_48dp.png
│ ├── drawable-mdpi
│ │ ├── ic_menu.png
│ │ ├── ic_star_on.png
│ │ ├── ic_by_genre.png
│ │ ├── ic_launcher.png
│ │ ├── ic_star_off.png
│ │ ├── ic_default_art.png
│ │ ├── ic_notification.png
│ │ ├── ic_launcher_white.png
│ │ ├── ic_close_black_24dp.png
│ │ ├── ic_pause_black_36dp.png
│ │ ├── ic_allmusic_black_24dp.png
│ │ ├── ic_skip_next_white_24dp.png
│ │ ├── ic_skip_next_white_48dp.png
│ │ ├── ic_equalizer1_white_36dp.png
│ │ ├── ic_equalizer2_white_36dp.png
│ │ ├── ic_equalizer3_white_36dp.png
│ │ ├── ic_play_arrow_black_36dp.png
│ │ ├── uamp_ic_pause_white_24dp.png
│ │ ├── uamp_ic_pause_white_48dp.png
│ │ ├── ic_info_outline_grey600_48dp.png
│ │ ├── ic_playlist_music_black_24dp.png
│ │ ├── ic_skip_previous_white_24dp.png
│ │ ├── ic_skip_previous_white_48dp.png
│ │ ├── uamp_ic_play_arrow_white_24dp.png
│ │ └── uamp_ic_play_arrow_white_48dp.png
│ ├── drawable-xhdpi
│ │ ├── ic_menu.png
│ │ ├── banner_tv.png
│ │ ├── ic_by_genre.png
│ │ ├── ic_launcher.png
│ │ ├── ic_star_off.png
│ │ ├── ic_star_on.png
│ │ ├── ic_default_art.png
│ │ ├── ic_launcher_white.png
│ │ ├── ic_notification.png
│ │ ├── ic_close_black_24dp.png
│ │ ├── ic_pause_black_36dp.png
│ │ ├── ic_allmusic_black_24dp.png
│ │ ├── ic_equalizer1_white_36dp.png
│ │ ├── ic_equalizer2_white_36dp.png
│ │ ├── ic_equalizer3_white_36dp.png
│ │ ├── ic_play_arrow_black_36dp.png
│ │ ├── ic_skip_next_white_24dp.png
│ │ ├── ic_skip_next_white_48dp.png
│ │ ├── uamp_ic_pause_white_24dp.png
│ │ ├── uamp_ic_pause_white_48dp.png
│ │ ├── ic_skip_previous_white_24dp.png
│ │ ├── ic_skip_previous_white_48dp.png
│ │ ├── ic_info_outline_grey600_48dp.png
│ │ ├── ic_playlist_music_black_24dp.png
│ │ ├── uamp_ic_play_arrow_white_24dp.png
│ │ └── uamp_ic_play_arrow_white_48dp.png
│ ├── drawable-xxhdpi
│ │ ├── ic_menu.png
│ │ ├── ic_by_genre.png
│ │ ├── ic_launcher.png
│ │ ├── ic_star_off.png
│ │ ├── ic_star_on.png
│ │ ├── ic_default_art.png
│ │ ├── ic_notification.png
│ │ ├── ic_launcher_white.png
│ │ ├── ic_close_black_24dp.png
│ │ ├── ic_pause_black_36dp.png
│ │ ├── ic_allmusic_black_24dp.png
│ │ ├── ic_skip_next_white_24dp.png
│ │ ├── ic_skip_next_white_48dp.png
│ │ ├── ic_equalizer1_white_36dp.png
│ │ ├── ic_equalizer2_white_36dp.png
│ │ ├── ic_equalizer3_white_36dp.png
│ │ ├── ic_play_arrow_black_36dp.png
│ │ ├── uamp_ic_pause_white_24dp.png
│ │ ├── uamp_ic_pause_white_48dp.png
│ │ ├── ic_info_outline_grey600_48dp.png
│ │ ├── ic_playlist_music_black_24dp.png
│ │ ├── ic_skip_previous_white_24dp.png
│ │ ├── ic_skip_previous_white_48dp.png
│ │ ├── uamp_ic_play_arrow_white_24dp.png
│ │ └── uamp_ic_play_arrow_white_48dp.png
│ ├── drawable-xxxhdpi
│ │ ├── ic_menu.png
│ │ ├── ic_star_on.png
│ │ ├── ic_by_genre.png
│ │ ├── ic_launcher.png
│ │ ├── ic_star_off.png
│ │ ├── ic_default_art.png
│ │ ├── ic_notification.png
│ │ ├── ic_launcher_white.png
│ │ ├── ic_close_black_24dp.png
│ │ ├── ic_pause_black_36dp.png
│ │ ├── ic_allmusic_black_24dp.png
│ │ ├── ic_equalizer1_white_36dp.png
│ │ ├── ic_equalizer2_white_36dp.png
│ │ ├── ic_equalizer3_white_36dp.png
│ │ ├── ic_play_arrow_black_36dp.png
│ │ ├── ic_skip_next_white_24dp.png
│ │ ├── ic_skip_next_white_48dp.png
│ │ ├── uamp_ic_pause_white_24dp.png
│ │ ├── uamp_ic_pause_white_48dp.png
│ │ ├── ic_skip_previous_white_24dp.png
│ │ ├── ic_skip_previous_white_48dp.png
│ │ ├── ic_info_outline_grey600_48dp.png
│ │ ├── ic_playlist_music_black_24dp.png
│ │ ├── uamp_ic_play_arrow_white_24dp.png
│ │ └── uamp_ic_play_arrow_white_48dp.png
│ ├── xml
│ │ └── automotive_app_desc.xml
│ ├── values
│ │ └── ids.xml
│ ├── values-h800dp
│ │ └── dimens.xml
│ ├── animator
│ │ ├── slide_in_from_left.xml
│ │ ├── slide_in_from_right.xml
│ │ ├── slide_out_to_bottom.xml
│ │ └── slide_in_from_bottom.xml
│ └── anim
│ │ ├── fade_in.xml
│ │ └── fade_out.xml
├── UI
│ ├── Fragments
│ │ ├── INavFragment.cs
│ │ ├── BaseFragment.cs
│ │ ├── PlaylistFragment.cs
│ │ ├── AlbumsFragment.cs
│ │ └── GenresFragment.cs
│ ├── PopupManager.cs
│ ├── FullScreenPlayerActivity.cs
│ └── NowPlayingActivity.cs
├── Cells
│ ├── PlaylistSongCell.cs
│ ├── RadioStationCell.cs
│ └── SpinnerCell.cs
├── Models
│ └── MenuItem.cs
├── Helpers
│ ├── Device.cs
│ ├── DateTimeUtils.cs
│ ├── Utility.cs
│ └── SimpleAlertDialog.cs
├── ApiConstants.Droid.cs
├── AkavacheSqliteLinkerOverride.cs
├── Data
│ └── BackgroundDownloadManager.cs
├── Properties
│ └── AndroidManifest.xml
├── Assets
│ └── AboutAssets.txt
├── ViewModels
│ └── NavigationViewModel.cs
├── App.Droid.cs
└── Playback
│ ├── IPlayer.cs
│ └── MoviePlayerEqualizer.cs
├── nuget.config
├── MusicPlayer.Shared
├── Models
│ ├── iDirty.cs
│ ├── PlaylistType.cs
│ ├── MediaType.cs
│ ├── StreamQuality.cs
│ ├── RepeatMode.cs
│ ├── PlaybackState.cs
│ ├── RadioStationArtwork.cs
│ ├── Scrobbling
│ │ ├── NowPlayingEvent.cs
│ │ └── SongPlaybackEvent.cs
│ ├── UserDetails.cs
│ ├── DownloadUrlData.cs
│ ├── ServiceType.cs
│ ├── EqualizerPresetValue.cs
│ ├── ArtistArtwork.cs
│ ├── ApiModel.cs
│ ├── AlbumArtwork.cs
│ ├── AlbumIds.cs
│ ├── ArtistIds.cs
│ ├── RadioStationSeed.cs
│ ├── Artwork.cs
│ ├── OfflineClass.cs
│ ├── SongPlaybackData.cs
│ ├── TrackPosition.cs
│ └── SearchResults.cs
├── WebServer
│ ├── PathAttribute.cs
│ ├── LocalWebServer.cs
│ ├── RequestExtensions.cs
│ └── Routes
│ │ └── RouteT.cs
├── Helpers
│ ├── JsonContent.cs
│ ├── Spinner.cs
│ ├── MathExtensions.cs
│ ├── ArrayExtensions.cs
│ ├── IEnumberableExtension.cs
│ ├── StringExtensions.cs
│ ├── BaseNotify.cs
│ └── DateExtensions.cs
├── Managers
│ ├── ManagerBase.cs
│ ├── SearchManager.cs
│ └── StateManager.cs
├── Playback
│ └── IEqualizer.cs
├── ViewModels
│ ├── ArtistSongsViewModel.cs
│ ├── GenreAlbumsViewModel.cs
│ ├── ArtistAlbumsViewModel.cs
│ ├── ArtistViewModel.cs
│ ├── DownloadViewModel.cs
│ └── OnlineAlbumDetailsViewModel.cs
└── Data
│ └── ScrobbleDatabase.cs
├── Api
├── OneDrive
│ ├── Models
│ │ ├── OneDriveFile.cs
│ │ ├── OneDriveVideo.cs
│ │ ├── OneDriveFolder.cs
│ │ ├── OneDriveIdentity.cs
│ │ ├── OneDriveLink.cs
│ │ ├── OneDriveImage.cs
│ │ ├── OneDriveSpecialFolder.cs
│ │ ├── OneDriveError.cs
│ │ ├── OneDriveIdentitySet.cs
│ │ ├── OneDriveResponse.cs
│ │ └── OneDriveAudio.cs
│ └── Responses
│ │ ├── OneDriveShareResponse.cs
│ │ └── OneDriveDeltaResponse.cs
├── AmazonApi
│ ├── CloudDrive
│ │ ├── Account
│ │ │ ├── CloudDataTotals.cs
│ │ │ ├── CloudDataUsage.cs
│ │ │ ├── CloudAccountInfoResponse.cs
│ │ │ ├── CloudEndpointResponse.cs
│ │ │ ├── CloudUsageResponse.cs
│ │ │ └── CloudQuotaResponse.cs
│ │ └── Nodes
│ │ │ ├── Models
│ │ │ ├── ParentMap.cs
│ │ │ ├── ContentNodeImageProperties.cs
│ │ │ ├── ContentNodeProperties.cs
│ │ │ ├── ContentNodeVideoProperties.cs
│ │ │ └── CloudDriveStorage.cs
│ │ │ ├── Filters
│ │ │ ├── NodeOrderBy.cs
│ │ │ ├── NodeTypeFilter.cs
│ │ │ ├── ContentNameFilter.cs
│ │ │ ├── NodeFilter.cs
│ │ │ ├── DateTimeBetweenNodeFilter.cs
│ │ │ └── DateTimeNodeFilter.cs
│ │ │ ├── Requests
│ │ │ ├── CloudNodeRequests.cs
│ │ │ └── CloudChangesRequest.cs
│ │ │ └── Enums.cs
│ └── AmazonAuthenticator.cs
├── SoundCloud
│ ├── Models
│ │ ├── SUser.cs
│ │ └── SApiResponse.cs
│ ├── SoundCloudAccount.cs
│ └── SoundCloud.shproj
├── iPodApi
│ ├── iPodApi.projitems
│ └── iPodApi.shproj
├── FileSytemApi
│ ├── FileSytemApi.projitems
│ └── FileSytemApi.shproj
├── YoutubeApi
│ ├── YoutubeApi.projitems
│ └── YoutubeApi.shproj
└── gMusicApi
│ └── gMusicApi.projitems
├── Test
├── TestCloud.iOS
│ ├── Constants.cs
│ ├── packages.config
│ ├── PopupMenuTest.cs
│ ├── BaseTestFixture.cs
│ └── SearchTest.cs
└── ScreenShotTaker
│ └── packages.config
├── .gitattributes
├── mobile-center-post-clone.sh
├── MusicPlayer.Apple
├── Playback
│ └── CustomVideoLayer.cs
└── MusicPlayer.Apple.shproj
└── ApiConstants.targets
/Localizations/Strings.es.Designer.cs:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tools/NuGet/NuGet.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/tools/NuGet/NuGet.exe
--------------------------------------------------------------------------------
/MusicPlayer.iOS/libbass.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/libbass.a
--------------------------------------------------------------------------------
/MusicPlayer.OSX/libbass.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.OSX/libbass.dylib
--------------------------------------------------------------------------------
/MusicPlayer.iOS/iTunesArtwork:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/iTunesArtwork
--------------------------------------------------------------------------------
/MusicPlayer.iOS/libbass_fx.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/libbass_fx.a
--------------------------------------------------------------------------------
/MusicPlayer.OSX/libbass_fx.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.OSX/libbass_fx.dylib
--------------------------------------------------------------------------------
/MusicPlayer.iOS/iTunesArtwork@2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/iTunesArtwork@2x
--------------------------------------------------------------------------------
/tools/xpkg/xamarin-component.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/tools/xpkg/xamarin-component.exe
--------------------------------------------------------------------------------
/MusicPlayer.OSX/Resources/icon.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.OSX/Resources/icon.icns
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/empty.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/empty.mp3
--------------------------------------------------------------------------------
/tools/xpkg/xamarin-component:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | export MONO_IOMAP=all
3 | exec mono $MONO_OPTIONS xamarin-component.exe "$@"
4 |
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/launchBg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/launchBg.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/accentColor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/accentColor.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/headphones.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/headphones.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/launchBg@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/launchBg@2x.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable/bg.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/icomoon.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/icomoon.ttf
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/accentColor@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/accentColor@2x.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/headphones@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/headphones@2x.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable/Icon.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-Bold.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-Bold.otf
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/accentColorHorizontal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/accentColorHorizontal.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_menu.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_menu.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_menu.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Display-Bold.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Display-Bold.otf
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Display-Thin.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Display-Thin.otf
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-Heavy.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-Heavy.otf
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-Italic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-Italic.otf
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-Light.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-Light.otf
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-Medium.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-Medium.otf
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-Regular.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-Regular.otf
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/accentColorHorizontal@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/accentColorHorizontal@2x.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_star_on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_star_on.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_star_on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_star_on.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/banner_tv.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/banner_tv.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_menu.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_menu.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Display-Black.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Display-Black.otf
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Display-Heavy.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Display-Heavy.otf
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Display-Light.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Display-Light.otf
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Display-Medium.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Display-Medium.otf
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-Semibold.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-Semibold.otf
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_by_genre.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_by_genre.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_star_off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_star_off.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_by_genre.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_by_genre.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_star_off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_star_off.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_by_genre.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_by_genre.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_star_off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_star_off.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_star_on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_star_on.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_by_genre.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_by_genre.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_star_off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_star_off.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_star_on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_star_on.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_star_on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_star_on.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Display-Regular.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Display-Regular.otf
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Display-Semibold.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Display-Semibold.otf
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-BoldItalic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-BoldItalic.otf
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-HeavyItalic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-HeavyItalic.otf
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-LightItalic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-LightItalic.otf
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-MediumItalic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-MediumItalic.otf
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_default_art.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_default_art.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_notification.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_notification.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_default_art.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_default_art.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_notification.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_notification.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_default_art.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_default_art.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_by_genre.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_by_genre.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_star_off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_star_off.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Display-Ultralight.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Display-Ultralight.otf
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-SemiboldItalic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Fonts/SF-UI-Text-SemiboldItalic.otf
--------------------------------------------------------------------------------
/nuget.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_launcher_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_launcher_white.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_launcher_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_launcher_white.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_launcher_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_launcher_white.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_notification.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_notification.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_default_art.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_default_art.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_notification.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_notification.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_default_art.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_default_art.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_notification.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_notification.png
--------------------------------------------------------------------------------
/MusicPlayer.Shared/Models/iDirty.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace MusicPlayer.Models
4 | {
5 | public interface iDirty
6 | {
7 | bool IsDirty { get; set; }
8 | }
9 | }
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_close_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_close_black_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_pause_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_pause_black_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_close_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_close_black_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_pause_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_pause_black_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_close_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_close_black_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_pause_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_pause_black_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_launcher_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_launcher_white.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_launcher_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_launcher_white.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_allmusic_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_allmusic_black_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_skip_next_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_skip_next_white_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_skip_next_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_skip_next_white_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_allmusic_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_allmusic_black_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_skip_next_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_skip_next_white_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_skip_next_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_skip_next_white_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_allmusic_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_allmusic_black_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_close_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_close_black_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_pause_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_pause_black_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_close_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_close_black_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_pause_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_pause_black_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_equalizer1_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_equalizer1_white_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_equalizer2_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_equalizer2_white_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_equalizer3_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_equalizer3_white_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_play_arrow_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_play_arrow_black_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/uamp_ic_pause_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/uamp_ic_pause_white_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/uamp_ic_pause_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/uamp_ic_pause_white_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_equalizer1_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_equalizer1_white_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_equalizer2_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_equalizer2_white_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_equalizer3_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_equalizer3_white_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_play_arrow_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_play_arrow_black_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/uamp_ic_pause_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/uamp_ic_pause_white_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/uamp_ic_pause_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/uamp_ic_pause_white_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_equalizer1_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_equalizer1_white_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_equalizer2_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_equalizer2_white_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_equalizer3_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_equalizer3_white_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_play_arrow_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_play_arrow_black_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_skip_next_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_skip_next_white_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_skip_next_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_skip_next_white_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/uamp_ic_pause_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/uamp_ic_pause_white_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/uamp_ic_pause_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/uamp_ic_pause_white_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_allmusic_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_allmusic_black_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_skip_next_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_skip_next_white_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_skip_next_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_skip_next_white_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_allmusic_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_allmusic_black_24dp.png
--------------------------------------------------------------------------------
/Api/OneDrive/Models/OneDriveFile.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | namespace OneDrive
3 | {
4 | public class OneDriveFile
5 | {
6 | public OneDriveFile()
7 | {
8 | }
9 | }
10 | }
11 |
12 |
--------------------------------------------------------------------------------
/Api/OneDrive/Models/OneDriveVideo.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | namespace OneDrive
3 | {
4 | public class OneDriveVideo
5 | {
6 | public OneDriveVideo()
7 | {
8 | }
9 | }
10 | }
11 |
12 |
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_info_outline_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_info_outline_grey600_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_playlist_music_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_playlist_music_black_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_skip_previous_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_skip_previous_white_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/ic_skip_previous_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/ic_skip_previous_white_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_info_outline_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_info_outline_grey600_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_playlist_music_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_playlist_music_black_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_skip_previous_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_skip_previous_white_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/ic_skip_previous_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/ic_skip_previous_white_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_skip_previous_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_skip_previous_white_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_skip_previous_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_skip_previous_white_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_equalizer1_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_equalizer1_white_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_equalizer2_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_equalizer2_white_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_equalizer3_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_equalizer3_white_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_play_arrow_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_play_arrow_black_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/uamp_ic_pause_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/uamp_ic_pause_white_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/uamp_ic_pause_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/uamp_ic_pause_white_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_equalizer1_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_equalizer1_white_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_equalizer2_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_equalizer2_white_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_equalizer3_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_equalizer3_white_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_play_arrow_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_play_arrow_black_36dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_skip_next_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_skip_next_white_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_skip_next_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_skip_next_white_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/uamp_ic_pause_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/uamp_ic_pause_white_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/uamp_ic_pause_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/uamp_ic_pause_white_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-120.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-167.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-167.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-72.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-76.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon@2x.png
--------------------------------------------------------------------------------
/Api/OneDrive/Models/OneDriveFolder.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | namespace OneDrive
3 | {
4 | public class OneDriveFolder
5 | {
6 | public OneDriveFolder()
7 | {
8 | }
9 | }
10 | }
11 |
12 |
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/uamp_ic_play_arrow_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/uamp_ic_play_arrow_white_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-hdpi/uamp_ic_play_arrow_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-hdpi/uamp_ic_play_arrow_white_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/uamp_ic_play_arrow_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/uamp_ic_play_arrow_white_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-mdpi/uamp_ic_play_arrow_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-mdpi/uamp_ic_play_arrow_white_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_info_outline_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_info_outline_grey600_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_playlist_music_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/ic_playlist_music_black_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/uamp_ic_play_arrow_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/uamp_ic_play_arrow_white_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xhdpi/uamp_ic_play_arrow_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xhdpi/uamp_ic_play_arrow_white_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_info_outline_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_info_outline_grey600_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_playlist_music_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_playlist_music_black_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_skip_previous_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_skip_previous_white_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_skip_previous_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/ic_skip_previous_white_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_skip_previous_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_skip_previous_white_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_skip_previous_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_skip_previous_white_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/UI/Fragments/INavFragment.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | namespace MusicPlayer.Droid
3 | {
4 | public interface INavFragment
5 | {
6 | string PageId { get; }
7 | }
8 | }
9 |
10 |
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-60@3x.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-72@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-72@2x.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-76@2x.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-Small.png
--------------------------------------------------------------------------------
/Api/OneDrive/Models/OneDriveIdentity.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | namespace OneDrive
3 | {
4 | public class OneDriveIdentity
5 | {
6 | public OneDriveIdentity()
7 | {
8 | }
9 | }
10 | }
11 |
12 |
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/uamp_ic_play_arrow_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/uamp_ic_play_arrow_white_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxhdpi/uamp_ic_play_arrow_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxhdpi/uamp_ic_play_arrow_white_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_info_outline_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_info_outline_grey600_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_playlist_music_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/ic_playlist_music_black_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/uamp_ic_play_arrow_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/uamp_ic_play_arrow_white_24dp.png
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Resources/drawable-xxxhdpi/uamp_ic_play_arrow_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.Droid/Resources/drawable-xxxhdpi/uamp_ic_play_arrow_white_48dp.png
--------------------------------------------------------------------------------
/MusicPlayer.OSX/VideoPlaybackWindow.designer.cs:
--------------------------------------------------------------------------------
1 | namespace MusicPlayer
2 | {
3 | [global::Foundation.Register ("VideoPlaybackWindow")]
4 | public partial class VideoPlaybackWindow
5 | {
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-Small-50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-Small-50.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-Small@2x.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-Small@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-Small@3x.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/iTunesArtwork@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/iTunesArtwork@2x.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/LaunchImages.launchimage/Default@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/LaunchImages.launchimage/Default@2x.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/build.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | /usr/libexec/PlistBuddy -c "Set :CFBundleIdentifier com.IIS.MusicPlayer.iOS" Info.plist
4 | /usr/libexec/PlistBuddy -c "Set :CFBundleDisplayName gMusic Beta" Info.plist
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-Spotlight-iOS7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-Spotlight-iOS7.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/SetupDev.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | /usr/libexec/PlistBuddy -c "Set :CFBundleIdentifier com.IIS.MusicPlayer.iOS" Info.plist
4 | /usr/libexec/PlistBuddy -c "Set :CFBundleDisplayName gMusic Beta" Info.plist
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/LaunchImages.launchimage/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/LaunchImages.launchimage/Default-568h@2x.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-Spotlight-iOS7@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-Spotlight-iOS7@2x.png
--------------------------------------------------------------------------------
/MusicPlayer.OSX/Views/Cells/BaseCollectionView.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace MusicPlayer
4 | {
5 | public class BaseCollectionView
6 | {
7 | public BaseCollectionView ()
8 | {
9 | }
10 | }
11 | }
12 |
13 |
--------------------------------------------------------------------------------
/MusicPlayer.OSX/Views/ILifeCycleView.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace MusicPlayer
4 | {
5 | public interface ILifeCycleView
6 | {
7 | void ViewWillAppear();
8 | void ViewWillDissapear();
9 | }
10 | }
11 |
12 |
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/LaunchImages.launchimage/Default-Portrait~ipad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/LaunchImages.launchimage/Default-Portrait~ipad.png
--------------------------------------------------------------------------------
/Api/OneDrive/Models/OneDriveLink.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | namespace OneDrive
3 | {
4 | public class OneDriveLink
5 | {
6 | public string Type { get; set; }
7 |
8 | public string WebUrl { get; set; }
9 | }
10 | }
11 |
12 |
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-iPad-Spotlight-iOS7@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/AppIcons.appiconset/Icon-iPad-Spotlight-iOS7@2x.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/LaunchImages.launchimage/Default-Landscape~ipad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/LaunchImages.launchimage/Default-Landscape~ipad.png
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/LaunchImages.launchimage/Default-Portrait~ipad@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/LaunchImages.launchimage/Default-Portrait~ipad@2x.png
--------------------------------------------------------------------------------
/Test/TestCloud.iOS/Constants.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | namespace TestCloud.iOS
3 | {
4 | public static class Constants
5 | {
6 | public const string Username = "";
7 | public const string Password = "";
8 | }
9 | }
10 |
11 |
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Resources/Media.xcassets/LaunchImages.launchimage/Default-Landscape~ipad@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Clancey/gMusic/HEAD/MusicPlayer.iOS/Resources/Media.xcassets/LaunchImages.launchimage/Default-Landscape~ipad@2x.png
--------------------------------------------------------------------------------
/Api/AmazonApi/CloudDrive/Account/CloudDataTotals.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace Amazon.CloudDrive
4 | {
5 | public class CloudDataTotals
6 | {
7 | public long Bytes { get; set; }
8 | public long Count { get; set; }
9 | }
10 | }
--------------------------------------------------------------------------------
/MusicPlayer.OSX/Views/Cells/ImageCellView.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using AppKit;
3 |
4 | namespace MusicPlayer
5 | {
6 | public class ImageCellView : NSImageView
7 | {
8 | public ImageCellView ()
9 | {
10 | }
11 | }
12 | }
13 |
14 |
--------------------------------------------------------------------------------
/MusicPlayer.iOS/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Api/AmazonApi/CloudDrive/Nodes/Models/ParentMap.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 |
4 | namespace Amazon.CloudDrive
5 | {
6 | public class ParentMap
7 | {
8 | public List Folder { get; set; }
9 | }
10 | }
--------------------------------------------------------------------------------
/MusicPlayer.OSX/Views/Cells/SpinnerCell.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using SimpleTables.Cells;
3 |
4 | namespace MusicPlayer.Cells
5 | {
6 | public class SpinnerCell : Cell
7 | {
8 | public SpinnerCell ()
9 | {
10 | }
11 | }
12 | }
13 |
14 |
--------------------------------------------------------------------------------
/MusicPlayer.Shared/Models/PlaylistType.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace MusicPlayer.Models
6 | {
7 | public enum PlaylistType
8 | {
9 | Normal,
10 | Endless
11 | }
12 | }
--------------------------------------------------------------------------------
/Test/ScreenShotTaker/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/MusicPlayer.OSX/ApiConstants.Mac.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | namespace MusicPlayer
3 | {
4 | internal static partial class ApiConstants
5 | {
6 | internal const string InsightsApiKey = "8a4528c67333db9635ab1577bcb3cc08e1e12037";
7 | }
8 | }
9 |
10 |
--------------------------------------------------------------------------------
/MusicPlayer.Shared/Models/MediaType.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace MusicPlayer.Models
6 | {
7 | public enum MediaType
8 | {
9 | Audio,
10 | Video,
11 | Photo
12 | }
13 | }
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Cells/PlaylistSongCell.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using MusicPlayer.Droid;
3 | namespace MusicPlayer.Cells
4 | {
5 | public class PlaylistSongCell : SongCell
6 | {
7 | public PlaylistSongCell()
8 | {
9 | }
10 | }
11 | }
12 |
13 |
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Cells/RadioStationCell.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using MusicPlayer.Droid;
3 | namespace MusicPlayer.Cells
4 | {
5 | public class RadioStationCell : SongCell
6 | {
7 | public RadioStationCell()
8 | {
9 | }
10 | }
11 | }
12 |
13 |
--------------------------------------------------------------------------------
/MusicPlayer.OSX/Controls/INavigationItem.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace MusicPlayer
4 | {
5 | public interface INavigationItem
6 | {
7 | string Title {get;}
8 | NSNavigationController NavigationController {get;set;}
9 | }
10 | }
11 |
12 |
--------------------------------------------------------------------------------
/MusicPlayer.Shared/Models/StreamQuality.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace MusicPlayer.Models
6 | {
7 | public enum StreamQuality
8 | {
9 | Low,
10 | Medium,
11 | High,
12 | }
13 | }
--------------------------------------------------------------------------------
/Api/OneDrive/Models/OneDriveImage.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | namespace OneDrive
3 | {
4 | public class OneDriveImage
5 | {
6 | public int Width { get; set; }
7 | public int Height { get; set; }
8 | public string Url { get; set; }
9 | }
10 | }
11 |
12 |
--------------------------------------------------------------------------------
/Api/OneDrive/Models/OneDriveSpecialFolder.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | namespace OneDrive
3 | {
4 | public class OneDriveSpecialFolder
5 | {
6 | public OneDriveSpecialFolder()
7 | {
8 | }
9 |
10 | public string Name { get; set; }
11 | }
12 | }
13 |
14 |
--------------------------------------------------------------------------------
/Api/AmazonApi/CloudDrive/Account/CloudDataUsage.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace Amazon.CloudDrive
4 | {
5 | public class CloudDataUsage
6 | {
7 | public CloudDataTotals Total { get; set; }
8 | public CloudDataTotals Billable { get; set; }
9 | }
10 | }
--------------------------------------------------------------------------------
/Api/AmazonApi/CloudDrive/Nodes/Models/ContentNodeImageProperties.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace Amazon.CloudDrive
4 | {
5 | public class ContentNodeImageProperties
6 | {
7 | public int Width { get; set; }
8 |
9 | public int Height { get; set; }
10 | }
11 | }
--------------------------------------------------------------------------------
/MusicPlayer.OSX/Views/AlbumDetailViewController.designer.cs:
--------------------------------------------------------------------------------
1 | namespace MusicPlayer
2 | {
3 |
4 | // Should subclass AppKit.NSViewController
5 | [Foundation.Register ("AlbumDetailViewController")]
6 | public partial class AlbumDetailViewController
7 | {
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/MusicPlayer.Shared/Models/RepeatMode.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace MusicPlayer.Models
6 | {
7 | public enum RepeatMode
8 | {
9 | NoRepeat = 0,
10 | RepeatAll = 1,
11 | RepeatOne = 2,
12 | }
13 | }
--------------------------------------------------------------------------------
/Api/OneDrive/Models/OneDriveError.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | namespace OneDrive
3 | {
4 | public class OneDriveError
5 | {
6 | public string Code { get; set; }
7 | public string Message { get; set; }
8 | public OneDriveError InnerError { get; set; }
9 | }
10 | }
11 |
12 |
--------------------------------------------------------------------------------
/MusicPlayer.Droid/Models/MenuItem.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace MusicPlayer
4 | {
5 | public class MenuItem
6 | {
7 | public MenuItem ()
8 | {
9 | }
10 | public string Title { get; set;}
11 | public Action