1
0
Fork 0
mirror of https://github.com/proxysu/ProxySU.git synced 2025-04-03 05:43:36 +03:00

添加非root账户登录提示,优化代码2

This commit is contained in:
ProxySU 2020-05-30 12:04:20 +08:00
parent 4f1018935e
commit 082fe80995
4 changed files with 11 additions and 11 deletions

View file

@ -385,7 +385,7 @@
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<TextBlock Text="程序版本1.6.2" Grid.Column="0" Grid.Row="0"></TextBlock>
<TextBlock Text="程序版本1.6.3" Grid.Column="0" Grid.Row="0"></TextBlock>
</Grid>

View file

@ -470,7 +470,7 @@ namespace ProxySU
}
//检测是否运行在root权限下
string testRootAuthority = client.RunCommand(@"id -u").Result;
if (testRootAuthority.Equals("0")==false)
if (testRootAuthority.Equals("0\n")==false)
{
MessageBox.Show("请使用具有root权限的账户登录主机");
client.Disconnect();
@ -1236,7 +1236,7 @@ namespace ProxySU
//检测是否运行在root权限下
string testRootAuthority = client.RunCommand(@"id -u").Result;
if (testRootAuthority.Equals("0") == false)
if (testRootAuthority.Equals("0\n") == false)
{
MessageBox.Show("请使用具有root权限的账户登录主机");
client.Disconnect();
@ -1413,7 +1413,7 @@ namespace ProxySU
//检测是否运行在root权限下
string testRootAuthority = client.RunCommand(@"id -u").Result;
if (testRootAuthority.Equals("0") == false)
if (testRootAuthority.Equals("0\n") == false)
{
MessageBox.Show("请使用具有root权限的账户登录主机");
client.Disconnect();
@ -2031,7 +2031,7 @@ namespace ProxySU
}
//检测是否运行在root权限下
string testRootAuthority = client.RunCommand(@"id -u").Result;
if (testRootAuthority.Equals("0") == false)
if (testRootAuthority.Equals("0\n") == false)
{
MessageBox.Show("请使用具有root权限的账户登录主机");
client.Disconnect();
@ -2519,7 +2519,7 @@ namespace ProxySU
}
//检测是否运行在root权限下
string testRootAuthority = client.RunCommand(@"id -u").Result;
if (testRootAuthority.Equals("0") == false)
if (testRootAuthority.Equals("0\n") == false)
{
MessageBox.Show("请使用具有root权限的账户登录主机");
client.Disconnect();
@ -2722,7 +2722,7 @@ namespace ProxySU
}
//检测是否运行在root权限下
string testRootAuthority = client.RunCommand(@"id -u").Result;
if (testRootAuthority.Equals("0") == false)
if (testRootAuthority.Equals("0\n") == false)
{
MessageBox.Show("请使用具有root权限的账户登录主机");
client.Disconnect();
@ -2907,7 +2907,7 @@ namespace ProxySU
}
//检测是否运行在root权限下
string testRootAuthority = client.RunCommand(@"id -u").Result;
if (testRootAuthority.Equals("0") == false)
if (testRootAuthority.Equals("0\n") == false)
{
MessageBox.Show("请使用具有root权限的账户登录主机");
client.Disconnect();
@ -3168,7 +3168,7 @@ namespace ProxySU
}
//检测是否运行在root权限下
string testRootAuthority = client.RunCommand(@"id -u").Result;
if (testRootAuthority.Equals("0") == false)
if (testRootAuthority.Equals("0\n") == false)
{
MessageBox.Show("请使用具有root权限的账户登录主机");
client.Disconnect();

View file

@ -51,5 +51,5 @@ using System.Windows;
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
// 方法是按如下所示使用“*”: :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.6.2.0")]
[assembly: AssemblyFileVersion("1.6.2.0")]
[assembly: AssemblyVersion("1.6.3.0")]
[assembly: AssemblyFileVersion("1.6.3.0")]

Binary file not shown.