mirror of
https://github.com/2dust/v2rayN.git
synced 2025-10-19 06:44:41 +00:00
Compare commits
No commits in common. "b25d4d57bd10ac3448f095b6a40bd3d1feaf1742" and "dc4611a2589a2a9f79fbdee1ba3761d316b2eead" have entirely different histories.
b25d4d57bd
...
dc4611a258
4 changed files with 3 additions and 5 deletions
|
@ -248,7 +248,7 @@ public class MainWindowViewModel : MyReactiveObject
|
|||
{
|
||||
_config.UiItem.ShowInTaskbar = true;
|
||||
|
||||
//await ConfigHandler.InitBuiltinRouting(_config);
|
||||
await ConfigHandler.InitBuiltinRouting(_config);
|
||||
await ConfigHandler.InitBuiltinDNS(_config);
|
||||
await ConfigHandler.InitBuiltinFullConfigTemplate(_config);
|
||||
await ProfileExManager.Instance.Init();
|
||||
|
|
|
@ -238,7 +238,6 @@ public class StatusBarViewModel : MyReactiveObject
|
|||
|
||||
private async Task Init()
|
||||
{
|
||||
await ConfigHandler.InitBuiltinRouting(_config);
|
||||
await RefreshRoutingsMenu();
|
||||
await InboundDisplayStatus();
|
||||
await ChangeSystemProxyAsync(_config.SystemProxyItem.SysProxyType, true);
|
||||
|
|
|
@ -15,7 +15,6 @@ public partial class MsgView : ReactiveUserControl<MsgViewModel>
|
|||
public MsgView()
|
||||
{
|
||||
InitializeComponent();
|
||||
txtMsg.TextArea.TextView.Options.EnableHyperlinks = false;
|
||||
ViewModel = new MsgViewModel(UpdateViewHandler);
|
||||
|
||||
this.WhenActivated(disposables =>
|
||||
|
|
|
@ -3,13 +3,13 @@ using Avalonia;
|
|||
using Avalonia.Controls;
|
||||
using Avalonia.Input;
|
||||
using Avalonia.Interactivity;
|
||||
using Avalonia.ReactiveUI;
|
||||
using Avalonia.VisualTree;
|
||||
using ReactiveUI;
|
||||
using v2rayN.Desktop.Base;
|
||||
|
||||
namespace v2rayN.Desktop.Views;
|
||||
|
||||
public partial class ProfilesSelectWindow : WindowBase<ProfilesSelectViewModel>
|
||||
public partial class ProfilesSelectWindow : ReactiveWindow<ProfilesSelectViewModel>
|
||||
{
|
||||
private static Config _config;
|
||||
|
||||
|
|
Loading…
Reference in a new issue