From 521d82829d37b4ac72f3cb5109ecd09698efd6e6 Mon Sep 17 00:00:00 2001 From: Tsanie Date: Wed, 11 Aug 2021 14:09:03 +0800 Subject: [PATCH] combine projects into one --- Gallery.Share/App.cs | 11 +- Gallery.Share/AppShell.xaml | 34 ++-- Gallery.Share/AppShell.xaml.cs | 13 +- Gallery.Share/Gallery.Share.projitems | 32 ++++ Gallery.Share/Resources/Languages/zh-CN.xml | 10 ++ Gallery.Share/Resources/Theme/Theme.cs | 2 + Gallery.Share/Resources/UI/Definition.cs | 1 + .../Sources/Danbooru}/GallerySource.cs | 2 +- .../Sources/Gelbooru}/GallerySource.cs | 2 +- .../Sources/Yandere}/GallerySource.cs | 2 +- .../Sources/Yandere}/YandereItem.cs | 2 +- .../Util}/Converter.cs | 0 .../Util}/Extensions.cs | 0 .../Util}/Interface/IGallerySource.cs | 0 {Gallery.Util => Gallery.Share/Util}/Log.cs | 0 .../Util}/Model/GalleryItem.cs | 20 ++- .../Util}/NetHelper.cs | 4 +- .../Util}/ParallelTask.cs | 0 {Gallery.Util => Gallery.Share/Util}/Store.cs | 3 + Gallery.Share/Views/GalleryItemPage.xaml | 12 ++ Gallery.Share/Views/GalleryItemPage.xaml.cs | 15 ++ Gallery.Share/Views/GalleryPage.xaml | 3 +- Gallery.Share/Views/OptionPage.xaml | 38 +++++ Gallery.Share/Views/OptionPage.xaml.cs | 152 ++++++++++++++++++ Gallery.UI/OptionCells.cs | 4 +- Gallery.Util/Gallery.Util.csproj | 30 ---- Gallery.iOS/AppDelegate.cs | 2 +- Gallery.iOS/Gallery.iOS.csproj | 21 +-- Gallery.iOS/Main.cs | 2 +- Gallery.iOS/Renderers/AdaptedPageRenderer.cs | 97 +++++++++++ Gallery.sln | 61 ------- .../Gallery.Danbooru/Gallery.Danbooru.csproj | 16 -- .../Gallery.Gelbooru/Gallery.Gelbooru.csproj | 16 -- .../Gallery.Yandere/Gallery.Yandere.csproj | 16 -- 34 files changed, 431 insertions(+), 192 deletions(-) rename {GallerySources/Gallery.Danbooru => Gallery.Share/Sources/Danbooru}/GallerySource.cs (98%) rename {GallerySources/Gallery.Gelbooru => Gallery.Share/Sources/Gelbooru}/GallerySource.cs (98%) rename {GallerySources/Gallery.Yandere => Gallery.Share/Sources/Yandere}/GallerySource.cs (98%) rename {GallerySources/Gallery.Yandere => Gallery.Share/Sources/Yandere}/YandereItem.cs (96%) rename {Gallery.Util => Gallery.Share/Util}/Converter.cs (100%) rename {Gallery.Util => Gallery.Share/Util}/Extensions.cs (100%) rename {Gallery.Util => Gallery.Share/Util}/Interface/IGallerySource.cs (100%) rename {Gallery.Util => Gallery.Share/Util}/Log.cs (100%) rename {Gallery.Util => Gallery.Share/Util}/Model/GalleryItem.cs (89%) rename {Gallery.Util => Gallery.Share/Util}/NetHelper.cs (99%) rename {Gallery.Util => Gallery.Share/Util}/ParallelTask.cs (100%) rename {Gallery.Util => Gallery.Share/Util}/Store.cs (95%) create mode 100644 Gallery.Share/Views/GalleryItemPage.xaml create mode 100644 Gallery.Share/Views/GalleryItemPage.xaml.cs create mode 100644 Gallery.Share/Views/OptionPage.xaml create mode 100644 Gallery.Share/Views/OptionPage.xaml.cs delete mode 100644 Gallery.Util/Gallery.Util.csproj create mode 100644 Gallery.iOS/Renderers/AdaptedPageRenderer.cs delete mode 100644 GallerySources/Gallery.Danbooru/Gallery.Danbooru.csproj delete mode 100644 GallerySources/Gallery.Gelbooru/Gallery.Gelbooru.csproj delete mode 100644 GallerySources/Gallery.Yandere/Gallery.Yandere.csproj diff --git a/Gallery.Share/App.cs b/Gallery.Share/App.cs index a9e4dc0..8a30d38 100644 --- a/Gallery.Share/App.cs +++ b/Gallery.Share/App.cs @@ -18,16 +18,14 @@ namespace Gallery public static Dictionary RefreshTimes { get; } = new(); public static List GallerySources { get; } = new() { - new Yandere.GallerySource(), // https://yande.re - new Danbooru.GallerySource(), // https://danbooru.donmai.us - new Gelbooru.GallerySource() // https://gelbooru.com + new Sources.Yandere.GallerySource(), // https://yande.re + new Sources.Danbooru.GallerySource(), // https://danbooru.donmai.us + new Sources.Gelbooru.GallerySource() // https://gelbooru.com }; public App() { - Preferences.Set(Config.IsProxiedKey, true); - Preferences.Set(Config.ProxyHostKey, "192.168.25.9"); - Preferences.Set(Config.ProxyPortKey, 1081); + //Device.SetFlags(new string[0]); } private void InitResource() @@ -44,6 +42,7 @@ namespace Gallery private void InitPreference() { Config.Proxy = null; + Config.DownloadThreads = Preferences.Get(Config.DownloadThreadsKey, 1); var isProxied = Preferences.Get(Config.IsProxiedKey, false); if (isProxied) diff --git a/Gallery.Share/AppShell.xaml b/Gallery.Share/AppShell.xaml index 77dd9ef..eba9390 100644 --- a/Gallery.Share/AppShell.xaml +++ b/Gallery.Share/AppShell.xaml @@ -4,7 +4,8 @@ xmlns:local="clr-namespace:Gallery" xmlns:r="clr-namespace:Gallery.Resources" xmlns:ui="clr-namespace:Gallery.Resources.UI" - xmlns:util="clr-namespace:Gallery.Util;assembly=Gallery.Util" + xmlns:util="clr-namespace:Gallery.Util" + xmlns:v="clr-namespace:Gallery.Views" x:Class="Gallery.AppShell" x:Name="appShell" BackgroundColor="{DynamicResource NavigationColor}" @@ -15,18 +16,18 @@ -