mirror of
https://github.com/2dust/v2rayN.git
synced 2025-12-24 04:09:46 +05:00
bug fixes for ErrorDataReceived
This commit is contained in:
@@ -189,6 +189,14 @@ namespace v2rayN.Handler
|
|||||||
if (displayLog)
|
if (displayLog)
|
||||||
{
|
{
|
||||||
p.OutputDataReceived += (sender, e) =>
|
p.OutputDataReceived += (sender, e) =>
|
||||||
|
{
|
||||||
|
if (!string.IsNullOrEmpty(e.Data))
|
||||||
|
{
|
||||||
|
string msg = e.Data + Environment.NewLine;
|
||||||
|
ShowMsg(false, msg);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
p.ErrorDataReceived += (sender, e) =>
|
||||||
{
|
{
|
||||||
if (!string.IsNullOrEmpty(e.Data))
|
if (!string.IsNullOrEmpty(e.Data))
|
||||||
{
|
{
|
||||||
@@ -201,6 +209,7 @@ namespace v2rayN.Handler
|
|||||||
if (displayLog)
|
if (displayLog)
|
||||||
{
|
{
|
||||||
p.BeginOutputReadLine();
|
p.BeginOutputReadLine();
|
||||||
|
p.BeginErrorReadLine();
|
||||||
}
|
}
|
||||||
_process = p;
|
_process = p;
|
||||||
|
|
||||||
@@ -254,8 +263,17 @@ namespace v2rayN.Handler
|
|||||||
ShowMsg(false, msg);
|
ShowMsg(false, msg);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
p.ErrorDataReceived += (sender, e) =>
|
||||||
|
{
|
||||||
|
if (!string.IsNullOrEmpty(e.Data))
|
||||||
|
{
|
||||||
|
string msg = e.Data + Environment.NewLine;
|
||||||
|
ShowMsg(false, msg);
|
||||||
|
}
|
||||||
|
};
|
||||||
p.Start();
|
p.Start();
|
||||||
p.BeginOutputReadLine();
|
p.BeginOutputReadLine();
|
||||||
|
p.BeginErrorReadLine();
|
||||||
|
|
||||||
p.StandardInput.Write(configStr);
|
p.StandardInput.Write(configStr);
|
||||||
p.StandardInput.Close();
|
p.StandardInput.Close();
|
||||||
|
|||||||
8
v2rayN/v2rayN/Resx/ResUI.Designer.cs
generated
8
v2rayN/v2rayN/Resx/ResUI.Designer.cs
generated
@@ -1060,7 +1060,7 @@ namespace v2rayN.Resx {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 查找类似 Rule Setting 的本地化字符串。
|
/// 查找类似 Rule Settings 的本地化字符串。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static string menuRoutingRuleSetting {
|
public static string menuRoutingRuleSetting {
|
||||||
get {
|
get {
|
||||||
@@ -1141,7 +1141,7 @@ namespace v2rayN.Resx {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 查找类似 Setting 的本地化字符串。
|
/// 查找类似 Settings 的本地化字符串。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static string menuSetting {
|
public static string menuSetting {
|
||||||
get {
|
get {
|
||||||
@@ -1231,7 +1231,7 @@ namespace v2rayN.Resx {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 查找类似 Subscription group Setting 的本地化字符串。
|
/// 查找类似 Subscription group Settings 的本地化字符串。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static string menuSubSetting {
|
public static string menuSubSetting {
|
||||||
get {
|
get {
|
||||||
@@ -2006,7 +2006,7 @@ namespace v2rayN.Resx {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 查找类似 GlobalHotkey Setting 的本地化字符串。
|
/// 查找类似 GlobalHotkey Settings 的本地化字符串。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static string TbGlobalHotkeySetting {
|
public static string TbGlobalHotkeySetting {
|
||||||
get {
|
get {
|
||||||
|
|||||||
@@ -467,7 +467,7 @@
|
|||||||
<value>Servers</value>
|
<value>Servers</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="menuSetting" xml:space="preserve">
|
<data name="menuSetting" xml:space="preserve">
|
||||||
<value>Setting</value>
|
<value>Settings</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="menuSubGroupUpdate" xml:space="preserve">
|
<data name="menuSubGroupUpdate" xml:space="preserve">
|
||||||
<value>Update current subscription without proxy</value>
|
<value>Update current subscription without proxy</value>
|
||||||
@@ -479,7 +479,7 @@
|
|||||||
<value>Subscription group</value>
|
<value>Subscription group</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="menuSubSetting" xml:space="preserve">
|
<data name="menuSubSetting" xml:space="preserve">
|
||||||
<value>Subscription group Setting</value>
|
<value>Subscription group Settings</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="menuSubUpdate" xml:space="preserve">
|
<data name="menuSubUpdate" xml:space="preserve">
|
||||||
<value>Update subscription without proxy</value>
|
<value>Update subscription without proxy</value>
|
||||||
@@ -827,7 +827,7 @@
|
|||||||
<value>Display GUI</value>
|
<value>Display GUI</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbGlobalHotkeySetting" xml:space="preserve">
|
<data name="TbGlobalHotkeySetting" xml:space="preserve">
|
||||||
<value>GlobalHotkey Setting</value>
|
<value>GlobalHotkey Settings</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TbGlobalHotkeySettingTip" xml:space="preserve">
|
<data name="TbGlobalHotkeySettingTip" xml:space="preserve">
|
||||||
<value>Set directly by pressing the keyboard, Take effect after restart</value>
|
<value>Set directly by pressing the keyboard, Take effect after restart</value>
|
||||||
@@ -929,7 +929,7 @@
|
|||||||
<value>Import Rules From Sub Url</value>
|
<value>Import Rules From Sub Url</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="menuRoutingRuleSetting" xml:space="preserve">
|
<data name="menuRoutingRuleSetting" xml:space="preserve">
|
||||||
<value>Rule Setting</value>
|
<value>Rule Settings</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="menuRuleAdd" xml:space="preserve">
|
<data name="menuRuleAdd" xml:space="preserve">
|
||||||
<value>Rule Add</value>
|
<value>Rule Add</value>
|
||||||
|
|||||||
Reference in New Issue
Block a user