1.1.1 -> 1.1.2 第8次更新

This commit is contained in:
Space Time 2024-10-01 19:36:22 +08:00
parent 0810b64fe4
commit ea201387dd
2 changed files with 6 additions and 5 deletions

View File

@ -34,7 +34,7 @@ internal partial class MainPres : ObservableObject
[ObservableProperty]
private bool? isLightTheme = null;
private partial void OnIsLightThemeChanged(bool? value)
partial void OnIsLightThemeChanged(bool? value)
{
PaletteHelper paletteHelper = new();
Theme newTheme = paletteHelper.GetTheme();
@ -45,7 +45,7 @@ internal partial class MainPres : ObservableObject
[ObservableProperty]
private string browserPath;
private partial void OnBrowserPathChanged(string value)
partial void OnBrowserPathChanged(string value)
{
if (File.Exists(value) && Path.GetFileName(value).ToLowerInvariant().EndsWith(".exe"))
{
@ -56,7 +56,7 @@ internal partial class MainPres : ObservableObject
[ObservableProperty]
private string upstreamUrl;
private partial void OnUpstreamUrlChanged(string value)
partial void OnUpstreamUrlChanged(string value)
{
if (MainConst.UpstreamUrlRegex().IsMatch(value))
{
@ -67,7 +67,7 @@ internal partial class MainPres : ObservableObject
[ObservableProperty]
private string extraArgs;
private partial void OnExtraArgsChanged(string value)
partial void OnExtraArgsChanged(string value)
{
if (MainConst.ExtraArgsRegex().IsMatch(value))
{

View File

@ -22,7 +22,8 @@
<Copyright>Copyright © 2077</Copyright>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework>
<SupportedOSPlatformVersion>10.0.17763.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion>10.0.17763.0</SupportedOSPlatformVersion>
<WindowsSdkPackageVersion>10.0.22621.41</WindowsSdkPackageVersion>
<RootNamespace>Sheas_Cealer</RootNamespace>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>