mirror of
https://github.com/SpaceTimee/Sheas-Cealer.git
synced 2025-09-14 13:56:56 +08:00
1.1.1 -> 1.1.2 第8次更新
This commit is contained in:
parent
0810b64fe4
commit
ea201387dd
@ -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))
|
||||
{
|
||||
|
@ -23,6 +23,7 @@
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework>
|
||||
<SupportedOSPlatformVersion>10.0.17763.0</SupportedOSPlatformVersion>
|
||||
<WindowsSdkPackageVersion>10.0.22621.41</WindowsSdkPackageVersion>
|
||||
<RootNamespace>Sheas_Cealer</RootNamespace>
|
||||
<Nullable>enable</Nullable>
|
||||
<UseWPF>true</UseWPF>
|
||||
|
Loading…
Reference in New Issue
Block a user