diff --git a/LICENSE b/LICENSE
index 4de4f167..2aa1aa8c 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2025 Nickvision
+Copyright (c) 2026 Nickvision
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/Nickvision.Application.GNOME/Nickvision.Application.GNOME.csproj b/Nickvision.Application.GNOME/Nickvision.Application.GNOME.csproj
index 4f31d938..bfb6ec8b 100644
--- a/Nickvision.Application.GNOME/Nickvision.Application.GNOME.csproj
+++ b/Nickvision.Application.GNOME/Nickvision.Application.GNOME.csproj
@@ -8,12 +8,13 @@
enable
Exe
AnyCPU;ARM64;x64
- 2026.2.0
+ 2026.3.0
+ true
-
+
diff --git a/Nickvision.Application.GNOME/Program.cs b/Nickvision.Application.GNOME/Program.cs
index ec135166..9c01b5fe 100644
--- a/Nickvision.Application.GNOME/Program.cs
+++ b/Nickvision.Application.GNOME/Program.cs
@@ -3,12 +3,14 @@
using Nickvision.Application.GNOME.Views;
using Nickvision.Application.Shared.Helpers;
using Nickvision.Desktop.GNOME.Helpers;
+using System.Diagnostics.CodeAnalysis;
using System.Threading.Tasks;
namespace Nickvision.Application.GNOME;
public class Program
{
+ [RequiresDynamicCode("Calls ConfigureAdw() which may use dynamic code generation.")]
public static async Task Main(string[] args)
{
var newArgs = new string[args.Length + 1];
diff --git a/Nickvision.Application.Shared/Controllers/MainWindowController.cs b/Nickvision.Application.Shared/Controllers/MainWindowController.cs
index bf368d7c..3cfbdd49 100644
--- a/Nickvision.Application.Shared/Controllers/MainWindowController.cs
+++ b/Nickvision.Application.Shared/Controllers/MainWindowController.cs
@@ -1,4 +1,5 @@
using Microsoft.Extensions.Logging;
+using Nickvision.Application.Shared.Helpers;
using Nickvision.Application.Shared.Models;
using Nickvision.Application.Shared.Services;
using Nickvision.Desktop.Application;
@@ -32,7 +33,7 @@ public MainWindowController(ILogger logger, AppInfo appInf
_translationService = translationService;
_updaterService = updaterService;
_latestVersion = appInfo.Version!;
- _translationService.Language = _jsonFileService.Load(Configuration.Key).TranslationLanguage;
+ _translationService.Language = _jsonFileService.Load(ApplicationJsonContext.Default.Configuration, Configuration.Key).TranslationLanguage;
_logger.LogInformation($"Received command-line arguments: [{string.Join(", ", argumentsService.Data)}]");
// Translate strings
_appInfo.ShortName = _translationService._("Application");
@@ -58,24 +59,24 @@ public MainWindowController(ILogger logger, AppInfo appInf
var _ => _translationService._("Good Day!")
};
- public Theme Theme => _jsonFileService.Load(Configuration.Key).Theme;
+ public Theme Theme => _jsonFileService.Load(ApplicationJsonContext.Default.Configuration, Configuration.Key).Theme;
public WindowGeometry WindowGeometry
{
- get => _jsonFileService.Load(Configuration.Key).WindowGeometry;
+ get => _jsonFileService.Load(ApplicationJsonContext.Default.Configuration, Configuration.Key).WindowGeometry;
set
{
- var config = _jsonFileService.Load(Configuration.Key);
+ var config = _jsonFileService.Load(ApplicationJsonContext.Default.Configuration, Configuration.Key);
config.WindowGeometry = value;
- _jsonFileService.Save(config, Configuration.Key);
+ _jsonFileService.Save(config, ApplicationJsonContext.Default.Configuration, Configuration.Key);
}
}
public async Task CheckForUpdatesAsync(bool showNotificationForNoUpdates)
{
_logger.LogInformation("Checking for updates...");
- var config = _jsonFileService.Load(Configuration.Key);
+ var config = _jsonFileService.Load(ApplicationJsonContext.Default.Configuration, Configuration.Key);
var stableVersion = await _updaterService.GetLatestStableVersionAsync();
if (stableVersion is not null)
{
diff --git a/Nickvision.Application.Shared/Controllers/PreferencesViewController.cs b/Nickvision.Application.Shared/Controllers/PreferencesViewController.cs
index 4c5a1ab3..06b0c2b2 100644
--- a/Nickvision.Application.Shared/Controllers/PreferencesViewController.cs
+++ b/Nickvision.Application.Shared/Controllers/PreferencesViewController.cs
@@ -1,4 +1,5 @@
-using Nickvision.Application.Shared.Models;
+using Nickvision.Application.Shared.Helpers;
+using Nickvision.Application.Shared.Models;
using Nickvision.Desktop.Application;
using Nickvision.Desktop.Filesystem;
using Nickvision.Desktop.Globalization;
@@ -22,7 +23,7 @@ public PreferencesViewController(IJsonFileService jsonFileService, ITranslationS
{
_jsonFileService = jsonFileService;
_translationService = translationService;
- _configuration = _jsonFileService.Load(Configuration.Key);
+ _configuration = _jsonFileService.Load(ApplicationJsonContext.Default.Configuration, Configuration.Key);
AvailableTranslationLanguages = new List>()
{
new SelectionItem(string.Empty, _translationService._("System"), string.IsNullOrEmpty(_configuration.TranslationLanguage)),
@@ -58,5 +59,5 @@ public bool AllowPreviewUpdates
set => _configuration.AllowPreviewUpdates = value;
}
- public Task SaveConfigurationAsync() => _jsonFileService.SaveAsync(_configuration, Configuration.Key);
+ public Task SaveConfigurationAsync() => _jsonFileService.SaveAsync(_configuration, ApplicationJsonContext.Default.Configuration, Configuration.Key);
}
diff --git a/Nickvision.Application.Shared/Helpers/ApplicationJsonContext.cs b/Nickvision.Application.Shared/Helpers/ApplicationJsonContext.cs
new file mode 100644
index 00000000..8d3ca94e
--- /dev/null
+++ b/Nickvision.Application.Shared/Helpers/ApplicationJsonContext.cs
@@ -0,0 +1,11 @@
+using Nickvision.Application.Shared.Models;
+using System.Text.Json.Serialization;
+
+namespace Nickvision.Application.Shared.Helpers;
+
+[JsonSourceGenerationOptions(DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull, WriteIndented = true)]
+[JsonSerializable(typeof(Configuration))]
+public partial class ApplicationJsonContext : JsonSerializerContext
+{
+
+}
diff --git a/Nickvision.Application.Shared/Helpers/HostApplicationBuilderExtensions.cs b/Nickvision.Application.Shared/Helpers/HostApplicationBuilderExtensions.cs
index 8dddac1a..b114feef 100644
--- a/Nickvision.Application.Shared/Helpers/HostApplicationBuilderExtensions.cs
+++ b/Nickvision.Application.Shared/Helpers/HostApplicationBuilderExtensions.cs
@@ -18,7 +18,7 @@ public IHostApplicationBuilder ConfigureApplication(string[] args)
{
var appInfo = new AppInfo("org.nickvision.application", "Nickvision Application", "Application")
{
- Version = new AppVersion("2026.2.0-next"),
+ Version = new AppVersion("2026.3.0-next"),
Changelog = "- Initial release",
SourceRepository = new Uri("https://github.com/NickvisionApps/Application"),
IssueTracker = new Uri("https://github.com/NickvisionApps/Application/issues/new"),
diff --git a/Nickvision.Application.Shared/Nickvision.Application.Shared.csproj b/Nickvision.Application.Shared/Nickvision.Application.Shared.csproj
index 1b9fcd02..3f84f85f 100644
--- a/Nickvision.Application.Shared/Nickvision.Application.Shared.csproj
+++ b/Nickvision.Application.Shared/Nickvision.Application.Shared.csproj
@@ -7,11 +7,12 @@
disable
enable
AnyCPU;ARM64;x64
- 2026.2.0
+ 2026.3.0
+ true
-
+
diff --git a/Nickvision.Application.WinUI/Nickvision.Application.WinUI.csproj b/Nickvision.Application.WinUI/Nickvision.Application.WinUI.csproj
index 6431abdb..13748c01 100644
--- a/Nickvision.Application.WinUI/Nickvision.Application.WinUI.csproj
+++ b/Nickvision.Application.WinUI/Nickvision.Application.WinUI.csproj
@@ -18,7 +18,8 @@
None
DISABLE_XAML_GENERATED_MAIN
Nickvision.Application.WinUI.Program
- 2026.2.0
+ 2026.3.0
+ true
@@ -32,8 +33,8 @@
-
-
+
+
diff --git a/Nickvision.Application.WinUI/Program.cs b/Nickvision.Application.WinUI/Program.cs
index 341e48a9..1d373150 100644
--- a/Nickvision.Application.WinUI/Program.cs
+++ b/Nickvision.Application.WinUI/Program.cs
@@ -3,6 +3,7 @@
using Nickvision.Application.WinUI.Helpers;
using Nickvision.Desktop.WinUI.Helpers;
using System;
+using System.Diagnostics.CodeAnalysis;
using System.Runtime.InteropServices;
namespace Nickvision.Application.WinUI;
@@ -13,6 +14,7 @@ public static partial class Program
private static partial void XamlCheckProcessRequirements();
[STAThread]
+ [RequiresDynamicCode("Calls ConfigureWinUI() which may use dynamic code generation.")]
private static void Main(string[] args)
{
XamlCheckProcessRequirements();
diff --git a/Nickvision.Application.WinUI/Views/SettingsPage.xaml b/Nickvision.Application.WinUI/Views/SettingsPage.xaml
index 8b60890a..a6deb182 100644
--- a/Nickvision.Application.WinUI/Views/SettingsPage.xaml
+++ b/Nickvision.Application.WinUI/Views/SettingsPage.xaml
@@ -4,6 +4,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Nickvision.Application.WinUI.Views"
xmlns:nickvision="using:Nickvision.Desktop.WinUI.Controls"
+ xmlns:helpers="using:Nickvision.Desktop.WinUI.Helpers"
xmlns:community="using:CommunityToolkit.WinUI.Controls"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
@@ -47,7 +48,13 @@
-
+
+
+
+
+
+
+
@@ -55,7 +62,13 @@
-
+
+
+
+
+
+
+
diff --git a/Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs b/Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs
index 021ec00a..806b1e96 100644
--- a/Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs
+++ b/Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs
@@ -2,7 +2,6 @@
using Microsoft.UI.Xaml.Controls;
using Nickvision.Application.Shared.Controllers;
using Nickvision.Application.Shared.Models;
-using Nickvision.Desktop.Application;
using Nickvision.Desktop.Globalization;
using Nickvision.Desktop.WinUI.Helpers;
using System.Threading.Tasks;
@@ -25,10 +24,10 @@ public SettingsPage(PreferencesViewController controller, ITranslationService tr
LblSettings.Text = _translationService._("Settings");
SelectorUI.Text = _translationService._("User Interface");
RowTheme.Header = _translationService._("Theme");
- CmbTheme.ItemsSource = _controller.Themes;
+ CmbTheme.ItemsSource = _controller.Themes.ToBindableSelectonItems();
RowTranslationLanguage.Header = _translationService._("Translation Language");
RowTranslationLanguage.Description = _translationService._("An application restart is required for a change to take effect");
- CmbTranslationLanguage.ItemsSource = _controller.AvailableTranslationLanguages;
+ CmbTranslationLanguage.ItemsSource = _controller.AvailableTranslationLanguages.ToBindableSelectonItems();
RowPreviewUpdates.Header = _translationService._("Receive Preview Updates");
TglPreviewUpdates.OnContent = _translationService._("On");
TglPreviewUpdates.OffContent = _translationService._("Off");
@@ -58,8 +57,8 @@ private async Task ApplyChangesAsync()
{
return;
}
- _controller.Theme = (CmbTheme.SelectedItem as SelectionItem)!;
- _controller.TranslationLanguage = (CmbTranslationLanguage.SelectedItem as SelectionItem)!;
+ _controller.Theme = (CmbTheme.SelectedItem as BindableSelectionItem)!.ToSelectionItem()!;
+ _controller.TranslationLanguage = (CmbTranslationLanguage.SelectedItem as BindableSelectionItem)!.ToSelectionItem()!;
_controller.AllowPreviewUpdates = TglPreviewUpdates.IsOn;
await _controller.SaveConfigurationAsync();
}
diff --git a/flatpak/nuget-sources.json b/flatpak/nuget-sources.json
index 1eb8ad2f..c1f2ccc0 100644
--- a/flatpak/nuget-sources.json
+++ b/flatpak/nuget-sources.json
@@ -125,6 +125,13 @@
"url": "https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.app.runtime.linux-arm64/10.0.5/microsoft.aspnetcore.app.runtime.linux-arm64.10.0.5.nupkg",
"type": "file"
},
+ {
+ "dest": "nuget-sources",
+ "dest-filename": "microsoft.aspnetcore.app.runtime.linux-arm64.10.0.5.nupkg",
+ "sha512": "2a9f8cb2e2955dfb58ad17c20921b5897d01c7d3d7b44e9d90aa1fe56c205b838ac04990ad9475bbfb21934a57953b7f8f5f2c00b4b61da65dd2c1ee1e355f5d",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.app.runtime.linux-arm64/10.0.5/microsoft.aspnetcore.app.runtime.linux-arm64.10.0.5.nupkg",
+ "type": "file"
+ },
{
"dest": "nuget-sources",
"dest-filename": "microsoft.aspnetcore.app.runtime.linux-x64.10.0.5.nupkg",
@@ -134,9 +141,16 @@
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.data.sqlite.core.10.0.4.nupkg",
- "sha512": "c84a4c91f80f132b6256df0cc1c8932aecb0cd9ebdd3b0f1998279df866a20457ffed08889aac96fecd6a238a2c211111c5be03c3164af8bc369f2f37ee85780",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlite.core/10.0.4/microsoft.data.sqlite.core.10.0.4.nupkg",
+ "dest-filename": "microsoft.data.sqlite.core.10.0.5.nupkg",
+ "sha512": "9a40f72afdbefa1a3657c32bc4760a03809f90d94243718edcaec337915b87bd444f4184cfccebc217c9fdb3b949d30dc19058416b2af9e12f5d3dc7cf39453b",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlite.core/10.0.5/microsoft.data.sqlite.core.10.0.5.nupkg",
+ "type": "file"
+ },
+ {
+ "dest": "nuget-sources",
+ "dest-filename": "microsoft.dotnet.ilcompiler.10.0.5.nupkg",
+ "sha512": "63a474fbca4cbc28bbbead11f5116d53abe3fa013a8457c0cd734c58a50b1451d496a6db556863dd006840239ee7fe1b402864d105a0f24ee2fe9031ca3d5688",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.ilcompiler/10.0.5/microsoft.dotnet.ilcompiler.10.0.5.nupkg",
"type": "file"
},
{
@@ -148,9 +162,9 @@
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.configuration.10.0.4.nupkg",
- "sha512": "41becfc93d97bf67eb19d3102aa414047364901426a6a44a6d533bdaa691c8b7c3416fa3f9f95d1135d4e25ef248ce1f14440c598f88c6e95f6b05a800df8f16",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration/10.0.4/microsoft.extensions.configuration.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.configuration.10.0.5.nupkg",
+ "sha512": "b394cf264f462d69c41ac972decc306a30b770eaba4d1803deed463ef583d95ccfcf5623e31be0403dcaf7f8ebd2f1e59a3290aa7d6decf96e78d0cfc1906c87",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration/10.0.5/microsoft.extensions.configuration.10.0.5.nupkg",
"type": "file"
},
{
@@ -162,9 +176,9 @@
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.configuration.abstractions.10.0.4.nupkg",
- "sha512": "eb770a4fdcaebd12e555fa047992f159621052a77f77b6c56df339a83dcbc43e3128452d92f30f8dd651481ec0f0b28b8116bace80fb8ec101e56bad6da9d1d1",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.abstractions/10.0.4/microsoft.extensions.configuration.abstractions.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.configuration.abstractions.10.0.5.nupkg",
+ "sha512": "c11ac27564d41aa45614567572d1f8c226ebbf2dacbe9845489a60e94b6f81af2fb91f2de5a2663d8fb5197359621c0201272ed0efa05f2337fce85ab2425ceb",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.abstractions/10.0.5/microsoft.extensions.configuration.abstractions.10.0.5.nupkg",
"type": "file"
},
{
@@ -176,44 +190,44 @@
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.configuration.binder.10.0.4.nupkg",
- "sha512": "7e899455110262ddb257815654d5d303ec33ead5b7d24a8a21c796fd90e46716edc7262df0d0305f837a975e86b86d6b2fa2f0ae7b798c3a044654144b09bf6f",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.binder/10.0.4/microsoft.extensions.configuration.binder.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.configuration.binder.10.0.5.nupkg",
+ "sha512": "be8aaeb64945bcd5490713e6d2b5b3ba4d0fa8d6834b1df9d757c1e0543cf75b1796560a161cdd576a880f7ab13978e25c6cd5f72794b4ad00cf0631e2221c97",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.binder/10.0.5/microsoft.extensions.configuration.binder.10.0.5.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.configuration.commandline.10.0.4.nupkg",
- "sha512": "a30a8a31a1922f5959757c1f8a4499806ba75e3df29434f569976dcf2dce9d9ddf8cc896bd021566c9b4bef57d9c002f621f66c64f0f9ad6a1cef9967d6d0670",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.commandline/10.0.4/microsoft.extensions.configuration.commandline.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.configuration.commandline.10.0.5.nupkg",
+ "sha512": "f45a4505474fb2e4cfec0208c747412dfb7e89c9b75da732abc576c8959fea7b4172c36def779cc95df21d68443fe03ab4493368ffb2ea4713a7bb819603f944",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.commandline/10.0.5/microsoft.extensions.configuration.commandline.10.0.5.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.configuration.environmentvariables.10.0.4.nupkg",
- "sha512": "f27455b7b218692ac2a1bbd750abdeb3cab20978077e5ea1c909c8e3aa682e8ff37b5245dae35440e77fb24fde389b3b5dc7cbc2f8b1cb5ab35e9a25a31efddb",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.environmentvariables/10.0.4/microsoft.extensions.configuration.environmentvariables.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.configuration.environmentvariables.10.0.5.nupkg",
+ "sha512": "3d819c8394f1ad3b27041f1e471c290c28e1feb890ffbd3165573619e3eee0cf7059f464fe906e97b537cab522d50568e385f0dfdcc28ccc6fb58aaa8a12810d",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.environmentvariables/10.0.5/microsoft.extensions.configuration.environmentvariables.10.0.5.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.configuration.fileextensions.10.0.4.nupkg",
- "sha512": "a5639b811829650dd453f9497288028b8a46d56e77bbb3e6055c530756b13070f2bf14d6335338f5c24c8974c66b33a91da8daea699132fdc30bcb8b40c83ac0",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileextensions/10.0.4/microsoft.extensions.configuration.fileextensions.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.configuration.fileextensions.10.0.5.nupkg",
+ "sha512": "62100a406dd3b4d41a7ebc2a2f3a77726830a520387846bab84141e6f2b5d72fc82deaeb5d927b3a5520a1a11509cbb873883492c240180ecc094d7e00311d01",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileextensions/10.0.5/microsoft.extensions.configuration.fileextensions.10.0.5.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.configuration.json.10.0.4.nupkg",
- "sha512": "3465db6d10115a9bde197b6aa986d1ced3b3dbf8107b55ce3f5ae5ab3e9e0961590b0665a407ea809b1df7f90d6fe812fc4a4c9a6e06dd112ce88a5b2c1472b8",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.json/10.0.4/microsoft.extensions.configuration.json.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.configuration.json.10.0.5.nupkg",
+ "sha512": "ab743f033a71b02e8ce37b0607569dd7501428afbb200752602f5b6a35a87371c11f61d03936067fa16275a415e2facf2e05dc9aa810dcbee69914fa9a2b0951",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.json/10.0.5/microsoft.extensions.configuration.json.10.0.5.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.configuration.usersecrets.10.0.4.nupkg",
- "sha512": "7d4849ea670f13fa1d8051f8cbf9264690728ce03b2fafe39ff829fe87ca3fd59ac2f6e45b2339e44818f9ffbb6f9bd17166948e3e8c802baf7e4d9bc4cb5aa6",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.usersecrets/10.0.4/microsoft.extensions.configuration.usersecrets.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.configuration.usersecrets.10.0.5.nupkg",
+ "sha512": "b24fbb227575f93ac2ebd2410d65417687b96875fb5e2b75d4c15757fd150ccd4a7e50b3bfdf5a22cbffcece17647ea5578313fa571282a5341940fadb187ce1",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.usersecrets/10.0.5/microsoft.extensions.configuration.usersecrets.10.0.5.nupkg",
"type": "file"
},
{
@@ -225,9 +239,9 @@
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.dependencyinjection.10.0.4.nupkg",
- "sha512": "5d0778a1c857f3b0269eb5b475db0b1100508832b0758a74ace2c18c16158da95e4e3786b7016fd0bfe33c6019d5df52d370b0d0fcb09699687184ccb43c16e3",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection/10.0.4/microsoft.extensions.dependencyinjection.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.dependencyinjection.10.0.5.nupkg",
+ "sha512": "3daa3b18b324e817742920aef4a9f0b3bbc95241b481c650e860a6e8b185525766612acf4a8c68cbb7dd240026c6a2834e32442509723b6bc04eddd7fe328cf0",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection/10.0.5/microsoft.extensions.dependencyinjection.10.0.5.nupkg",
"type": "file"
},
{
@@ -239,65 +253,65 @@
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg",
- "sha512": "124debe71cc246cf8e142e45cfac895fadd539059b6f0ec0d1aa4f1d1268ea7ed49be294ee22eefe2bd96269e8ebe1e297e42534098983f213b706e6f91c8d2f",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection.abstractions/10.0.4/microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.dependencyinjection.abstractions.10.0.5.nupkg",
+ "sha512": "5418d667e22f5492e831fc93e8bdc313a86925090bb2a5c6349ef44ae2a45a4d488f1da4d7d2fce2b8396469291f5d1f7740d30ddf1b3a0985d074e286f6f0bb",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection.abstractions/10.0.5/microsoft.extensions.dependencyinjection.abstractions.10.0.5.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.diagnostics.10.0.4.nupkg",
- "sha512": "3f4d92a0ec718526e5c7b8a0e13dc6a9a839ba2ce8af2ce17f410bf64f62318298443c8eaa8e1e164d166e60a42f9f71907b0913edb175803ff3c054d1d75903",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.diagnostics/10.0.4/microsoft.extensions.diagnostics.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.diagnostics.10.0.5.nupkg",
+ "sha512": "1f266b2dd3f3515c410c8b0125c69d63b12afe222d6a704563d88f974220af18bb7d3722341bcd9b76fe5b119febf9b1d75aa461f28f25bd8c06441a602c425d",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.diagnostics/10.0.5/microsoft.extensions.diagnostics.10.0.5.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.diagnostics.abstractions.10.0.4.nupkg",
- "sha512": "266da9c004364db82a2c779bc33e0fa327bb2cea7c7a81819212196056f2d98ae2f85df6d5b56f824ec92f4e168fcba812e7636a3bd661b19d5f27083ff227c0",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.diagnostics.abstractions/10.0.4/microsoft.extensions.diagnostics.abstractions.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.diagnostics.abstractions.10.0.5.nupkg",
+ "sha512": "8826b90dbee058c4e4bca75261a3d2344ea1374c719b397995395e447503d3564d7d4149aac08166d8d3cea7e99d2adb9be797909415ed0afd579ca3daa586f9",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.diagnostics.abstractions/10.0.5/microsoft.extensions.diagnostics.abstractions.10.0.5.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.fileproviders.abstractions.10.0.4.nupkg",
- "sha512": "960235eb4e642ed69714dc2e5651cafb5b2fed1377ca27f89ccba59b7dd8364d280bca7345affa85f1bce54fafa9a352122fd2f22b294d92bebb77cf213155f9",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.fileproviders.abstractions/10.0.4/microsoft.extensions.fileproviders.abstractions.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.fileproviders.abstractions.10.0.5.nupkg",
+ "sha512": "d0e240bbcfff91025936a93455ceefb6789f93050e7a061d0511296e1c4f632639a0993b4fda9a9b5671cf27dc91d8b7266a93844ea082ae5ac54bf2a051400f",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.fileproviders.abstractions/10.0.5/microsoft.extensions.fileproviders.abstractions.10.0.5.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.fileproviders.physical.10.0.4.nupkg",
- "sha512": "d5faf69e48f221af57532ba60d6ceb8cb23480f5d56c2036eec321d0def42064eddbbef68a054acd5dc8f6597f97c51c8cf86d0538eb127ff618828a455b8421",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.fileproviders.physical/10.0.4/microsoft.extensions.fileproviders.physical.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.fileproviders.physical.10.0.5.nupkg",
+ "sha512": "a4fe59fb3e61e4e731917f7785e9f00ce7a8dae76affbb3015b387668f657e109179944cf11bfda1cd4adace2e383556743aa8f722e82d5609ce7a346ba501ff",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.fileproviders.physical/10.0.5/microsoft.extensions.fileproviders.physical.10.0.5.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.filesystemglobbing.10.0.4.nupkg",
- "sha512": "ee61b2d132a3d06419146bcafccfba81e75ebdbff16df3f35c792105ed39801a6e38412176597f536e82cdb0bf8a0217c6294b8d7fc4a5f78d61b5b6f0e31069",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.filesystemglobbing/10.0.4/microsoft.extensions.filesystemglobbing.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.filesystemglobbing.10.0.5.nupkg",
+ "sha512": "15c87d1964fc190a5b20a4824c37bd4b7f908593da364741617afbe15c31fb130776d8dc80be4188e23ff5888e0b7ad634b0fb4e3930c7657295f2f065135f77",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.filesystemglobbing/10.0.5/microsoft.extensions.filesystemglobbing.10.0.5.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.hosting.10.0.4.nupkg",
- "sha512": "8c934f94b593190c0eea4ca0a2e641bbf7eefaed9f99d05b3e5285f7f4691707a6ec270b6c87407d5dad8cea70481c845d271c0dcec91897387301d73edfe372",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.hosting/10.0.4/microsoft.extensions.hosting.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.hosting.10.0.5.nupkg",
+ "sha512": "2fa4a2c1bdf623fca43595fc86af5ad31677ab01c0277d85566bdd82a6f123af0496e6f73a208a9ddb7b189e7856a1c3927441e78c75cd8006a8a69793032bcb",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.hosting/10.0.5/microsoft.extensions.hosting.10.0.5.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.hosting.abstractions.10.0.4.nupkg",
- "sha512": "88e3242847518e5963b3fd0246d19028202e9933bc7afa7b15d622607fc81101acd989ae5e7834021feb95478e8cb3fc1e067d537afb96b5feb7d5d3588b8fc7",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.hosting.abstractions/10.0.4/microsoft.extensions.hosting.abstractions.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.hosting.abstractions.10.0.5.nupkg",
+ "sha512": "57a4cc9c56805cd9a8402751b66daf970c85f8f35935276f5bd120ea2eee9bf0e4e85c2106290056d62efc8e94f8a8ed339ba5602e38ac88d1043582e7f730c7",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.hosting.abstractions/10.0.5/microsoft.extensions.hosting.abstractions.10.0.5.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.http.10.0.4.nupkg",
- "sha512": "2dcbccdce15af8daf69916c50e103290f4067aef164c87396df83b82a367a36bc4d3ec6997ff68c852a627b052d0e45fcb22512d1b8539a4e9409b6d1179b6af",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.http/10.0.4/microsoft.extensions.http.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.http.10.0.5.nupkg",
+ "sha512": "626bebedc1c520d2e9f73f10154858eca82e1afac70159064ee479902850e1f05f5396533c4f95cf8ed11c9f98822c13e1bddedc78aeb7e84f9e8b99b9b2f0ad",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.http/10.0.5/microsoft.extensions.http.10.0.5.nupkg",
"type": "file"
},
{
@@ -309,9 +323,9 @@
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.logging.10.0.4.nupkg",
- "sha512": "2bfe5e6f7732874562e2a9d1a3c3b86ad5fdc5a701709e9848ea7d23cc3ca91cd5197d294a9f16ce681c92941f6c576922c45513aba821ba729056cae885fae0",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging/10.0.4/microsoft.extensions.logging.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.logging.10.0.5.nupkg",
+ "sha512": "34c0aae43623e2af51b7b1592914f59e830b79a04bc8126ff18053421f9b32463083a5b4eeb70b72e2c529941a75210209a8ae60ccf20a4c9ec9ffa835864128",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging/10.0.5/microsoft.extensions.logging.10.0.5.nupkg",
"type": "file"
},
{
@@ -323,9 +337,9 @@
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.logging.abstractions.10.0.4.nupkg",
- "sha512": "60c5e7078ad6adb1c77875ac917660c4ba263ec248a4957748e50fc9cfcbf1fdeb08634e6313b547d8888d73acf256bceb95be3d652220fde54b241b336b0f50",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.abstractions/10.0.4/microsoft.extensions.logging.abstractions.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.logging.abstractions.10.0.5.nupkg",
+ "sha512": "eb8ffb3af8f33ef7c3ef186d14074c003853a72dd689750d0d513cfa734f434ad64baf45c6c08f9837946ebfaa9988f549062b800752661e4e39cea52888e3d0",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.abstractions/10.0.5/microsoft.extensions.logging.abstractions.10.0.5.nupkg",
"type": "file"
},
{
@@ -337,37 +351,37 @@
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.logging.configuration.10.0.4.nupkg",
- "sha512": "7a3ed42831ebb83d8f409a4638e7c4ea47e21cc0024ea9a62170ae88f7438ec083faf06c23bb7ca6c9a57da1888c7e1ef4e4514ae81b0bdba8ba863916c72c00",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.configuration/10.0.4/microsoft.extensions.logging.configuration.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.logging.configuration.10.0.5.nupkg",
+ "sha512": "8b9d9e5a26dc9df75ff312be096e47c7b3a6e2839eb65bf4aa4f23912e823dacdd031658f6703aeba4a441d261d2a6dc88d2db0c59ccba95918e7ad500da4145",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.configuration/10.0.5/microsoft.extensions.logging.configuration.10.0.5.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.logging.console.10.0.4.nupkg",
- "sha512": "bd3cb62cd63a7e3358415a58d8fcbcc8c183a999534f95aa50efcf911275786f7fec41d544fd5ba38f7300110680d92f36bf756007312960fe17aa4ece3413aa",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.console/10.0.4/microsoft.extensions.logging.console.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.logging.console.10.0.5.nupkg",
+ "sha512": "18d7c4aff418b26824377209cd0f9383de1fe550b2150f3736648aceede3a5d8bc9644a158cfb02aa44e98e1aa23334c7b3a41ad2590232d5b20ee259ac1a5e1",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.console/10.0.5/microsoft.extensions.logging.console.10.0.5.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.logging.debug.10.0.4.nupkg",
- "sha512": "e6bef5549f675d421d3dafb21ceb10f9fed18bf06f252ce147e24de7f464cbbfd44dec76ab33686a0e733fbcb6f61be6cd0a0f5484319bc14eab37623a027896",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.debug/10.0.4/microsoft.extensions.logging.debug.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.logging.debug.10.0.5.nupkg",
+ "sha512": "3e67a433e06156590d6db074e9afa7bf8d48f999d3bdc15ec0fe20161ab69dccab2afdd313a9a1637625b55deb2b1737e775215915974c9ca0f4627a79f7b892",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.debug/10.0.5/microsoft.extensions.logging.debug.10.0.5.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.logging.eventlog.10.0.4.nupkg",
- "sha512": "10e05e1a3cf2324937d1fdac3b87fe98824e376b5ada6d4aa841db9401f444a50b827093bf40b5d3dc294d9fe0b290e050bc48f518ff8648df5c103ca841cf43",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.eventlog/10.0.4/microsoft.extensions.logging.eventlog.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.logging.eventlog.10.0.5.nupkg",
+ "sha512": "904fe52052fd387ccd5e40c506f47445a6336253f8b77373aadb4c9c11dabff1b2b025a4ea77809748b8761fbac63c1072a9c2211b958968996ab3c6e48c9bbe",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.eventlog/10.0.5/microsoft.extensions.logging.eventlog.10.0.5.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.logging.eventsource.10.0.4.nupkg",
- "sha512": "303bea6e1d250c8a153b9248472701b9c17a3835df7d7e845c3e1eb0515e5808f3c35364b355144ff82cbd3f8052f9f69d27c9e90a276000210082a6f443997a",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.eventsource/10.0.4/microsoft.extensions.logging.eventsource.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.logging.eventsource.10.0.5.nupkg",
+ "sha512": "0386f21da9000ea520a06f6a3fb89f748e499368e770a8ab55fea58f97426605904ad48f13ea2b4cf531f1e654f5ef4e0125ba42fcc6e99eee291ae1d3a0f858",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.eventsource/10.0.5/microsoft.extensions.logging.eventsource.10.0.5.nupkg",
"type": "file"
},
{
@@ -379,9 +393,9 @@
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.options.10.0.4.nupkg",
- "sha512": "1300b6e9a37d644236dc8c39c61a72c88cd9bdf8d208d2043f56142f6fea74cf26f3a7b747bbef9c6cc7c6de7b2b2eba91940d8dfa335fa25e8252858f329580",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.options/10.0.4/microsoft.extensions.options.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.options.10.0.5.nupkg",
+ "sha512": "0d6315c66c94cbec6a812c0c4405ddee935ade9b656dbf73e126c4be62adab6f9eb34c8658f26fdf89e5bfe5fd1cbb1e8dedd9cb8ceecf3a82accc6a1c7c521f",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.options/10.0.5/microsoft.extensions.options.10.0.5.nupkg",
"type": "file"
},
{
@@ -393,9 +407,9 @@
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.options.configurationextensions.10.0.4.nupkg",
- "sha512": "f943f387f56fea0112e30f279c09ca9c934eded71f5b779f309313dcbe1b26f396e670a0b1e73df950ce5f959f5820e1d3890b6ed45dd7bdc0513344862a9997",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.options.configurationextensions/10.0.4/microsoft.extensions.options.configurationextensions.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.options.configurationextensions.10.0.5.nupkg",
+ "sha512": "4d85cff627b241bc03b18680446ce9cb0e71b81017fe68c007f0ea1ad4551355a4c8ca537fd72539249c310fbe19e82db3d727a97bd344fc1f274cc4772fd14a",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.options.configurationextensions/10.0.5/microsoft.extensions.options.configurationextensions.10.0.5.nupkg",
"type": "file"
},
{
@@ -407,9 +421,16 @@
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.extensions.primitives.10.0.4.nupkg",
- "sha512": "e37827d1fd62aef6b8d2dbe2015a1745c819687bbdd10cca0dff91f05f3e25e25ac0d4d738a9eb9482a8b16f0ad9e4918211fc418759a026333640fa64f9d5a0",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.primitives/10.0.4/microsoft.extensions.primitives.10.0.4.nupkg",
+ "dest-filename": "microsoft.extensions.primitives.10.0.5.nupkg",
+ "sha512": "41f2293da787620806ba5351a517e4142e3a8ba354f3ca983f237676420dff3833e58fd784d5537656841495cf3cdba441b2ca18e73b3c577f350a97c5212464",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.primitives/10.0.5/microsoft.extensions.primitives.10.0.5.nupkg",
+ "type": "file"
+ },
+ {
+ "dest": "nuget-sources",
+ "dest-filename": "microsoft.net.illink.tasks.10.0.5.nupkg",
+ "sha512": "ba79c9aae340cb0b74bd01a8ff3786a2ded3da1d2f07614f8a69c87b417d82b423d510434ce992b4a1ee4ebffc4cd77817eb415df59d067f1ca7bfb7675a7c16",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.net.illink.tasks/10.0.5/microsoft.net.illink.tasks.10.0.5.nupkg",
"type": "file"
},
{
@@ -426,6 +447,13 @@
"url": "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.runtime.linux-arm64/10.0.5/microsoft.netcore.app.runtime.linux-arm64.10.0.5.nupkg",
"type": "file"
},
+ {
+ "dest": "nuget-sources",
+ "dest-filename": "microsoft.netcore.app.runtime.linux-arm64.10.0.5.nupkg",
+ "sha512": "effba98e46e3ff9c4a5623739559183ead212300a78c0a469b14422d6756dc7057770554ad5b2f36dbd7256d4be7c1e520af7f01a12b99932b8e385f6d931494",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.runtime.linux-arm64/10.0.5/microsoft.netcore.app.runtime.linux-arm64.10.0.5.nupkg",
+ "type": "file"
+ },
{
"dest": "nuget-sources",
"dest-filename": "microsoft.netcore.app.runtime.linux-x64.10.0.5.nupkg",
@@ -433,6 +461,34 @@
"url": "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.runtime.linux-x64/10.0.5/microsoft.netcore.app.runtime.linux-x64.10.0.5.nupkg",
"type": "file"
},
+ {
+ "dest": "nuget-sources",
+ "dest-filename": "microsoft.netcore.app.runtime.nativeaot.linux-arm.10.0.5.nupkg",
+ "sha512": "1aa94195c9f1c4d5f5e0d513975dc773f01ec0469d3ae696469990511b37cdfbd68ea317904d720cec40ff58f42a715f2448c55ea622027f10e7680862ad566a",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.runtime.nativeaot.linux-arm/10.0.5/microsoft.netcore.app.runtime.nativeaot.linux-arm.10.0.5.nupkg",
+ "type": "file"
+ },
+ {
+ "dest": "nuget-sources",
+ "dest-filename": "microsoft.netcore.app.runtime.nativeaot.linux-arm64.10.0.5.nupkg",
+ "sha512": "679f8c2b88ca03598dc1702fb48d144e0ebbbe8a792e81d1b4d80ab502d992393e81ef85dfac9b15038e85cc01bb662ca396f4ae7f55f47e432349fca2c369dd",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.runtime.nativeaot.linux-arm64/10.0.5/microsoft.netcore.app.runtime.nativeaot.linux-arm64.10.0.5.nupkg",
+ "type": "file"
+ },
+ {
+ "dest": "nuget-sources",
+ "dest-filename": "microsoft.netcore.app.runtime.nativeaot.linux-arm64.10.0.5.nupkg",
+ "sha512": "679f8c2b88ca03598dc1702fb48d144e0ebbbe8a792e81d1b4d80ab502d992393e81ef85dfac9b15038e85cc01bb662ca396f4ae7f55f47e432349fca2c369dd",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.runtime.nativeaot.linux-arm64/10.0.5/microsoft.netcore.app.runtime.nativeaot.linux-arm64.10.0.5.nupkg",
+ "type": "file"
+ },
+ {
+ "dest": "nuget-sources",
+ "dest-filename": "microsoft.netcore.app.runtime.nativeaot.linux-x64.10.0.5.nupkg",
+ "sha512": "efaeec20e9c7a18bdc8a4eb02c2bc983f69e9a59874aa0d045a0a085ddfa1a8f5060932e5dc62d746124ea6e26455337a448ab4b9fe456a656b5684374be51a4",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.runtime.nativeaot.linux-x64/10.0.5/microsoft.netcore.app.runtime.nativeaot.linux-x64.10.0.5.nupkg",
+ "type": "file"
+ },
{
"dest": "nuget-sources",
"dest-filename": "microsoft.toolkit.uwp.notifications.7.1.3.nupkg",
@@ -442,23 +498,23 @@
},
{
"dest": "nuget-sources",
- "dest-filename": "microsoft.win32.systemevents.10.0.4.nupkg",
- "sha512": "ade3ed5d662bffd80bf7512a98b806bda60cb97a69f0b9bb43b7ce52efc814bdd10d1ac245ce8b9c00fe6eb107352a1a6d79ed0669f8689eb28fdd1ad97ebfd5",
- "url": "https://api.nuget.org/v3-flatcontainer/microsoft.win32.systemevents/10.0.4/microsoft.win32.systemevents.10.0.4.nupkg",
+ "dest-filename": "microsoft.win32.systemevents.10.0.5.nupkg",
+ "sha512": "5d521da0c9c7ce952e0c8008e58a5b558ec367a691b45c8eb363e03a157cfa58a2f78d68dbc1fff64931c25d70b6e12033cb9d4b0a2e176d4a1cf86bba3b349a",
+ "url": "https://api.nuget.org/v3-flatcontainer/microsoft.win32.systemevents/10.0.5/microsoft.win32.systemevents.10.0.5.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "nickvision.desktop.2026.3.3.nupkg",
- "sha512": "28ab1cefc22d48c8644ac95d7ec7f03db60da2b1bc40d08e6c7e878a876b9fe2876560898994dee9bac3e3a75b36dc380279eeb3108342288c33541f885f839f",
- "url": "https://api.nuget.org/v3-flatcontainer/nickvision.desktop/2026.3.3/nickvision.desktop.2026.3.3.nupkg",
+ "dest-filename": "nickvision.desktop.2026.3.6.nupkg",
+ "sha512": "cb288a8606a2e3d0239e95bfa15b314efd9d53a1e567cd3554bd67716058fe5ed9929891a608b8c3e5d8cb58603ead639f598abec38a5af74f79df894fc5a2df",
+ "url": "https://api.nuget.org/v3-flatcontainer/nickvision.desktop/2026.3.6/nickvision.desktop.2026.3.6.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "nickvision.desktop.gnome.2026.3.2.nupkg",
- "sha512": "e2d86a30bc706112b30dc6ed9ade29208c34f6c55a1ae4b0747143caf27a02bbd9c47c0de1654b4aa6bc4ea69c1f6df3805c8e7d74c9e80cf946f46f734547b3",
- "url": "https://api.nuget.org/v3-flatcontainer/nickvision.desktop.gnome/2026.3.2/nickvision.desktop.gnome.2026.3.2.nupkg",
+ "dest-filename": "nickvision.desktop.gnome.2026.3.4.nupkg",
+ "sha512": "aef350db057b4575435e2743b7e671e5b3cfbf774debfb75bb108f6552b7f6dd158e4036aa82dd9fedb8fcde60ab1e4ff127cae7cc54a90c13bfe2e4b23f88b1",
+ "url": "https://api.nuget.org/v3-flatcontainer/nickvision.desktop.gnome/2026.3.4/nickvision.desktop.gnome.2026.3.4.nupkg",
"type": "file"
},
{
@@ -475,6 +531,34 @@
"url": "https://api.nuget.org/v3-flatcontainer/octokit/14.0.0/octokit.14.0.0.nupkg",
"type": "file"
},
+ {
+ "dest": "nuget-sources",
+ "dest-filename": "runtime.linux-arm.microsoft.dotnet.ilcompiler.10.0.5.nupkg",
+ "sha512": "562420e52c95aee6ab49a5807a9519ab9083a6d780f67a040f908eb5d36c81001a5a12435fa696a53b7f5c3749123416508d9dbf6c82f8072dde0da8ffd1b0b8",
+ "url": "https://api.nuget.org/v3-flatcontainer/runtime.linux-arm.microsoft.dotnet.ilcompiler/10.0.5/runtime.linux-arm.microsoft.dotnet.ilcompiler.10.0.5.nupkg",
+ "type": "file"
+ },
+ {
+ "dest": "nuget-sources",
+ "dest-filename": "runtime.linux-arm64.microsoft.dotnet.ilcompiler.10.0.5.nupkg",
+ "sha512": "5e927baee8049942a340c7d77cb45c5385ab1c547a3a29b5afc03f8404a1fc4673af4fc9a88cd432f8b6c43afa77b4b3d14b1d6facc0b098f5a7762e75ff9798",
+ "url": "https://api.nuget.org/v3-flatcontainer/runtime.linux-arm64.microsoft.dotnet.ilcompiler/10.0.5/runtime.linux-arm64.microsoft.dotnet.ilcompiler.10.0.5.nupkg",
+ "type": "file"
+ },
+ {
+ "dest": "nuget-sources",
+ "dest-filename": "runtime.linux-arm64.microsoft.dotnet.ilcompiler.10.0.5.nupkg",
+ "sha512": "5e927baee8049942a340c7d77cb45c5385ab1c547a3a29b5afc03f8404a1fc4673af4fc9a88cd432f8b6c43afa77b4b3d14b1d6facc0b098f5a7762e75ff9798",
+ "url": "https://api.nuget.org/v3-flatcontainer/runtime.linux-arm64.microsoft.dotnet.ilcompiler/10.0.5/runtime.linux-arm64.microsoft.dotnet.ilcompiler.10.0.5.nupkg",
+ "type": "file"
+ },
+ {
+ "dest": "nuget-sources",
+ "dest-filename": "runtime.linux-x64.microsoft.dotnet.ilcompiler.10.0.5.nupkg",
+ "sha512": "1a2f99749abdc41b2597232ff5324056d94c5de3290167f702bc49e3d449d9ba525b594a7359d6115437c48e773201904d28b60fc7e4ffe9853fefa3bc1c43f7",
+ "url": "https://api.nuget.org/v3-flatcontainer/runtime.linux-x64.microsoft.dotnet.ilcompiler/10.0.5/runtime.linux-x64.microsoft.dotnet.ilcompiler.10.0.5.nupkg",
+ "type": "file"
+ },
{
"dest": "nuget-sources",
"dest-filename": "sqlitepclraw.bundle_e_sqlcipher.2.1.11.nupkg",
@@ -505,23 +589,23 @@
},
{
"dest": "nuget-sources",
- "dest-filename": "system.diagnostics.eventlog.10.0.4.nupkg",
- "sha512": "85b278ba32c1381ab60f71610edefa1aae10d33ebc9a12ec57a5439c7ae63731249914a2deebfd16f42bda7269aae50370e6df9bd72ac3be4ff3b25f59efcf13",
- "url": "https://api.nuget.org/v3-flatcontainer/system.diagnostics.eventlog/10.0.4/system.diagnostics.eventlog.10.0.4.nupkg",
+ "dest-filename": "system.diagnostics.eventlog.10.0.5.nupkg",
+ "sha512": "0c1b1bf3d2de0269f881792d62364923e5b64c46608a4a1862141fd09065017796409214528e0c8eae5672d8b15d385242079a67c42660a397163271bb89d9d4",
+ "url": "https://api.nuget.org/v3-flatcontainer/system.diagnostics.eventlog/10.0.5/system.diagnostics.eventlog.10.0.5.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "system.drawing.common.10.0.4.nupkg",
- "sha512": "37fdaa2ccb592cb8561ea4263480a572223534a8a12dc6b636d68c76a622efe7cdcc11ad6804c199dec332b12da79314b4b31df2c75b1dcce0f079422e9e2bd0",
- "url": "https://api.nuget.org/v3-flatcontainer/system.drawing.common/10.0.4/system.drawing.common.10.0.4.nupkg",
+ "dest-filename": "system.drawing.common.10.0.5.nupkg",
+ "sha512": "0dfdef04964a64cc5a78071d17ca1e7e701758dcf6af114d3a1dc91e2645696d5242425b369c32c1441bf1cb4be3ee468ab727629ee47512f0449c39f5839276",
+ "url": "https://api.nuget.org/v3-flatcontainer/system.drawing.common/10.0.5/system.drawing.common.10.0.5.nupkg",
"type": "file"
},
{
"dest": "nuget-sources",
- "dest-filename": "tmds.dbus.0.90.3.nupkg",
- "sha512": "095a19691113aa9401014d10cec729fef24106b130b3e05e4c223b97d6b617972608c612690eab2db132bfce5f561aac8af00a1ba2e4c2b4098c1c406d6023e6",
- "url": "https://api.nuget.org/v3-flatcontainer/tmds.dbus/0.90.3/tmds.dbus.0.90.3.nupkg",
+ "dest-filename": "tmds.dbus.0.91.0.nupkg",
+ "sha512": "22301bcb1a5119ef6f486f03d3a7fb8751af26a36c1b74569be336b583b75425df7166d93af713b4f0a1daa7257e3a5d8034f08e6a8332bed2cc44da22461b1d",
+ "url": "https://api.nuget.org/v3-flatcontainer/tmds.dbus/0.91.0/tmds.dbus.0.91.0.nupkg",
"type": "file"
},
{
diff --git a/license.rtf b/license.rtf
index ac35bb21..89d28122 100644
--- a/license.rtf
+++ b/license.rtf
@@ -1,57 +1,57 @@
-{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff31507\deff0\stshfdbch31505\stshfloch31506\stshfhich31506\stshfbi31507\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f4\fbidi \fswiss\fcharset0\fprq2{\*\panose 020b0604020202020204}Helvetica;}
-{\f34\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria Math;}{\f42\fbidi \fswiss\fcharset0\fprq2 Aptos;}{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}
+{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff0\deff0\stshfdbch31505\stshfloch31506\stshfhich31506\stshfbi0\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f4\fbidi \fswiss\fcharset0\fprq2{\*\panose 020b0604020202020204}Helvetica;}
+{\f34\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria Math;}{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}
{\fdbmajor\f31501\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fhimajor\f31502\fbidi \fswiss\fcharset0\fprq2 Aptos Display;}{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}
{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbminor\f31505\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2 Aptos;}
-{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f1338\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\f1339\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}
-{\f1341\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f1342\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f1343\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}
-{\f1344\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f1345\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f1346\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f1348\fbidi \fswiss\fcharset238\fprq2 Helvetica CE;}
-{\f1349\fbidi \fswiss\fcharset204\fprq2 Helvetica Cyr;}{\f1351\fbidi \fswiss\fcharset161\fprq2 Helvetica Greek;}{\f1352\fbidi \fswiss\fcharset162\fprq2 Helvetica Tur;}{\f1353\fbidi \fswiss\fcharset177\fprq2 Helvetica (Hebrew);}
-{\f1354\fbidi \fswiss\fcharset178\fprq2 Helvetica (Arabic);}{\f1355\fbidi \fswiss\fcharset186\fprq2 Helvetica Baltic;}{\f1356\fbidi \fswiss\fcharset163\fprq2 Helvetica (Vietnamese);}{\f1358\fbidi \froman\fcharset238\fprq2 Cambria Math CE;}
-{\f1359\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr;}{\f1361\fbidi \froman\fcharset161\fprq2 Cambria Math Greek;}{\f1362\fbidi \froman\fcharset162\fprq2 Cambria Math Tur;}{\f1365\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic;}
-{\f1366\fbidi \froman\fcharset163\fprq2 Cambria Math (Vietnamese);}{\f1368\fbidi \fswiss\fcharset238\fprq2 Aptos CE;}{\f1369\fbidi \fswiss\fcharset204\fprq2 Aptos Cyr;}{\f1371\fbidi \fswiss\fcharset161\fprq2 Aptos Greek;}
-{\f1372\fbidi \fswiss\fcharset162\fprq2 Aptos Tur;}{\f1375\fbidi \fswiss\fcharset186\fprq2 Aptos Baltic;}{\f1376\fbidi \fswiss\fcharset163\fprq2 Aptos (Vietnamese);}{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}
-{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}
-{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}
-{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbmajor\f31518\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbmajor\f31519\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}
-{\fdbmajor\f31521\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbmajor\f31522\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbmajor\f31523\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}
-{\fdbmajor\f31524\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbmajor\f31525\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbmajor\f31526\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}
-{\fhimajor\f31528\fbidi \fswiss\fcharset238\fprq2 Aptos Display CE;}{\fhimajor\f31529\fbidi \fswiss\fcharset204\fprq2 Aptos Display Cyr;}{\fhimajor\f31531\fbidi \fswiss\fcharset161\fprq2 Aptos Display Greek;}
-{\fhimajor\f31532\fbidi \fswiss\fcharset162\fprq2 Aptos Display Tur;}{\fhimajor\f31535\fbidi \fswiss\fcharset186\fprq2 Aptos Display Baltic;}{\fhimajor\f31536\fbidi \fswiss\fcharset163\fprq2 Aptos Display (Vietnamese);}
-{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}
-{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}
-{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}
-{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}
-{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}
-{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbminor\f31558\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbminor\f31559\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}
-{\fdbminor\f31561\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbminor\f31562\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbminor\f31563\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}
-{\fdbminor\f31564\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbminor\f31565\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbminor\f31566\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}
-{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Aptos CE;}{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Aptos Cyr;}{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Aptos Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Aptos Tur;}
-{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Aptos Baltic;}{\fhiminor\f31576\fbidi \fswiss\fcharset163\fprq2 Aptos (Vietnamese);}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}
-{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}
-{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}
-{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;
-\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;\red0\green0\blue0;\red0\green0\blue0;}
-{\*\defchp \fs24\kerning2\loch\af31506\hich\af31506\dbch\af31505 }{\*\defpap \ql \li0\ri0\sa160\sl278\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 }\noqfpromote {\stylesheet{\ql \li0\ri0\sa160\sl278\slmult1
-\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31507\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\kerning2\loch\f31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033
-\snext0 \sqformat \spriority0 Normal;}{\*\cs10 \additive \sunhideused \spriority1 Default Paragraph Font;}{\*
+{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f46\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\f47\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}
+{\f49\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f50\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f51\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f52\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}
+{\f53\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f54\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f56\fbidi \fswiss\fcharset238\fprq2 Helvetica CE;}{\f57\fbidi \fswiss\fcharset204\fprq2 Helvetica Cyr;}
+{\f59\fbidi \fswiss\fcharset161\fprq2 Helvetica Greek;}{\f60\fbidi \fswiss\fcharset162\fprq2 Helvetica Tur;}{\f61\fbidi \fswiss\fcharset177\fprq2 Helvetica (Hebrew);}{\f62\fbidi \fswiss\fcharset178\fprq2 Helvetica (Arabic);}
+{\f63\fbidi \fswiss\fcharset186\fprq2 Helvetica Baltic;}{\f64\fbidi \fswiss\fcharset163\fprq2 Helvetica (Vietnamese);}{\f66\fbidi \froman\fcharset238\fprq2 Cambria Math CE;}{\f67\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr;}
+{\f69\fbidi \froman\fcharset161\fprq2 Cambria Math Greek;}{\f70\fbidi \froman\fcharset162\fprq2 Cambria Math Tur;}{\f73\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic;}{\f74\fbidi \froman\fcharset163\fprq2 Cambria Math (Vietnamese);}
+{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}
+{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}
+{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbmajor\f31518\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}
+{\fdbmajor\f31519\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbmajor\f31521\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbmajor\f31522\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}
+{\fdbmajor\f31523\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbmajor\f31524\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbmajor\f31525\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}
+{\fdbmajor\f31526\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhimajor\f31528\fbidi \fswiss\fcharset238\fprq2 Aptos Display CE;}{\fhimajor\f31529\fbidi \fswiss\fcharset204\fprq2 Aptos Display Cyr;}
+{\fhimajor\f31531\fbidi \fswiss\fcharset161\fprq2 Aptos Display Greek;}{\fhimajor\f31532\fbidi \fswiss\fcharset162\fprq2 Aptos Display Tur;}{\fhimajor\f31535\fbidi \fswiss\fcharset186\fprq2 Aptos Display Baltic;}
+{\fhimajor\f31536\fbidi \fswiss\fcharset163\fprq2 Aptos Display (Vietnamese);}{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}
+{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}
+{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}
+{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}
+{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}
+{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbminor\f31558\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}
+{\fdbminor\f31559\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbminor\f31561\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbminor\f31562\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}
+{\fdbminor\f31563\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbminor\f31564\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbminor\f31565\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}
+{\fdbminor\f31566\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Aptos CE;}{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Aptos Cyr;}
+{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Aptos Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Aptos Tur;}{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Aptos Baltic;}
+{\fhiminor\f31576\fbidi \fswiss\fcharset163\fprq2 Aptos (Vietnamese);}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}
+{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}
+{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}}
+{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;
+\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;\red0\green0\blue0;\red0\green0\blue0;}{\*\defchp \fs24\kerning2\loch\af31506\hich\af31506\dbch\af31505 }{\*\defpap
+\ql \li0\ri0\sa160\sl278\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 }\noqfpromote {\stylesheet{\ql \li0\ri0\sa160\sl278\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1
+\af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\kerning2\loch\f31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 \snext0 \sqformat \spriority0 Normal;}{\*\cs10 \additive \sunhideused \spriority1 Default Paragraph Font;}{\*
\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tblind0\tblindtype3\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa160\sl278\slmult1
-\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31507\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\kerning2\loch\f31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033
-\snext11 \ssemihidden \sunhideused Normal Table;}}{\*\rsidtbl \rsid872392\rsid4613879\rsid9311982}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info
-{\operator Nicholas Logozzo}{\creatim\yr2025\mo11\dy28\hr12\min26}{\revtim\yr2025\mo11\dy28\hr12\min26}{\version2}{\edmins0}{\nofpages1}{\nofwords157}{\nofchars897}{\nofcharsws1052}{\vern5}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/20
+\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\kerning2\loch\f31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033
+\snext11 \ssemihidden \sunhideused Normal Table;}}{\*\rsidtbl \rsid669339\rsid872392\rsid4613879\rsid9311982}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info
+{\operator Nicholas Logozzo}{\creatim\yr2025\mo11\dy28\hr12\min26}{\revtim\yr2026\mo3\dy20\hr12\min44}{\version3}{\edmins1}{\nofpages1}{\nofwords157}{\nofchars897}{\nofcharsws1052}{\vern11}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/20
03/wordml}}\paperw12240\paperh15840\margl1440\margr1440\margt1440\margb1440\gutter0\ltrsect
\widowctrl\ftnbj\aenddoc\trackmoves0\trackformatting1\donotembedsysfont0\relyonvml0\donotembedlingdata1\grfdocevents0\validatexml0\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors0\horzdoc\dghspace120\dgvspace120\dghorigin1701
\dgvorigin1984\dghshow0\dgvshow3\jcompress\viewkind1\viewscale100\rsidroot9311982 \fet0{\*\wgrffmtfilter 2450}\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\sectdefaultcl\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2
\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6
\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang
-{\pntxtb (}{\pntxta )}}\pard\plain \ltrpar\ql \li0\ri0\sa180\widctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid9311982 \rtlch\fcs1 \af31507\afs24\alang1025 \ltrch\fcs0
+{\pntxtb (}{\pntxta )}}\pard\plain \ltrpar\ql \li0\ri0\sa180\widctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid9311982 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0
\fs24\lang1033\langfe1033\kerning2\loch\af31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \ab\af4\afs28 \ltrch\fcs0 \b\f4\fs28\kerning0\insrsid9311982\charrsid9311982 \hich\af4\dbch\af31505\loch\f4 Copyright }{\rtlch\fcs1
-\ab\af4\afs28 \ltrch\fcs0 \b\f4\fs28\kerning0\insrsid9311982 \hich\af4\dbch\af31505\loch\f4 2021-\hich\af4\dbch\af31505\loch\f4 2025}{\rtlch\fcs1 \ab\af4\afs28 \ltrch\fcs0 \b\f4\fs28\kerning0\insrsid9311982\charrsid9311982 \hich\af4\dbch\af31505\loch\f4
-}{\rtlch\fcs1 \ab\af4\afs28 \ltrch\fcs0 \b\f4\fs28\kerning0\insrsid9311982 \hich\af4\dbch\af31505\loch\f4 Nickvision}{\rtlch\fcs1 \ab\af4\afs28 \ltrch\fcs0 \b\f4\fs28\kerning0\insrsid9311982\charrsid9311982
-\par }{\rtlch\fcs1 \af4 \ltrch\fcs0 \f4\kerning0\insrsid9311982\charrsid9311982 \hich\af4\dbch\af31505\loch\f4 \hich\f4 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \'93
-\loch\f4 \hich\f4 Software\'94\loch\f4 ), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, m\hich\af4\dbch\af31505\loch\f4
-erge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+\ab\af4\afs28 \ltrch\fcs0 \b\f4\fs28\kerning0\insrsid9311982 \hich\af4\dbch\af31505\loch\f4 2021-202}{\rtlch\fcs1 \ab\af4\afs28 \ltrch\fcs0 \b\f4\fs28\kerning0\insrsid669339 \hich\af4\dbch\af31505\loch\f4 6}{\rtlch\fcs1 \ab\af4\afs28 \ltrch\fcs0
+\b\f4\fs28\kerning0\insrsid9311982\charrsid9311982 \hich\af4\dbch\af31505\loch\f4 }{\rtlch\fcs1 \ab\af4\afs28 \ltrch\fcs0 \b\f4\fs28\kerning0\insrsid9311982 \hich\af4\dbch\af31505\loch\f4 Nickvision}{\rtlch\fcs1 \ab\af4\afs28 \ltrch\fcs0
+\b\f4\fs28\kerning0\insrsid9311982\charrsid9311982
+\par }{\rtlch\fcs1 \af4 \ltrch\fcs0 \f4\kerning0\insrsid9311982\charrsid9311982 \hich\af4\dbch\af31505\loch\f4 Permi\hich\af4\dbch\af31505\loch\f4 \hich\f4
+ssion is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \'93\loch\f4 \hich\f4 Software\'94\loch\f4
+), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge,\hich\af4\dbch\af31505\loch\f4
+ publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
\par
-\par \hich\af4\dbch\af31505\loch\f4 The above copyright notice and this permission notice shall be included in all\hich\af4\dbch\af31505\loch\f4 copies or substantial portions of the Software.
+\par \hich\af4\dbch\af31505\loch\f4 The above copyright notice and this permission notice shall be included in all copi\hich\af4\dbch\af31505\loch\f4 es or substantial portions of the Software.
\par
\par }\pard \ltrpar\ql \li0\ri0\sa180\widctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af4 \ltrch\fcs0 \f4\kerning0\insrsid9311982\charrsid9311982 \hich\af4\dbch\af31505\loch\f4 \hich\f4 THE SOFTWARE IS PROVIDED \'93\loch\f4 \hich\f4 AS IS\'94
\loch\f4 , WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
@@ -142,35 +142,25 @@ d048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe514173d98505
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Top of Form;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Bottom of Form;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal (Web);\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Acronym;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Address;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Cite;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Code;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Definition;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Keyboard;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Preformatted;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Sample;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Typewriter;
-\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Variable;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal Table;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation subject;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 No List;
-\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Simple 1;
-\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Simple 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Simple 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Classic 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Classic 2;
-\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Classic 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Classic 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Colorful 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Colorful 2;
-\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Colorful 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 3;
-\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 2;
-\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 6;
-\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 7;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 8;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 2;
-\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 6;
-\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 7;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 8;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table 3D effects 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table 3D effects 2;
-\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table 3D effects 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Contemporary;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Elegant;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Professional;
-\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Subtle 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Subtle 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Web 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Web 2;
-\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Web 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Balloon Text;\lsdpriority39 \lsdlocked0 Table Grid;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Theme;\lsdsemihidden1 \lsdlocked0 Placeholder Text;
-\lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing;\lsdpriority60 \lsdlocked0 Light Shading;\lsdpriority61 \lsdlocked0 Light List;\lsdpriority62 \lsdlocked0 Light Grid;\lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdpriority64 \lsdlocked0 Medium Shading 2;
-\lsdpriority65 \lsdlocked0 Medium List 1;\lsdpriority66 \lsdlocked0 Medium List 2;\lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdpriority68 \lsdlocked0 Medium Grid 2;\lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdpriority70 \lsdlocked0 Dark List;
-\lsdpriority71 \lsdlocked0 Colorful Shading;\lsdpriority72 \lsdlocked0 Colorful List;\lsdpriority73 \lsdlocked0 Colorful Grid;\lsdpriority60 \lsdlocked0 Light Shading Accent 1;\lsdpriority61 \lsdlocked0 Light List Accent 1;
-\lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 1;\lsdsemihidden1 \lsdlocked0 Revision;
-\lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 1;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;
-\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 1;\lsdpriority72 \lsdlocked0 Colorful List Accent 1;
-\lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdpriority60 \lsdlocked0 Light Shading Accent 2;\lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdpriority62 \lsdlocked0 Light Grid Accent 2;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2;
-\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 2;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;
-\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2;\lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 2;\lsdpriority72 \lsdlocked0 Colorful List Accent 2;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;
-\lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdpriority61 \lsdlocked0 Light List Accent 3;\lsdpriority62 \lsdlocked0 Light Grid Accent 3;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3;
-\lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 3;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;
-\lsdpriority70 \lsdlocked0 Dark List Accent 3;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 3;\lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 3;\lsdpriority60 \lsdlocked0 Light Shading Accent 4;
-\lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdpriority62 \lsdlocked0 Light Grid Accent 4;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 4;
-\lsdpriority66 \lsdlocked0 Medium List 2 Accent 4;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdpriority70 \lsdlocked0 Dark List Accent 4;
-\lsdpriority71 \lsdlocked0 Colorful Shading Accent 4;\lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdpriority60 \lsdlocked0 Light Shading Accent 5;\lsdpriority61 \lsdlocked0 Light List Accent 5;
-\lsdpriority62 \lsdlocked0 Light Grid Accent 5;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 5;
+\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Variable;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation subject;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 No List;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 1;
+\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Balloon Text;\lsdpriority39 \lsdlocked0 Table Grid;
+\lsdsemihidden1 \lsdlocked0 Placeholder Text;\lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing;\lsdpriority60 \lsdlocked0 Light Shading;\lsdpriority61 \lsdlocked0 Light List;\lsdpriority62 \lsdlocked0 Light Grid;
+\lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdpriority64 \lsdlocked0 Medium Shading 2;\lsdpriority65 \lsdlocked0 Medium List 1;\lsdpriority66 \lsdlocked0 Medium List 2;\lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdpriority68 \lsdlocked0 Medium Grid 2;
+\lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdpriority70 \lsdlocked0 Dark List;\lsdpriority71 \lsdlocked0 Colorful Shading;\lsdpriority72 \lsdlocked0 Colorful List;\lsdpriority73 \lsdlocked0 Colorful Grid;\lsdpriority60 \lsdlocked0 Light Shading Accent 1;
+\lsdpriority61 \lsdlocked0 Light List Accent 1;\lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 1;
+\lsdsemihidden1 \lsdlocked0 Revision;\lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 1;
+\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 1;
+\lsdpriority72 \lsdlocked0 Colorful List Accent 1;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdpriority60 \lsdlocked0 Light Shading Accent 2;\lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdpriority62 \lsdlocked0 Light Grid Accent 2;
+\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 2;
+\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2;\lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 2;
+\lsdpriority72 \lsdlocked0 Colorful List Accent 2;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;\lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdpriority61 \lsdlocked0 Light List Accent 3;\lsdpriority62 \lsdlocked0 Light Grid Accent 3;
+\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 3;
+\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;\lsdpriority70 \lsdlocked0 Dark List Accent 3;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 3;
+\lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 3;\lsdpriority60 \lsdlocked0 Light Shading Accent 4;\lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdpriority62 \lsdlocked0 Light Grid Accent 4;
+\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 4;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 4;
+\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdpriority70 \lsdlocked0 Dark List Accent 4;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 4;
+\lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdpriority60 \lsdlocked0 Light Shading Accent 5;\lsdpriority61 \lsdlocked0 Light List Accent 5;\lsdpriority62 \lsdlocked0 Light Grid Accent 5;
+\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 5;
\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5;\lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 5;
\lsdpriority72 \lsdlocked0 Colorful List Accent 5;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdpriority61 \lsdlocked0 Light List Accent 6;\lsdpriority62 \lsdlocked0 Light Grid Accent 6;
\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 6;
@@ -212,8 +202,8 @@ fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffff
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
-ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e5000000000000000000000000409c
-a5308c60dc01feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000
+ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e50000000000000000000000003018
+80c288b8dc01feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000105000000000000}}
\ No newline at end of file
diff --git a/resources/linux/org.nickvision.application.metainfo.xml b/resources/linux/org.nickvision.application.metainfo.xml
index d125a025..27ac80f2 100644
--- a/resources/linux/org.nickvision.application.metainfo.xml
+++ b/resources/linux/org.nickvision.application.metainfo.xml
@@ -47,7 +47,7 @@
360
-
+
- Initial Release
diff --git a/resources/po/application.pot b/resources/po/application.pot
index e64cecb1..bc282a51 100644
--- a/resources/po/application.pot
+++ b/resources/po/application.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-03-11 20:58-0400\n"
+"POT-Creation-Date: 2026-03-21 10:59-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -57,22 +57,22 @@ msgid "Open a folder (or drag one into the app) to get started"
msgstr ""
#: Nickvision.Application.GNOME/Blueprints/PreferencesDialog.blp:12
-#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:26
+#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:25
msgid "User Interface"
msgstr ""
#: Nickvision.Application.GNOME/Blueprints/PreferencesDialog.blp:15
-#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:27
+#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:26
msgid "Theme"
msgstr ""
#: Nickvision.Application.GNOME/Blueprints/PreferencesDialog.blp:24
-#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:29
+#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:28
msgid "Translation Language"
msgstr ""
#: Nickvision.Application.GNOME/Blueprints/PreferencesDialog.blp:25
-#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:30
+#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:29
msgid "An application restart is required for a change to take effect"
msgstr ""
@@ -123,93 +123,93 @@ msgstr[1] ""
msgid "GitHub Repo"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:38
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:39
msgid "Application"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:39
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:40
msgid "Create new Nickvision applications."
msgstr ""
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:40
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:41
msgid "Matrix Chat"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:41
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:43
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:42
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:44
msgid "Nicholas Logozzo"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:42
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:43
msgid "Contributors on GitHub ❤️"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:44
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:45
msgid "Fyodor Sobolev"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:45
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:46
msgid "DaPigGuy"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:46
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:47
msgid "David Lapshin"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:47
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:48
msgid "translation-credits"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:54
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:55
msgctxt "Night"
msgid "Good Morning!"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:55
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:56
msgctxt "Morning"
msgid "Good Morning!"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:56
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:57
msgid "Good Afternoon!"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:57
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:58
msgid "Good Evening!"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:58
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:59
msgid "Good Day!"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:97
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:98
#, csharp-format
msgid "New {0} update available: {1}"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:108
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:109
msgid "No update available"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:124
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:125
msgid "Unable to download and install the update"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/PreferencesViewController.cs:28
+#: Nickvision.Application.Shared/Controllers/PreferencesViewController.cs:29
msgid "System"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/PreferencesViewController.cs:39
+#: Nickvision.Application.Shared/Controllers/PreferencesViewController.cs:40
msgctxt "Theme"
msgid "Light"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/PreferencesViewController.cs:40
+#: Nickvision.Application.Shared/Controllers/PreferencesViewController.cs:41
msgctxt "Theme"
msgid "Dark"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/PreferencesViewController.cs:41
+#: Nickvision.Application.Shared/Controllers/PreferencesViewController.cs:42
msgctxt "Theme"
msgid "System"
msgstr ""
@@ -307,7 +307,7 @@ msgid "Discussions"
msgstr ""
#: Nickvision.Application.WinUI/Views/MainWindow.xaml.cs:82
-#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:25
+#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:24
msgid "Settings"
msgstr ""
@@ -324,14 +324,14 @@ msgstr ""
msgid "Downloading update: {0}%"
msgstr ""
-#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:32
+#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:31
msgid "Receive Preview Updates"
msgstr ""
-#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:33
+#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:32
msgid "On"
msgstr ""
-#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:34
+#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:33
msgid "Off"
msgstr ""
diff --git a/resources/po/ru.po b/resources/po/ru.po
index 68f6ba90..c7d37d38 100644
--- a/resources/po/ru.po
+++ b/resources/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-03-01 19:15-0500\n"
+"POT-Creation-Date: 2026-03-21 10:58-0400\n"
"PO-Revision-Date: 2023-05-23 06:33+0300\n"
"Last-Translator: Fyodor Sobolev\n"
"Language-Team: Russian\n"
@@ -58,22 +58,22 @@ msgid "Open a folder (or drag one into the app) to get started"
msgstr "Откройте или перетащите папку, чтобы начать."
#: Nickvision.Application.GNOME/Blueprints/PreferencesDialog.blp:12
-#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:26
+#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:25
msgid "User Interface"
msgstr "Интерфейс"
#: Nickvision.Application.GNOME/Blueprints/PreferencesDialog.blp:15
-#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:27
+#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:26
msgid "Theme"
msgstr "Тема"
#: Nickvision.Application.GNOME/Blueprints/PreferencesDialog.blp:24
-#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:29
+#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:28
msgid "Translation Language"
msgstr ""
#: Nickvision.Application.GNOME/Blueprints/PreferencesDialog.blp:25
-#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:30
+#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:29
msgid "An application restart is required for a change to take effect"
msgstr ""
@@ -126,98 +126,98 @@ msgstr[2] "В папке {0} файлов."
msgid "GitHub Repo"
msgstr "Репозиторий GitHub"
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:38
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:39
msgid "Application"
msgstr "Application"
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:39
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:40
#, fuzzy
msgid "Create new Nickvision applications."
msgstr "Создавайте новые приложения Nickvision"
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:40
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:41
msgid "Matrix Chat"
msgstr "Чат Matrix"
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:41
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:43
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:42
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:44
msgid "Nicholas Logozzo"
msgstr "Nicholas Logozzo"
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:42
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:43
#, fuzzy
msgid "Contributors on GitHub ❤️"
msgstr "Соавторы на GitHub ❤️"
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:44
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:45
msgid "Fyodor Sobolev"
msgstr "Фёдор Соболев"
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:45
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:46
msgid "DaPigGuy"
msgstr "DaPigGuy"
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:46
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:47
msgid "David Lapshin"
msgstr "Давид Лапшин"
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:47
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:48
#, fuzzy
msgid "translation-credits"
msgstr "Фёдор Соболев https://github.com/fsobolev"
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:54
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:55
msgctxt "Night"
msgid "Good Morning!"
msgstr "Доброй ночи!"
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:55
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:56
msgctxt "Morning"
msgid "Good Morning!"
msgstr "Доброе утро!"
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:56
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:57
msgid "Good Afternoon!"
msgstr "Добрый день!"
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:57
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:58
msgid "Good Evening!"
msgstr "Добрый вечер!"
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:58
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:59
msgid "Good Day!"
msgstr "Здравствуйте!"
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:97
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:98
#, fuzzy, csharp-format
msgid "New {0} update available: {1}"
msgstr "Application"
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:108
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:109
#, fuzzy
msgid "No update available"
msgstr "Application"
-#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:124
+#: Nickvision.Application.Shared/Controllers/MainWindowController.cs:125
msgid "Unable to download and install the update"
msgstr ""
-#: Nickvision.Application.Shared/Controllers/PreferencesViewController.cs:28
+#: Nickvision.Application.Shared/Controllers/PreferencesViewController.cs:29
#, fuzzy
msgid "System"
msgstr "Системная"
-#: Nickvision.Application.Shared/Controllers/PreferencesViewController.cs:39
+#: Nickvision.Application.Shared/Controllers/PreferencesViewController.cs:40
msgctxt "Theme"
msgid "Light"
msgstr "Светлая"
-#: Nickvision.Application.Shared/Controllers/PreferencesViewController.cs:40
+#: Nickvision.Application.Shared/Controllers/PreferencesViewController.cs:41
msgctxt "Theme"
msgid "Dark"
msgstr "Тёмная"
-#: Nickvision.Application.Shared/Controllers/PreferencesViewController.cs:41
+#: Nickvision.Application.Shared/Controllers/PreferencesViewController.cs:42
msgctxt "Theme"
msgid "System"
msgstr "Системная"
@@ -316,7 +316,7 @@ msgid "Discussions"
msgstr ""
#: Nickvision.Application.WinUI/Views/MainWindow.xaml.cs:82
-#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:25
+#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:24
msgid "Settings"
msgstr ""
@@ -334,16 +334,16 @@ msgstr ""
msgid "Downloading update: {0}%"
msgstr ""
-#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:32
+#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:31
msgid "Receive Preview Updates"
msgstr ""
-#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:33
+#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:32
#, fuzzy
msgid "On"
msgstr "Открыть"
-#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:34
+#: Nickvision.Application.WinUI/Views/SettingsPage.xaml.cs:33
msgid "Off"
msgstr ""