mirror of
https://github.com/2dust/v2rayN.git
synced 2026-04-16 04:25:45 +00:00
Code clean
Some checks are pending
release Linux / build (Release) (push) Waiting to run
release Linux / deb (push) Blocked by required conditions
release Linux / rpm (push) Blocked by required conditions
release macOS / build (Release) (push) Waiting to run
release Windows desktop (Avalonia UI) / build (Release) (push) Waiting to run
release Windows / build (Release) (push) Waiting to run
Some checks are pending
release Linux / build (Release) (push) Waiting to run
release Linux / deb (push) Blocked by required conditions
release Linux / rpm (push) Blocked by required conditions
release macOS / build (Release) (push) Waiting to run
release Windows desktop (Avalonia UI) / build (Release) (push) Waiting to run
release Windows / build (Release) (push) Waiting to run
This commit is contained in:
parent
55b08de5fe
commit
75f2cbaef9
4 changed files with 5 additions and 4 deletions
|
|
@ -1,5 +1,3 @@
|
||||||
using System.ComponentModel.DataAnnotations;
|
|
||||||
|
|
||||||
namespace ServiceLib.Handler.Builder;
|
namespace ServiceLib.Handler.Builder;
|
||||||
|
|
||||||
public record CoreConfigContextBuilderResult(CoreConfigContext Context, NodeValidatorResult ValidatorResult)
|
public record CoreConfigContextBuilderResult(CoreConfigContext Context, NodeValidatorResult ValidatorResult)
|
||||||
|
|
|
||||||
|
|
@ -306,6 +306,7 @@ public sealed class AppManager
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma warning disable CS0618
|
#pragma warning disable CS0618
|
||||||
|
|
||||||
public async Task MigrateProfileExtra()
|
public async Task MigrateProfileExtra()
|
||||||
{
|
{
|
||||||
await MigrateProfileExtraGroup();
|
await MigrateProfileExtraGroup();
|
||||||
|
|
@ -500,6 +501,7 @@ public sealed class AppManager
|
||||||
|
|
||||||
//await ProfileGroupItemManager.Instance.ClearAll();
|
//await ProfileGroupItemManager.Instance.ClearAll();
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma warning restore CS0618
|
#pragma warning restore CS0618
|
||||||
|
|
||||||
#endregion SqliteHelper
|
#endregion SqliteHelper
|
||||||
|
|
|
||||||
|
|
@ -91,6 +91,8 @@ public partial class JsonEditor : UserControl
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Copy_Click(object? sender, RoutedEventArgs e) => Editor.Copy();
|
private void Copy_Click(object? sender, RoutedEventArgs e) => Editor.Copy();
|
||||||
|
|
||||||
private void Paste_Click(object? sender, RoutedEventArgs e) => Editor.Paste();
|
private void Paste_Click(object? sender, RoutedEventArgs e) => Editor.Paste();
|
||||||
|
|
||||||
private void SelectAll_Click(object? sender, RoutedEventArgs e) => Editor.SelectAll();
|
private void SelectAll_Click(object? sender, RoutedEventArgs e) => Editor.SelectAll();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -894,7 +894,6 @@
|
||||||
Grid.Column="1"
|
Grid.Column="1"
|
||||||
Margin="{StaticResource Margin4}"
|
Margin="{StaticResource Margin4}"
|
||||||
HorizontalAlignment="Left" />
|
HorizontalAlignment="Left" />
|
||||||
|
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<Separator
|
<Separator
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue