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 @@ -