From 394132b2533b3227ff33f2eddebee12cb28c8a64 Mon Sep 17 00:00:00 2001 From: Mateusz Skoczek Date: Tue, 17 Feb 2026 22:49:36 +0100 Subject: [PATCH] publish fix --- .../StringResourcesManager.cs | 6 +- .../VDownload.Core.Strings.csproj | 48 +--------- .../VDownload.Core.Tasks.csproj | 2 +- .../VDownload.Core.ViewModels.csproj | 2 +- .../VDownload.Core.Views/About/AboutView.xaml | 10 +- .../Authentication/AuthenticationView.xaml | 8 +- .../Home/HomeDownloadsView.xaml | 24 ++--- .../Home/HomeVideoCollectionView.xaml | 56 +++++------ .../Home/HomeVideoView.xaml | 32 +++---- .../VDownload.Core.Views/Home/HomeView.xaml | 22 ++--- .../Settings/SettingsView.xaml | 94 +++++++++---------- .../Subscriptions/SubscriptionsView.xaml | 10 +- .../VDownload.Core.Views.csproj | 2 +- .../VDownload.Services.UI.Dialogs.csproj | 2 +- ...oad.Services.UI.DictionaryResources.csproj | 2 +- ...VDownload.Services.UI.Notifications.csproj | 2 +- ...VDownload.Services.UI.StoragePicker.csproj | 2 +- .../VDownload.Services.UI.WebView.csproj | 2 +- VDownload/Activation/ActivationService.cs | 5 - VDownload/App.xaml.cs | 3 - .../Resources}/en-US/AboutViewResources.resw | 0 .../en-US/AuthenticationViewResources.resw | 0 .../Resources}/en-US/BaseViewResources.resw | 0 .../Resources}/en-US/CommonResources.resw | 0 .../en-US/DialogButtonsResources.resw | 0 .../en-US/FilenameTemplateResources.resw | 0 .../en-US/HomeDownloadsViewResources.resw | 0 .../HomeVideoCollectionViewResources.resw | 0 .../en-US/HomeVideoViewResources.resw | 0 .../Resources}/en-US/HomeViewResources.resw | 0 .../en-US/NotificationsResources.resw | 0 .../Resources}/en-US/SearchResources.resw | 0 .../en-US/SettingsViewResources.resw | 0 .../en-US/SubscriptionsViewResources.resw | 0 VDownload/VDownload.csproj | 88 ++++++++++++++++- 35 files changed, 225 insertions(+), 197 deletions(-) rename {VDownload.Core/VDownload.Core.Strings/Strings => VDownload/Resources}/en-US/AboutViewResources.resw (100%) rename {VDownload.Core/VDownload.Core.Strings/Strings => VDownload/Resources}/en-US/AuthenticationViewResources.resw (100%) rename {VDownload.Core/VDownload.Core.Strings/Strings => VDownload/Resources}/en-US/BaseViewResources.resw (100%) rename {VDownload.Core/VDownload.Core.Strings/Strings => VDownload/Resources}/en-US/CommonResources.resw (100%) rename {VDownload.Core/VDownload.Core.Strings/Strings => VDownload/Resources}/en-US/DialogButtonsResources.resw (100%) rename {VDownload.Core/VDownload.Core.Strings/Strings => VDownload/Resources}/en-US/FilenameTemplateResources.resw (100%) rename {VDownload.Core/VDownload.Core.Strings/Strings => VDownload/Resources}/en-US/HomeDownloadsViewResources.resw (100%) rename {VDownload.Core/VDownload.Core.Strings/Strings => VDownload/Resources}/en-US/HomeVideoCollectionViewResources.resw (100%) rename {VDownload.Core/VDownload.Core.Strings/Strings => VDownload/Resources}/en-US/HomeVideoViewResources.resw (100%) rename {VDownload.Core/VDownload.Core.Strings/Strings => VDownload/Resources}/en-US/HomeViewResources.resw (100%) rename {VDownload.Core/VDownload.Core.Strings/Strings => VDownload/Resources}/en-US/NotificationsResources.resw (100%) rename {VDownload.Core/VDownload.Core.Strings/Strings => VDownload/Resources}/en-US/SearchResources.resw (100%) rename {VDownload.Core/VDownload.Core.Strings/Strings => VDownload/Resources}/en-US/SettingsViewResources.resw (100%) rename {VDownload.Core/VDownload.Core.Strings/Strings => VDownload/Resources}/en-US/SubscriptionsViewResources.resw (100%) diff --git a/VDownload.Core/VDownload.Core.Strings/StringResourcesManager.cs b/VDownload.Core/VDownload.Core.Strings/StringResourcesManager.cs index 3bcdad2..96c880a 100644 --- a/VDownload.Core/VDownload.Core.Strings/StringResourcesManager.cs +++ b/VDownload.Core/VDownload.Core.Strings/StringResourcesManager.cs @@ -36,17 +36,13 @@ namespace VDownload.Core.Strings private static StringResource BuildResource(string resourceName) { - File.AppendAllText("C:\\Users\\mateusz\\Desktop\\test.txt", $"teststring {resourceName}\n"); ResourceLoader loader; try { - loader = new ResourceLoader($"VDownload.Core.Strings/{resourceName}"); - File.AppendAllText("C:\\Users\\mateusz\\Desktop\\test.txt", $"afterteststring {resourceName}\n"); + loader = new ResourceLoader($"{resourceName}"); } catch (Exception e) { - - File.AppendAllText("C:\\Users\\mateusz\\Desktop\\test.txt", $"teststringerror {e.Message}\n"); throw; } return new StringResource(loader); diff --git a/VDownload.Core/VDownload.Core.Strings/VDownload.Core.Strings.csproj b/VDownload.Core/VDownload.Core.Strings/VDownload.Core.Strings.csproj index 146088e..e3ba69a 100644 --- a/VDownload.Core/VDownload.Core.Strings/VDownload.Core.Strings.csproj +++ b/VDownload.Core/VDownload.Core.Strings/VDownload.Core.Strings.csproj @@ -1,6 +1,6 @@  - net8.0-windows10.0.19041.0 + net8.0-windows10.0.26100.0 10.0.17763.0 VDownload.Core.Strings win10-x86;win10-x64;win10-arm64 @@ -13,50 +13,4 @@ - - - - Always - - - Always - - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - diff --git a/VDownload.Core/VDownload.Core.Tasks/VDownload.Core.Tasks.csproj b/VDownload.Core/VDownload.Core.Tasks/VDownload.Core.Tasks.csproj index ae5c5fc..6f348b5 100644 --- a/VDownload.Core/VDownload.Core.Tasks/VDownload.Core.Tasks.csproj +++ b/VDownload.Core/VDownload.Core.Tasks/VDownload.Core.Tasks.csproj @@ -1,7 +1,7 @@  - net8.0-windows10.0.19041.0 + net8.0-windows10.0.26100.0 10.0.17763.0 VDownload.Core.Tasks win10-x86;win10-x64;win10-arm64 diff --git a/VDownload.Core/VDownload.Core.ViewModels/VDownload.Core.ViewModels.csproj b/VDownload.Core/VDownload.Core.ViewModels/VDownload.Core.ViewModels.csproj index bf03ae7..c04e453 100644 --- a/VDownload.Core/VDownload.Core.ViewModels/VDownload.Core.ViewModels.csproj +++ b/VDownload.Core/VDownload.Core.ViewModels/VDownload.Core.ViewModels.csproj @@ -1,6 +1,6 @@  - net8.0-windows10.0.19041.0 + net8.0-windows10.0.26100.0 10.0.17763.0 VDownload.Core.ViewModels win10-x86;win10-x64;win10-arm64 diff --git a/VDownload.Core/VDownload.Core.Views/About/AboutView.xaml b/VDownload.Core/VDownload.Core.Views/About/AboutView.xaml index 67ed693..12a1228 100644 --- a/VDownload.Core/VDownload.Core.Views/About/AboutView.xaml +++ b/VDownload.Core/VDownload.Core.Views/About/AboutView.xaml @@ -33,7 +33,7 @@ - @@ -52,7 +52,7 @@ - @@ -71,19 +71,19 @@ - - - diff --git a/VDownload.Core/VDownload.Core.Views/Authentication/AuthenticationView.xaml b/VDownload.Core/VDownload.Core.Views/Authentication/AuthenticationView.xaml index c1d6420..86e3fd9 100644 --- a/VDownload.Core/VDownload.Core.Views/Authentication/AuthenticationView.xaml +++ b/VDownload.Core/VDownload.Core.Views/Authentication/AuthenticationView.xaml @@ -24,7 +24,7 @@ - @@ -44,10 +44,10 @@ - + - + @@ -58,7 +58,7 @@ - diff --git a/VDownload.Core/VDownload.Core.Views/Home/HomeDownloadsView.xaml b/VDownload.Core/VDownload.Core.Views/Home/HomeDownloadsView.xaml index b2a9a6d..bdec29b 100644 --- a/VDownload.Core/VDownload.Core.Views/Home/HomeDownloadsView.xaml +++ b/VDownload.Core/VDownload.Core.Views/Home/HomeDownloadsView.xaml @@ -98,15 +98,15 @@ Orientation="Horizontal"> - - - @@ -205,7 +205,7 @@ Value="Idle"> - @@ -215,7 +215,7 @@ Value="Queued"> - @@ -225,7 +225,7 @@ Value="Initializing"> - @@ -236,7 +236,7 @@ - @@ -250,7 +250,7 @@ - %) + %) @@ -260,7 +260,7 @@ Value="Finalizing"> - @@ -271,7 +271,7 @@ - ) + ) @@ -281,7 +281,7 @@ Value="EndedSuccessfully"> - @@ -291,7 +291,7 @@ Value="EndedCancelled"> - diff --git a/VDownload.Core/VDownload.Core.Views/Home/HomeVideoCollectionView.xaml b/VDownload.Core/VDownload.Core.Views/Home/HomeVideoCollectionView.xaml index 6c5d31f..1a23e19 100644 --- a/VDownload.Core/VDownload.Core.Views/Home/HomeVideoCollectionView.xaml +++ b/VDownload.Core/VDownload.Core.Views/Home/HomeVideoCollectionView.xaml @@ -41,7 +41,7 @@ Spacing="10"> - + @@ -69,23 +69,23 @@ - - - - - @@ -115,7 +115,7 @@ SmallChange="1" LargeChange="10"/> - @@ -139,7 +139,7 @@ Date="{Binding MaxDateFilter, Mode=TwoWay}" MaxDate="{Binding MaxDate}"/> - @@ -159,7 +159,7 @@ Value="{Binding MaxDurationFilter, Mode=TwoWay}" Maximum="{Binding MaxDuration}"/> - @@ -172,7 +172,7 @@ -