├── .gitattributes ├── .gitignore ├── Fooxboy.MethodsTest ├── Fooxboy.MethodsTest.csproj ├── LoggerService.cs ├── RecomendationsTest.cs └── UnitTest1.cs ├── Fooxboy.MusicX.AndroidApp ├── Activities │ ├── MainPlayerActivity.cs │ └── OfflineActivity.cs ├── Adapters │ ├── ArtistAdapter.cs │ ├── PlaylistAdapter.cs │ ├── RecommendationAdapter.cs │ └── TrackAdapter.cs ├── Assets │ └── AboutAssets.txt ├── AuthActivity.cs ├── Consts.cs ├── Converters │ ├── AlbumsConverter.cs │ ├── BlocksConverter.cs │ ├── TimeSpanConverter.cs │ └── TracksConverter.cs ├── Delegates │ └── EventHandler.cs ├── DialogFragments │ └── IncorrectLoginDialogFragment.cs ├── Fooxboy.MusicX.AndroidApp.csproj ├── Interfaces │ └── IItemClickListener.cs ├── Listeners │ └── OnScrollToBottomListener.cs ├── MainActivity.cs ├── Models │ ├── Album.cs │ ├── Artist.cs │ ├── AudioPlaylist.cs │ ├── Block.cs │ └── Track.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── drawable │ │ ├── androicon.png │ │ ├── androicon_round.png │ │ ├── androicon_smol.png │ │ ├── androidicon_pro.png │ │ ├── arrow.png │ │ ├── arrow_down.png │ │ ├── audio_menu.png │ │ ├── back_ic.png │ │ ├── button.xml │ │ ├── exit.png │ │ ├── favorites.png │ │ ├── home_menu.png │ │ ├── ic_dashboard_black_24dp.xml │ │ ├── ic_home_24dp.png │ │ ├── ic_home_black_24dp.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_notifications_black_24dp.xml │ │ ├── ic_search.png │ │ ├── ic_search_24dp.png │ │ ├── ic_settings_24dp.png │ │ ├── ic_star_24dp.png │ │ ├── latest.png │ │ ├── next_ic.png │ │ ├── now.png │ │ ├── outline_pause_black_24dp.png │ │ ├── placeholder.png │ │ ├── play.png │ │ ├── play_ic.png │ │ ├── playlist_placeholder.png │ │ ├── round_img.xml │ │ ├── search_menu.png │ │ ├── settings_menu.png │ │ ├── shadow.xml │ │ ├── skip.png │ │ ├── skip_back.png │ │ ├── splash.xml │ │ ├── star_menu.png │ │ ├── textbox.xml │ │ ├── user.png │ │ └── vk_logo.png │ ├── fragments │ │ ├── ArtistFragment.cs │ │ ├── HomeFragment.cs │ │ ├── MiniPlayerFragment.cs │ │ ├── PlaylistFragment.cs │ │ ├── RecommendationPlaylistsFragment.cs │ │ ├── RecommendationTracksFragment.cs │ │ ├── RecommendationsFragment.cs │ │ ├── SearchFragment.cs │ │ ├── SettingsFragment.cs │ │ ├── ToDoFragment.cs │ │ └── TracksFragment.cs │ ├── layout │ │ ├── IncorrectLoginDialogLayout.axml │ │ ├── PlaylistLayout.axml │ │ ├── RecommendationLayout.xml │ │ ├── TrackLayout.axml │ │ ├── activity_artist.xml │ │ ├── activity_auth.axml │ │ ├── activity_main.axml │ │ ├── activity_mainPlayer.axml │ │ ├── activity_playlist.axml │ │ ├── activity_playlists.axml │ │ ├── activity_recommendations.xml │ │ ├── activity_settings.axml │ │ ├── activity_settings.xml │ │ ├── activity_tracks.axml │ │ ├── errorActivity.axml │ │ ├── homeActivity.axml │ │ ├── offlineActivity.axml │ │ ├── player_min.axml │ │ ├── searchActivity.xml │ │ ├── todoActivity.axml │ │ ├── toolbar.xml │ │ └── twofactor_dialog.axml │ ├── menu │ │ ├── navigation.xml │ │ └── top_menus.xml │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ ├── ic_launcher_round.xml │ │ ├── icon.xml │ │ └── icon_round.xml │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml ├── Services │ ├── AuthService.cs │ ├── ImagesService.cs │ ├── MiniPlayerService.cs │ ├── MusicService.cs │ ├── PlayerService.cs │ ├── PlayingService.cs │ ├── PlaylistsService.cs │ ├── StaticContentService.cs │ └── TaskService.cs ├── SplashActivity.cs ├── TwoFactorDialogActivity.cs └── ViewHolders │ ├── PlaylistViewHolder.cs │ ├── RecommendationsViewHolder.cs │ └── TracksViewHolder.cs ├── Fooxboy.MusicX.Core ├── Api.cs ├── Discord │ └── RichPresenceDiscord.cs ├── Fooxboy.MusicX.Core.csproj ├── ILoggerService.cs ├── Interfaces │ ├── IAlbum.cs │ ├── IArtist.cs │ ├── IBlock.cs │ ├── ITrack.cs │ └── IUserInfo.cs ├── LastFM │ ├── AuthApi.cs │ ├── LastFmScrobblerApi.cs │ ├── ScrobblerApi.cs │ └── TrackHelper.cs ├── Models │ ├── Album.cs │ ├── Artist.cs │ ├── Block.cs │ ├── Music │ │ ├── ArtistInfo │ │ │ ├── ArtistVkModel.cs │ │ │ └── PhotoArtistModel.cs │ │ ├── BlockInfo │ │ │ ├── Block.cs │ │ │ ├── ResponseItem.cs │ │ │ └── SearchArtistBlockInfo.cs │ │ ├── GetPlaylistModel.cs │ │ └── Response.cs │ ├── Track.cs │ └── UserInfo.cs ├── Server │ └── Models │ │ ├── Api │ │ └── Auth │ │ │ └── Login.cs │ │ ├── Error.cs │ │ └── RootResponse.cs └── VKontakte │ ├── Auth.cs │ ├── Music │ ├── Albums.cs │ ├── Artists.cs │ ├── Blocks.cs │ ├── Catalog.cs │ ├── Converters │ │ ├── DecoderConvert.cs │ │ ├── ToIAlbumConverter.cs │ │ ├── ToIBlockConverter.cs │ │ └── ToITrackConverter.cs │ ├── MusicApi.cs │ ├── Recommendations.cs │ ├── Search.cs │ └── Tracks.cs │ ├── Users │ └── Info.cs │ ├── UsersApi.cs │ └── Vk.cs ├── Fooxboy.MusicX.Server ├── Controllers │ └── ValuesController.cs ├── ErrorsCode.txt ├── Fooxboy.MusicX.Server.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json └── appsettings.json ├── Fooxboy.MusicX.Uwp ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── BadgeLogo.scale-100.png │ ├── BadgeLogo.scale-125.png │ ├── BadgeLogo.scale-150.png │ ├── BadgeLogo.scale-200.png │ ├── BadgeLogo.scale-400.png │ ├── Icons │ │ ├── audio_black.svg │ │ ├── audio_white.svg │ │ ├── delete_black.svg │ │ ├── delete_white.svg │ │ ├── home_black.svg │ │ ├── home_white.svg │ │ ├── next_black.svg │ │ ├── next_white.svg │ │ ├── pause_black.svg │ │ ├── pause_white.svg │ │ ├── play_black.svg │ │ ├── play_white.svg │ │ ├── prev_black.svg │ │ ├── prev_white.svg │ │ ├── sad.png │ │ ├── settings_black.svg │ │ ├── settings_white.svg │ │ ├── volume_black.svg │ │ └── volume_white.svg │ ├── Images │ │ ├── logo-black.png │ │ ├── logo-white.png │ │ ├── placeholder-album.jpg │ │ ├── placeholder-artist.jpg │ │ ├── placeholder-track.jpg │ │ ├── vk-logo.png │ │ └── welcome-background1.jpg │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── LockScreenLogo.scale-200.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.backup.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png ├── Container.cs ├── ContentDialogs │ ├── AboutContentDialog.xaml │ ├── AboutContentDialog.xaml.cs │ ├── IncorrectLoginOrPasswordContentDialog.xaml │ ├── IncorrectLoginOrPasswordContentDialog.xaml.cs │ ├── SettingsContentDialog.xaml │ ├── SettingsContentDialog.xaml.cs │ ├── ThanksBuyProContentDialog.xaml │ ├── ThanksBuyProContentDialog.xaml.cs │ ├── TwoFactorAuthContentDialog.xaml │ └── TwoFactorAuthContentDialog.xaml.cs ├── Controls │ ├── BlockControl.xaml │ ├── BlockControl.xaml.cs │ ├── NotificationControl.xaml │ ├── NotificationControl.xaml.cs │ ├── PlaylistControl.xaml │ ├── PlaylistControl.xaml.cs │ ├── RepeatButton.xaml │ ├── RepeatButton.xaml.cs │ ├── TrackControl.xaml │ └── TrackControl.xaml.cs ├── Converters │ ├── AlbumConverter.cs │ ├── AudioTimeConverter.cs │ ├── BoolToVisibilityConverter.cs │ └── TrackConverter.cs ├── DataTemplates │ ├── PlaylistDataTemplate.xaml │ ├── PlaylistDataTemplate.xaml.cs │ ├── TrackDataTemplate.xaml │ └── TrackDataTemplate.xaml.cs ├── Fooxboy.MusicX.Uwp.csproj ├── LoadingCollection.cs ├── Models │ ├── Album.cs │ ├── AllPlaylistsModel.cs │ ├── ArtistParameter.cs │ ├── ConfigApp.cs │ ├── LoadingDelegate.cs │ ├── Notification.cs │ ├── NotificationDelegate.cs │ ├── NowPlayTrack.cs │ ├── PlaylistViewNavigationData.cs │ └── Track.cs ├── Package.appxmanifest ├── Properties │ ├── Annotations.cs │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── RelayCommand.cs ├── Services │ ├── AlbumLoaderService.cs │ ├── AppPrivateSettingsService.cs │ ├── ConfigService.cs │ ├── CurrentUserService.cs │ ├── DiscordService.cs │ ├── ImageCacheService.cs │ ├── InternetService.cs │ ├── LoadingService.cs │ ├── LoggerService.cs │ ├── NavigationService.cs │ ├── NotificationService.cs │ ├── PlayerService.cs │ ├── StoreService.cs │ ├── TokenService.cs │ └── TrackLoaderService.cs ├── Styles │ ├── AcrylicStyle.xaml │ ├── ButtonsStyles.xaml │ ├── ListViewStyle.xaml │ ├── ProfileImageStyles.xaml │ ├── SliderStyle.xaml │ └── TextBoxStyles.xaml ├── Themes │ ├── Dark.xaml │ └── Light.xaml ├── ViewModels │ ├── AllPlaylistsViewModel.cs │ ├── AllTracksViewModel.cs │ ├── ArtistViewModel.cs │ ├── BaseViewModel.cs │ ├── HomeViewModel.cs │ ├── LoadingViewModel.cs │ ├── LoginViewModel.cs │ ├── NavigationRootViewModel.cs │ ├── NotificationViewModel.cs │ ├── PlayerViewModel.cs │ ├── PlaylistViewModel.cs │ ├── RecommendationsViewModel.cs │ ├── SearchViewModel.cs │ └── UserInfoViewModel.cs └── Views │ ├── AllPlaylistsView.xaml │ ├── AllPlaylistsView.xaml.cs │ ├── AllTracksView.xaml │ ├── AllTracksView.xaml.cs │ ├── ArtistView.xaml │ ├── ArtistView.xaml.cs │ ├── DeveloperView.xaml │ ├── DeveloperView.xaml.cs │ ├── DownloadsView.xaml │ ├── DownloadsView.xaml.cs │ ├── ErrorPage.xaml │ ├── ErrorPage.xaml.cs │ ├── FavoriteArtistsView.xaml │ ├── FavoriteArtistsView.xaml.cs │ ├── HomeView.xaml │ ├── HomeView.xaml.cs │ ├── LoginView.xaml │ ├── LoginView.xaml.cs │ ├── NewVersionView.xaml │ ├── NewVersionView.xaml.cs │ ├── PlayerView.xaml │ ├── PlayerView.xaml.cs │ ├── PlaylistView.xaml │ ├── PlaylistView.xaml.cs │ ├── RecommendationsView.xaml │ ├── RecommendationsView.xaml.cs │ ├── RootWindow.xaml │ ├── RootWindow.xaml.cs │ ├── SearchView.xaml │ ├── SearchView.xaml.cs │ ├── WelcomeView.xaml │ └── WelcomeView.xaml.cs ├── Fooxboy.MusicX.sln ├── Fooxboy.MusicX.sln.DotSettings ├── README.md └── azure-pipelines.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/.gitignore -------------------------------------------------------------------------------- /Fooxboy.MethodsTest/Fooxboy.MethodsTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MethodsTest/Fooxboy.MethodsTest.csproj -------------------------------------------------------------------------------- /Fooxboy.MethodsTest/LoggerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MethodsTest/LoggerService.cs -------------------------------------------------------------------------------- /Fooxboy.MethodsTest/RecomendationsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MethodsTest/RecomendationsTest.cs -------------------------------------------------------------------------------- /Fooxboy.MethodsTest/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MethodsTest/UnitTest1.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Activities/MainPlayerActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Activities/MainPlayerActivity.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Activities/OfflineActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Activities/OfflineActivity.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Adapters/ArtistAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Adapters/ArtistAdapter.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Adapters/PlaylistAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Adapters/PlaylistAdapter.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Adapters/RecommendationAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Adapters/RecommendationAdapter.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Adapters/TrackAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Adapters/TrackAdapter.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/AuthActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/AuthActivity.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Consts.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Converters/AlbumsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Converters/AlbumsConverter.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Converters/BlocksConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Converters/BlocksConverter.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Converters/TimeSpanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Converters/TimeSpanConverter.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Converters/TracksConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Converters/TracksConverter.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Delegates/EventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Delegates/EventHandler.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/DialogFragments/IncorrectLoginDialogFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/DialogFragments/IncorrectLoginDialogFragment.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Fooxboy.MusicX.AndroidApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Fooxboy.MusicX.AndroidApp.csproj -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Interfaces/IItemClickListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Interfaces/IItemClickListener.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Listeners/OnScrollToBottomListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Listeners/OnScrollToBottomListener.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/MainActivity.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Models/Album.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Models/Album.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Models/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Models/Artist.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Models/AudioPlaylist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Models/AudioPlaylist.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Models/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Models/Block.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Models/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Models/Track.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/androicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/androicon.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/androicon_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/androicon_round.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/androicon_smol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/androicon_smol.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/androidicon_pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/androidicon_pro.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/arrow.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/arrow_down.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/audio_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/audio_menu.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/back_ic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/back_ic.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/button.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/exit.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/favorites.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/home_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/home_menu.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/ic_dashboard_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/ic_dashboard_black_24dp.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/ic_home_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/ic_home_24dp.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/ic_home_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/ic_home_black_24dp.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/ic_notifications_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/ic_notifications_black_24dp.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/ic_search.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/ic_search_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/ic_search_24dp.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/ic_settings_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/ic_settings_24dp.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/ic_star_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/ic_star_24dp.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/latest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/latest.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/next_ic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/next_ic.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/now.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/outline_pause_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/outline_pause_black_24dp.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/placeholder.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/play.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/play_ic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/play_ic.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/playlist_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/playlist_placeholder.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/round_img.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/round_img.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/search_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/search_menu.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/settings_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/settings_menu.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/shadow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/shadow.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/skip.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/skip_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/skip_back.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/splash.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/star_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/star_menu.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/textbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/textbox.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/user.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/drawable/vk_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/drawable/vk_logo.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/fragments/ArtistFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/fragments/ArtistFragment.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/fragments/HomeFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/fragments/HomeFragment.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/fragments/MiniPlayerFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/fragments/MiniPlayerFragment.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/fragments/PlaylistFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/fragments/PlaylistFragment.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/fragments/RecommendationPlaylistsFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/fragments/RecommendationPlaylistsFragment.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/fragments/RecommendationTracksFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/fragments/RecommendationTracksFragment.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/fragments/RecommendationsFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/fragments/RecommendationsFragment.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/fragments/SearchFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/fragments/SearchFragment.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/fragments/SettingsFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/fragments/SettingsFragment.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/fragments/ToDoFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/fragments/ToDoFragment.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/fragments/TracksFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/fragments/TracksFragment.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/IncorrectLoginDialogLayout.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/IncorrectLoginDialogLayout.axml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/PlaylistLayout.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/PlaylistLayout.axml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/RecommendationLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/RecommendationLayout.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/TrackLayout.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/TrackLayout.axml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/activity_artist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/activity_artist.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/activity_auth.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/activity_auth.axml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/activity_main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/activity_main.axml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/activity_mainPlayer.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/activity_mainPlayer.axml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/activity_playlist.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/activity_playlist.axml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/activity_playlists.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/activity_playlists.axml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/activity_recommendations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/activity_recommendations.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/activity_settings.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/activity_settings.axml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/activity_settings.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/activity_tracks.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/activity_tracks.axml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/errorActivity.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/errorActivity.axml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/homeActivity.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/homeActivity.axml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/offlineActivity.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/offlineActivity.axml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/player_min.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/player_min.axml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/searchActivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/searchActivity.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/todoActivity.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/todoActivity.axml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/toolbar.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/layout/twofactor_dialog.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/layout/twofactor_dialog.axml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/menu/navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/menu/navigation.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/menu/top_menus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/menu/top_menus.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/values/colors.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/values/dimens.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/values/strings.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Resources/values/styles.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Services/AuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Services/AuthService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Services/ImagesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Services/ImagesService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Services/MiniPlayerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Services/MiniPlayerService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Services/MusicService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Services/MusicService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Services/PlayerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Services/PlayerService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Services/PlayingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Services/PlayingService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Services/PlaylistsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Services/PlaylistsService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Services/StaticContentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Services/StaticContentService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/Services/TaskService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/Services/TaskService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/SplashActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/SplashActivity.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/TwoFactorDialogActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/TwoFactorDialogActivity.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/ViewHolders/PlaylistViewHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/ViewHolders/PlaylistViewHolder.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/ViewHolders/RecommendationsViewHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/ViewHolders/RecommendationsViewHolder.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.AndroidApp/ViewHolders/TracksViewHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.AndroidApp/ViewHolders/TracksViewHolder.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Api.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Discord/RichPresenceDiscord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Discord/RichPresenceDiscord.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Fooxboy.MusicX.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Fooxboy.MusicX.Core.csproj -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/ILoggerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/ILoggerService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Interfaces/IAlbum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Interfaces/IAlbum.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Interfaces/IArtist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Interfaces/IArtist.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Interfaces/IBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Interfaces/IBlock.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Interfaces/ITrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Interfaces/ITrack.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Interfaces/IUserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Interfaces/IUserInfo.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/LastFM/AuthApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/LastFM/AuthApi.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/LastFM/LastFmScrobblerApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/LastFM/LastFmScrobblerApi.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/LastFM/ScrobblerApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/LastFM/ScrobblerApi.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/LastFM/TrackHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/LastFM/TrackHelper.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Models/Album.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Models/Album.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Models/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Models/Artist.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Models/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Models/Block.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Models/Music/ArtistInfo/ArtistVkModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Models/Music/ArtistInfo/ArtistVkModel.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Models/Music/ArtistInfo/PhotoArtistModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Models/Music/ArtistInfo/PhotoArtistModel.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Models/Music/BlockInfo/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Models/Music/BlockInfo/Block.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Models/Music/BlockInfo/ResponseItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Models/Music/BlockInfo/ResponseItem.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Models/Music/BlockInfo/SearchArtistBlockInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Models/Music/BlockInfo/SearchArtistBlockInfo.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Models/Music/GetPlaylistModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Models/Music/GetPlaylistModel.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Models/Music/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Models/Music/Response.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Models/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Models/Track.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Models/UserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Models/UserInfo.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Server/Models/Api/Auth/Login.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Server/Models/Api/Auth/Login.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Server/Models/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Server/Models/Error.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/Server/Models/RootResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/Server/Models/RootResponse.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/VKontakte/Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/VKontakte/Auth.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/VKontakte/Music/Albums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/VKontakte/Music/Albums.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/VKontakte/Music/Artists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/VKontakte/Music/Artists.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/VKontakte/Music/Blocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/VKontakte/Music/Blocks.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/VKontakte/Music/Catalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/VKontakte/Music/Catalog.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/VKontakte/Music/Converters/DecoderConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/VKontakte/Music/Converters/DecoderConvert.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/VKontakte/Music/Converters/ToIAlbumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/VKontakte/Music/Converters/ToIAlbumConverter.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/VKontakte/Music/Converters/ToIBlockConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/VKontakte/Music/Converters/ToIBlockConverter.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/VKontakte/Music/Converters/ToITrackConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/VKontakte/Music/Converters/ToITrackConverter.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/VKontakte/Music/MusicApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/VKontakte/Music/MusicApi.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/VKontakte/Music/Recommendations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/VKontakte/Music/Recommendations.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/VKontakte/Music/Search.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/VKontakte/Music/Search.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/VKontakte/Music/Tracks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/VKontakte/Music/Tracks.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/VKontakte/Users/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/VKontakte/Users/Info.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/VKontakte/UsersApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/VKontakte/UsersApi.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Core/VKontakte/Vk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Core/VKontakte/Vk.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Server/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Server/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Server/ErrorsCode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Server/ErrorsCode.txt -------------------------------------------------------------------------------- /Fooxboy.MusicX.Server/Fooxboy.MusicX.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Server/Fooxboy.MusicX.Server.csproj -------------------------------------------------------------------------------- /Fooxboy.MusicX.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Server/Program.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Server/Properties/launchSettings.json -------------------------------------------------------------------------------- /Fooxboy.MusicX.Server/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Server/Startup.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Server/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Server/appsettings.Development.json -------------------------------------------------------------------------------- /Fooxboy.MusicX.Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Server/appsettings.json -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/App.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/App.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/BadgeLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/BadgeLogo.scale-100.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/BadgeLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/BadgeLogo.scale-125.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/BadgeLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/BadgeLogo.scale-150.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/BadgeLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/BadgeLogo.scale-200.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/BadgeLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/BadgeLogo.scale-400.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Icons/audio_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Icons/audio_black.svg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Icons/audio_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Icons/audio_white.svg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Icons/delete_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Icons/delete_black.svg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Icons/delete_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Icons/delete_white.svg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Icons/home_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Icons/home_black.svg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Icons/home_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Icons/home_white.svg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Icons/next_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Icons/next_black.svg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Icons/next_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Icons/next_white.svg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Icons/pause_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Icons/pause_black.svg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Icons/pause_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Icons/pause_white.svg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Icons/play_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Icons/play_black.svg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Icons/play_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Icons/play_white.svg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Icons/prev_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Icons/prev_black.svg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Icons/prev_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Icons/prev_white.svg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Icons/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Icons/sad.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Icons/settings_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Icons/settings_black.svg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Icons/settings_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Icons/settings_white.svg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Icons/volume_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Icons/volume_black.svg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Icons/volume_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Icons/volume_white.svg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Images/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Images/logo-black.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Images/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Images/logo-white.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Images/placeholder-album.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Images/placeholder-album.jpg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Images/placeholder-artist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Images/placeholder-artist.jpg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Images/placeholder-track.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Images/placeholder-track.jpg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Images/vk-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Images/vk-logo.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Images/welcome-background1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Images/welcome-background1.jpg -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Container.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ContentDialogs/AboutContentDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ContentDialogs/AboutContentDialog.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ContentDialogs/AboutContentDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ContentDialogs/AboutContentDialog.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ContentDialogs/IncorrectLoginOrPasswordContentDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ContentDialogs/IncorrectLoginOrPasswordContentDialog.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ContentDialogs/IncorrectLoginOrPasswordContentDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ContentDialogs/IncorrectLoginOrPasswordContentDialog.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ContentDialogs/SettingsContentDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ContentDialogs/SettingsContentDialog.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ContentDialogs/SettingsContentDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ContentDialogs/SettingsContentDialog.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ContentDialogs/ThanksBuyProContentDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ContentDialogs/ThanksBuyProContentDialog.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ContentDialogs/ThanksBuyProContentDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ContentDialogs/ThanksBuyProContentDialog.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ContentDialogs/TwoFactorAuthContentDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ContentDialogs/TwoFactorAuthContentDialog.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ContentDialogs/TwoFactorAuthContentDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ContentDialogs/TwoFactorAuthContentDialog.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Controls/BlockControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Controls/BlockControl.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Controls/BlockControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Controls/BlockControl.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Controls/NotificationControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Controls/NotificationControl.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Controls/NotificationControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Controls/NotificationControl.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Controls/PlaylistControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Controls/PlaylistControl.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Controls/PlaylistControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Controls/PlaylistControl.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Controls/RepeatButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Controls/RepeatButton.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Controls/RepeatButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Controls/RepeatButton.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Controls/TrackControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Controls/TrackControl.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Controls/TrackControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Controls/TrackControl.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Converters/AlbumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Converters/AlbumConverter.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Converters/AudioTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Converters/AudioTimeConverter.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Converters/BoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Converters/BoolToVisibilityConverter.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Converters/TrackConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Converters/TrackConverter.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/DataTemplates/PlaylistDataTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/DataTemplates/PlaylistDataTemplate.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/DataTemplates/PlaylistDataTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/DataTemplates/PlaylistDataTemplate.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/DataTemplates/TrackDataTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/DataTemplates/TrackDataTemplate.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/DataTemplates/TrackDataTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/DataTemplates/TrackDataTemplate.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Fooxboy.MusicX.Uwp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Fooxboy.MusicX.Uwp.csproj -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/LoadingCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/LoadingCollection.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Models/Album.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Models/Album.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Models/AllPlaylistsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Models/AllPlaylistsModel.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Models/ArtistParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Models/ArtistParameter.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Models/ConfigApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Models/ConfigApp.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Models/LoadingDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Models/LoadingDelegate.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Models/Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Models/Notification.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Models/NotificationDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Models/NotificationDelegate.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Models/NowPlayTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Models/NowPlayTrack.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Models/PlaylistViewNavigationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Models/PlaylistViewNavigationData.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Models/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Models/Track.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Package.appxmanifest -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Properties/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Properties/Annotations.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/RelayCommand.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Services/AlbumLoaderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Services/AlbumLoaderService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Services/AppPrivateSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Services/AppPrivateSettingsService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Services/ConfigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Services/ConfigService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Services/CurrentUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Services/CurrentUserService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Services/DiscordService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Services/DiscordService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Services/ImageCacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Services/ImageCacheService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Services/InternetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Services/InternetService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Services/LoadingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Services/LoadingService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Services/LoggerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Services/LoggerService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Services/NavigationService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Services/NotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Services/NotificationService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Services/PlayerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Services/PlayerService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Services/StoreService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Services/StoreService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Services/TokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Services/TokenService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Services/TrackLoaderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Services/TrackLoaderService.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Styles/AcrylicStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Styles/AcrylicStyle.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Styles/ButtonsStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Styles/ButtonsStyles.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Styles/ListViewStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Styles/ListViewStyle.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Styles/ProfileImageStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Styles/ProfileImageStyles.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Styles/SliderStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Styles/SliderStyle.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Styles/TextBoxStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Styles/TextBoxStyles.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Themes/Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Themes/Dark.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Themes/Light.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Themes/Light.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ViewModels/AllPlaylistsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ViewModels/AllPlaylistsViewModel.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ViewModels/AllTracksViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ViewModels/AllTracksViewModel.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ViewModels/ArtistViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ViewModels/ArtistViewModel.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ViewModels/HomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ViewModels/HomeViewModel.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ViewModels/LoadingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ViewModels/LoadingViewModel.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ViewModels/NavigationRootViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ViewModels/NavigationRootViewModel.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ViewModels/NotificationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ViewModels/NotificationViewModel.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ViewModels/PlayerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ViewModels/PlayerViewModel.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ViewModels/PlaylistViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ViewModels/PlaylistViewModel.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ViewModels/RecommendationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ViewModels/RecommendationsViewModel.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ViewModels/SearchViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ViewModels/SearchViewModel.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/ViewModels/UserInfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/ViewModels/UserInfoViewModel.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/AllPlaylistsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/AllPlaylistsView.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/AllPlaylistsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/AllPlaylistsView.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/AllTracksView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/AllTracksView.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/AllTracksView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/AllTracksView.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/ArtistView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/ArtistView.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/ArtistView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/ArtistView.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/DeveloperView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/DeveloperView.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/DeveloperView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/DeveloperView.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/DownloadsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/DownloadsView.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/DownloadsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/DownloadsView.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/ErrorPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/ErrorPage.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/ErrorPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/ErrorPage.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/FavoriteArtistsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/FavoriteArtistsView.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/FavoriteArtistsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/FavoriteArtistsView.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/HomeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/HomeView.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/HomeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/HomeView.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/LoginView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/LoginView.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/LoginView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/LoginView.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/NewVersionView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/NewVersionView.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/NewVersionView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/NewVersionView.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/PlayerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/PlayerView.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/PlayerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/PlayerView.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/PlaylistView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/PlaylistView.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/PlaylistView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/PlaylistView.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/RecommendationsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/RecommendationsView.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/RecommendationsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/RecommendationsView.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/RootWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/RootWindow.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/RootWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/RootWindow.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/SearchView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/SearchView.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/SearchView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/SearchView.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/WelcomeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/WelcomeView.xaml -------------------------------------------------------------------------------- /Fooxboy.MusicX.Uwp/Views/WelcomeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.Uwp/Views/WelcomeView.xaml.cs -------------------------------------------------------------------------------- /Fooxboy.MusicX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.sln -------------------------------------------------------------------------------- /Fooxboy.MusicX.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/Fooxboy.MusicX.sln.DotSettings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fooxboy/Music-X-Player/HEAD/azure-pipelines.yml --------------------------------------------------------------------------------