Skip to content

Commit

Permalink
v1.5.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nobody committed Aug 20, 2021
1 parent 4c88c47 commit 0192417
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
boxAppend: box
v2rayCorePkgName: 'v2ray-windows-64.zip'
scriptPkgName: 'scripts-v1.0.2'
v2rayCoreVer: 'v4.40.1'
v2rayCoreVer: 'v4.41.1'
# https://github.com/v2ray/v2ray-core/releases/download/v4.20.0/v2ray-windows-32.zip
# https://github.com/XTLS/Xray-core/releases/download/v1.4.0/Xray-windows-64.zip
v2rayCoreUrl: 'https://github.com/v2fly/v2ray-core/releases/download'
Expand Down
3 changes: 2 additions & 1 deletion V2RayGCon/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,11 @@
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
// 方法是按如下所示使用“*”: :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.5.7.10")]
[assembly: AssemblyVersion("1.5.8.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

/*
* ----------------------------------------------------------
* v1.5.7.10 Try writethrough mode.
* v1.5.7.9 Reverse to v1.5.7.6
* v1.5.7.8 Retry when write user settings to file failed.
Expand Down
2 changes: 1 addition & 1 deletion V2RayGCon/Resources/Config/config_example.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"agentout"
],
"probeURL": "https://api.v2fly.org/checkConnection.svgz",
"ProbeInterval": "5000ms"
"probeInterval": "5000ms"
},
"browserForwarderDefault": {
"listenAddr": "127.0.0.1",
Expand Down
2 changes: 1 addition & 1 deletion V2RayGCon/Resources/Files/CSharp/ConfigJsonKeywords.txt
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ policy
poolSize
port
portals
ProbeInterval
probeInterval
probeURL
protocol
proxySettings
Expand Down
2 changes: 1 addition & 1 deletion V2RayGCon/Services/Servers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ void InjectBalacerStrategy(
config["observatory"] = JObject.Parse("{subjectSelector:['agentout']}");
if (!string.IsNullOrWhiteSpace(interval))
{
config["observatory"]["ProbeInterval"] = interval;
config["observatory"]["probeInterval"] = interval;
}
if (!string.IsNullOrWhiteSpace(url))
{
Expand Down

0 comments on commit 0192417

Please sign in to comment.