From 142cb1257e81956114dd32c0727e0780f4ed8533 Mon Sep 17 00:00:00 2001 From: Michael Gordeev Date: Mon, 6 Jul 2020 18:34:34 +0300 Subject: [PATCH] Temp dummy version --- FoxTube.sln | 22 -- FoxTube/App.xaml | 34 -- FoxTube/App.xaml.cs | 58 +-- FoxTube/Assets/DefaultChannelBanner.png | Bin 8004 -> 0 bytes FoxTube/Assets/DefaultVideoThumbnail.png | Bin 11213 -> 0 bytes FoxTube/Assets/Icons/Contact.png | Bin 38678 -> 0 bytes FoxTube/Assets/Templates/CardTemplate.svg | 1 - FoxTube/Classes/MenuItemsList.cs | 86 ----- FoxTube/Classes/ScrollPage.cs | 16 - FoxTube/Classes/TemplatedPage.cs | 27 -- FoxTube/Classes/ViewItemsCollection.cs | 55 --- FoxTube/Controls/AccountManager.xaml | 165 -------- FoxTube/Controls/AccountManager.xaml.cs | 130 ------- FoxTube/Controls/Cards/AdvertCard.xaml | 52 --- FoxTube/Controls/Cards/AdvertCard.xaml.cs | 63 --- FoxTube/Controls/Cards/ChannelCard.xaml | 92 ----- FoxTube/Controls/Cards/ChannelCard.xaml.cs | 14 - FoxTube/Controls/Cards/PlaylistCard.xaml | 69 ---- FoxTube/Controls/Cards/PlaylistCard.xaml.cs | 14 - FoxTube/Controls/Cards/VideoCard.xaml | 92 ----- FoxTube/Controls/Cards/VideoCard.xaml.cs | 27 -- .../Controls/Dialogs/DownloadVideoDialog.xaml | 40 -- .../Dialogs/DownloadVideoDialog.xaml.cs | 73 ---- FoxTube/Controls/Dialogs/ProOfferDialog.xaml | 67 ---- .../Controls/Dialogs/ProOfferDialog.xaml.cs | 44 --- FoxTube/Controls/DownloadListItem.xaml | 76 ---- FoxTube/Controls/DownloadListItem.xaml.cs | 14 - FoxTube/Controls/ItemsGrid.xaml | 96 ----- FoxTube/Controls/ItemsGrid.xaml.cs | 30 -- FoxTube/Controls/LoadingScreen.xaml | 50 --- FoxTube/Controls/LoadingScreen.xaml.cs | 116 ------ .../Converters/SubscriptionDataConverter.cs | 37 -- FoxTube/FoxTube.csproj | 204 +--------- FoxTube/MainPage.xaml | 104 ----- FoxTube/MainPage.xaml.cs | 197 ---------- FoxTube/Navigation.cs | 45 --- FoxTube/Package.appxmanifest | 15 +- .../NavigationViewTemplate.xaml | 342 ---------------- FoxTube/SplashScreen.xaml | 12 +- FoxTube/SplashScreen.xaml.cs | 61 +-- FoxTube/Views/ChannelView.xaml | 14 - FoxTube/Views/ChannelView.xaml.cs | 30 -- FoxTube/Views/DownloadsView.xaml | 365 ------------------ FoxTube/Views/DownloadsView.xaml.cs | 114 ------ FoxTube/Views/HistoryView.xaml | 14 - FoxTube/Views/HistoryView.xaml.cs | 30 -- FoxTube/Views/HomeSections/Recommended.xaml | 17 - .../Views/HomeSections/Recommended.xaml.cs | 37 -- FoxTube/Views/HomeSections/Subscriptions.xaml | 20 - .../Views/HomeSections/Subscriptions.xaml.cs | 38 -- FoxTube/Views/HomeSections/TrendingView.xaml | 17 - .../Views/HomeSections/TrendingView.xaml.cs | 62 --- FoxTube/Views/HomeView.xaml | 22 -- FoxTube/Views/HomeView.xaml.cs | 28 -- FoxTube/Views/PlaylistView.xaml | 14 - FoxTube/Views/PlaylistView.xaml.cs | 30 -- FoxTube/Views/SearchView.xaml | 100 ----- FoxTube/Views/SearchView.xaml.cs | 45 --- .../Views/SettingsSections/AboutSection.xaml | 71 ---- .../SettingsSections/AboutSection.xaml.cs | 27 -- .../Views/SettingsSections/InboxSection.xaml | 100 ----- .../SettingsSections/InboxSection.xaml.cs | 52 --- .../SettingsSections/PreferencesSection.xaml | 61 --- .../PreferencesSection.xaml.cs | 93 ----- FoxTube/Views/SettingsView.xaml | 21 - FoxTube/Views/SettingsView.xaml.cs | 42 -- FoxTube/Views/SubscriptionsView.xaml | 81 ---- FoxTube/Views/SubscriptionsView.xaml.cs | 58 --- Src/PosterLogo.psd | Bin 929143 -> 2401763 bytes 69 files changed, 39 insertions(+), 4204 deletions(-) delete mode 100644 FoxTube/Assets/DefaultChannelBanner.png delete mode 100644 FoxTube/Assets/DefaultVideoThumbnail.png delete mode 100644 FoxTube/Assets/Icons/Contact.png delete mode 100644 FoxTube/Assets/Templates/CardTemplate.svg delete mode 100644 FoxTube/Classes/MenuItemsList.cs delete mode 100644 FoxTube/Classes/ScrollPage.cs delete mode 100644 FoxTube/Classes/TemplatedPage.cs delete mode 100644 FoxTube/Classes/ViewItemsCollection.cs delete mode 100644 FoxTube/Controls/AccountManager.xaml delete mode 100644 FoxTube/Controls/AccountManager.xaml.cs delete mode 100644 FoxTube/Controls/Cards/AdvertCard.xaml delete mode 100644 FoxTube/Controls/Cards/AdvertCard.xaml.cs delete mode 100644 FoxTube/Controls/Cards/ChannelCard.xaml delete mode 100644 FoxTube/Controls/Cards/ChannelCard.xaml.cs delete mode 100644 FoxTube/Controls/Cards/PlaylistCard.xaml delete mode 100644 FoxTube/Controls/Cards/PlaylistCard.xaml.cs delete mode 100644 FoxTube/Controls/Cards/VideoCard.xaml delete mode 100644 FoxTube/Controls/Cards/VideoCard.xaml.cs delete mode 100644 FoxTube/Controls/Dialogs/DownloadVideoDialog.xaml delete mode 100644 FoxTube/Controls/Dialogs/DownloadVideoDialog.xaml.cs delete mode 100644 FoxTube/Controls/Dialogs/ProOfferDialog.xaml delete mode 100644 FoxTube/Controls/Dialogs/ProOfferDialog.xaml.cs delete mode 100644 FoxTube/Controls/DownloadListItem.xaml delete mode 100644 FoxTube/Controls/DownloadListItem.xaml.cs delete mode 100644 FoxTube/Controls/ItemsGrid.xaml delete mode 100644 FoxTube/Controls/ItemsGrid.xaml.cs delete mode 100644 FoxTube/Controls/LoadingScreen.xaml delete mode 100644 FoxTube/Controls/LoadingScreen.xaml.cs delete mode 100644 FoxTube/Converters/SubscriptionDataConverter.cs delete mode 100644 FoxTube/MainPage.xaml delete mode 100644 FoxTube/MainPage.xaml.cs delete mode 100644 FoxTube/Navigation.cs delete mode 100644 FoxTube/ResourceDictionaries/NavigationViewTemplate.xaml delete mode 100644 FoxTube/Views/ChannelView.xaml delete mode 100644 FoxTube/Views/ChannelView.xaml.cs delete mode 100644 FoxTube/Views/DownloadsView.xaml delete mode 100644 FoxTube/Views/DownloadsView.xaml.cs delete mode 100644 FoxTube/Views/HistoryView.xaml delete mode 100644 FoxTube/Views/HistoryView.xaml.cs delete mode 100644 FoxTube/Views/HomeSections/Recommended.xaml delete mode 100644 FoxTube/Views/HomeSections/Recommended.xaml.cs delete mode 100644 FoxTube/Views/HomeSections/Subscriptions.xaml delete mode 100644 FoxTube/Views/HomeSections/Subscriptions.xaml.cs delete mode 100644 FoxTube/Views/HomeSections/TrendingView.xaml delete mode 100644 FoxTube/Views/HomeSections/TrendingView.xaml.cs delete mode 100644 FoxTube/Views/HomeView.xaml delete mode 100644 FoxTube/Views/HomeView.xaml.cs delete mode 100644 FoxTube/Views/PlaylistView.xaml delete mode 100644 FoxTube/Views/PlaylistView.xaml.cs delete mode 100644 FoxTube/Views/SearchView.xaml delete mode 100644 FoxTube/Views/SearchView.xaml.cs delete mode 100644 FoxTube/Views/SettingsSections/AboutSection.xaml delete mode 100644 FoxTube/Views/SettingsSections/AboutSection.xaml.cs delete mode 100644 FoxTube/Views/SettingsSections/InboxSection.xaml delete mode 100644 FoxTube/Views/SettingsSections/InboxSection.xaml.cs delete mode 100644 FoxTube/Views/SettingsSections/PreferencesSection.xaml delete mode 100644 FoxTube/Views/SettingsSections/PreferencesSection.xaml.cs delete mode 100644 FoxTube/Views/SettingsView.xaml delete mode 100644 FoxTube/Views/SettingsView.xaml.cs delete mode 100644 FoxTube/Views/SubscriptionsView.xaml delete mode 100644 FoxTube/Views/SubscriptionsView.xaml.cs diff --git a/FoxTube.sln b/FoxTube.sln index 3620b6d..6e972e7 100644 --- a/FoxTube.sln +++ b/FoxTube.sln @@ -5,8 +5,6 @@ VisualStudioVersion = 16.0.28803.352 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FoxTube", "FoxTube\FoxTube.csproj", "{2597B816-7316-4D20-BA6C-D78001E89C1A}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FoxTube.Core", "FoxTube.Core\FoxTube.Core.csproj", "{29C01E10-76E7-4527-984F-B0EEF7E1AC64}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -43,26 +41,6 @@ Global {2597B816-7316-4D20-BA6C-D78001E89C1A}.Release|x86.ActiveCfg = Release|x86 {2597B816-7316-4D20-BA6C-D78001E89C1A}.Release|x86.Build.0 = Release|x86 {2597B816-7316-4D20-BA6C-D78001E89C1A}.Release|x86.Deploy.0 = Release|x86 - {29C01E10-76E7-4527-984F-B0EEF7E1AC64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {29C01E10-76E7-4527-984F-B0EEF7E1AC64}.Debug|Any CPU.Build.0 = Debug|Any CPU - {29C01E10-76E7-4527-984F-B0EEF7E1AC64}.Debug|ARM.ActiveCfg = Debug|ARM - {29C01E10-76E7-4527-984F-B0EEF7E1AC64}.Debug|ARM.Build.0 = Debug|ARM - {29C01E10-76E7-4527-984F-B0EEF7E1AC64}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {29C01E10-76E7-4527-984F-B0EEF7E1AC64}.Debug|ARM64.Build.0 = Debug|ARM64 - {29C01E10-76E7-4527-984F-B0EEF7E1AC64}.Debug|x64.ActiveCfg = Debug|x64 - {29C01E10-76E7-4527-984F-B0EEF7E1AC64}.Debug|x64.Build.0 = Debug|x64 - {29C01E10-76E7-4527-984F-B0EEF7E1AC64}.Debug|x86.ActiveCfg = Debug|x86 - {29C01E10-76E7-4527-984F-B0EEF7E1AC64}.Debug|x86.Build.0 = Debug|x86 - {29C01E10-76E7-4527-984F-B0EEF7E1AC64}.Release|Any CPU.ActiveCfg = Release|Any CPU - {29C01E10-76E7-4527-984F-B0EEF7E1AC64}.Release|Any CPU.Build.0 = Release|Any CPU - {29C01E10-76E7-4527-984F-B0EEF7E1AC64}.Release|ARM.ActiveCfg = Release|ARM - {29C01E10-76E7-4527-984F-B0EEF7E1AC64}.Release|ARM.Build.0 = Release|ARM - {29C01E10-76E7-4527-984F-B0EEF7E1AC64}.Release|ARM64.ActiveCfg = Release|ARM64 - {29C01E10-76E7-4527-984F-B0EEF7E1AC64}.Release|ARM64.Build.0 = Release|ARM64 - {29C01E10-76E7-4527-984F-B0EEF7E1AC64}.Release|x64.ActiveCfg = Release|x64 - {29C01E10-76E7-4527-984F-B0EEF7E1AC64}.Release|x64.Build.0 = Release|x64 - {29C01E10-76E7-4527-984F-B0EEF7E1AC64}.Release|x86.ActiveCfg = Release|x86 - {29C01E10-76E7-4527-984F-B0EEF7E1AC64}.Release|x86.Build.0 = Release|x86 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/FoxTube/App.xaml b/FoxTube/App.xaml index 1a5c405..8e543b3 100644 --- a/FoxTube/App.xaml +++ b/FoxTube/App.xaml @@ -7,7 +7,6 @@ - @@ -20,23 +19,6 @@ Red - Gray - Gray - DarkRed - DarkRed - - Red - Gray - DarkRed - - Gray - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -