diff --git a/ProxySU/MainWindow.xaml b/ProxySU/MainWindow.xaml index 41fe76f..bf4547f 100644 --- a/ProxySU/MainWindow.xaml +++ b/ProxySU/MainWindow.xaml @@ -5,7 +5,7 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:ProxySU" mc:Ignorable="d" - Title="ProxySU - v2.4.6" Height="675" Width="650"> + Title="ProxySU - v2.4.7" Height="675" Width="650"> diff --git a/ProxySU/MainWindow.xaml.cs b/ProxySU/MainWindow.xaml.cs index 04adc3d..ac0fc65 100644 --- a/ProxySU/MainWindow.xaml.cs +++ b/ProxySU/MainWindow.xaml.cs @@ -4910,10 +4910,25 @@ namespace ProxySU MainWindowsShowInfo(currentStatus); //读取生成的代理参数 sshShellCommand = @"cat /usr/local/etc/mtg_info.json"; - currentShellCommandResult = client.RunCommand(sshShellCommand).Result; - - //结果保存在ReceiveConfigurationParameters[9]中 + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); ReceiveConfigurationParameters[9] = currentShellCommandResult; + if (currentShellCommandResult.Contains(@"No such file or directory")) + { + sshShellCommand = @"systemctl stop mtg"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + sshShellCommand = @"cat /usr/local/etc/mtg.sh"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + sshShellCommand = currentShellCommandResult; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + sshShellCommand = @"cat /usr/local/etc/mtg_info.json"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + ReceiveConfigurationParameters[9] = currentShellCommandResult; + sshShellCommand = @"pkill mtg"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + sshShellCommand = @"systemctl restart mtg"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + } + client.Disconnect();//断开服务器ssh连接 //Thread.Sleep(1000); @@ -5924,6 +5939,9 @@ namespace ProxySU sshShellCommand = @"rm -rf /usr/local/etc/mtg_info.json"; currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + sshShellCommand = @"rm -rf /usr/local/etc/mtg.sh"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + sshShellCommand = @"find / -name mtg"; currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); diff --git a/ProxySU/Properties/AssemblyInfo.cs b/ProxySU/Properties/AssemblyInfo.cs index 256e4d3..1db4225 100644 --- a/ProxySU/Properties/AssemblyInfo.cs +++ b/ProxySU/Properties/AssemblyInfo.cs @@ -51,5 +51,5 @@ using System.Windows; // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 // 方法是按如下所示使用“*”: : // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.4.6.0")] -[assembly: AssemblyFileVersion("2.4.6.0")] +[assembly: AssemblyVersion("2.4.7.0")] +[assembly: AssemblyFileVersion("2.4.7.0")] diff --git a/ProxySU/bin/Beta/Beta.zip b/ProxySU/bin/Beta/Beta.zip index 312cb5f..17c8290 100644 Binary files a/ProxySU/bin/Beta/Beta.zip and b/ProxySU/bin/Beta/Beta.zip differ