mirror of
https://github.com/2dust/v2rayN.git
synced 2025-10-27 10:40:08 +00:00
Compare commits
7 commits
aecd0c5fb3
...
5ae46beaa5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5ae46beaa5 | ||
|
|
8e6b99d94a | ||
|
|
8c2f3446f8 | ||
|
|
4e68325fe5 | ||
|
|
3158e400ae | ||
|
|
8e0c5cb9aa | ||
|
|
fff838fa85 |
6 changed files with 6 additions and 7 deletions
|
|
@ -28,7 +28,7 @@ Package: v2rayN
|
|||
Version: $Version
|
||||
Architecture: $Arch2
|
||||
Maintainer: https://github.com/2dust/v2rayN
|
||||
Depends: desktop-file-utils
|
||||
Depends: desktop-file-utils, xdg-utils
|
||||
Description: A GUI client for Windows and Linux, support Xray core and sing-box-core and others
|
||||
EOF
|
||||
|
||||
|
|
|
|||
|
|
@ -615,7 +615,7 @@ Source0: __PKGROOT__.tar.gz
|
|||
|
||||
# Runtime dependencies (Avalonia / X11 / Fonts / GL)
|
||||
Requires: libX11, libXrandr, libXcursor, libXi, libXext, libxcb, libXrender, libXfixes, libXinerama, libxkbcommon
|
||||
Requires: fontconfig, freetype, cairo, pango, mesa-libEGL, mesa-libGL
|
||||
Requires: fontconfig, freetype, cairo, pango, mesa-libEGL, mesa-libGL, xdg-utils
|
||||
|
||||
%description
|
||||
v2rayN Linux for Red Hat Enterprise Linux
|
||||
|
|
|
|||
|
|
@ -235,6 +235,7 @@ public class MainWindowViewModel : MyReactiveObject
|
|||
{
|
||||
await StatisticsManager.Instance.Init(_config, UpdateStatisticsHandler);
|
||||
}
|
||||
await RefreshServers();
|
||||
|
||||
BlReloadEnabled = true;
|
||||
await Reload();
|
||||
|
|
@ -487,7 +488,7 @@ public class MainWindowViewModel : MyReactiveObject
|
|||
}
|
||||
else if (Utils.IsLinux())
|
||||
{
|
||||
ProcUtils.ProcessStart("nautilus", path);
|
||||
ProcUtils.ProcessStart("xdg-open", path);
|
||||
}
|
||||
else if (Utils.IsOSX())
|
||||
{
|
||||
|
|
|
|||
|
|
@ -257,7 +257,7 @@ public class ProfilesViewModel : MyReactiveObject
|
|||
SelectedMoveToGroup = new();
|
||||
|
||||
await RefreshSubscriptions();
|
||||
await RefreshServers();
|
||||
//await RefreshServers();
|
||||
}
|
||||
|
||||
#endregion Init
|
||||
|
|
|
|||
|
|
@ -112,7 +112,6 @@ public partial class ProfilesView : ReactiveUserControl<ProfilesViewModel>
|
|||
});
|
||||
|
||||
RestoreUI();
|
||||
ViewModel?.RefreshServers();
|
||||
}
|
||||
|
||||
private async void LstProfiles_Sorting(object? sender, DataGridColumnEventArgs e)
|
||||
|
|
|
|||
|
|
@ -106,7 +106,6 @@ public partial class ProfilesView
|
|||
});
|
||||
|
||||
RestoreUI();
|
||||
ViewModel?.RefreshServers();
|
||||
}
|
||||
|
||||
#region Event
|
||||
|
|
|
|||
Loading…
Reference in a new issue