Skip to content

Commit 90e3bb3

Browse files
committed
update DLL libsscrypto
1 parent dd9fb57 commit 90e3bb3

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

shadowsocks-csharp/Controller/UpdateChecker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class UpdateChecker
2121

2222
public const string Name = "ShadowsocksR";
2323
public const string Copyright = "Copyright © BreakWa11 2017. Fork from Shadowsocks by clowwindy";
24-
public const string Version = "4.8.0";
24+
public const string Version = "4.8.1";
2525
#if !_DOTNET_4_0
2626
public const string NetVer = "2.0";
2727
#elif !_CONSOLE
1.6 KB
Binary file not shown.
2.53 KB
Binary file not shown.

shadowsocks-csharp/View/ConfigForm.Designer.cs

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

shadowsocks-csharp/View/MenuViewController.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,10 @@ private void UpdateTrayIcon()
194194

195195
// we want to show more details but notify icon title is limited to 63 characters
196196
string text = (enabled ?
197-
I18N.GetString("System Proxy On: ") + (global ? I18N.GetString("Global") : I18N.GetString("PAC")) :
198-
String.Format(I18N.GetString("Running: Port {0}"), config.localPort)) // this feedback is very important because they need to know Shadowsocks is running
197+
(global ? I18N.GetString("Global") : I18N.GetString("PAC")) :
198+
I18N.GetString("Disable system proxy"))
199+
+ "\r\n"
200+
+ String.Format(I18N.GetString("Running: Port {0}"), config.localPort) // this feedback is very important because they need to know Shadowsocks is running
199201
;
200202
_notifyIcon.Text = text.Substring(0, Math.Min(63, text.Length));
201203
}

0 commit comments

Comments
 (0)