mirror of
https://github.com/snltty/linker.git
synced 2025-12-24 12:38:04 +08:00
增加连接中继节点的超时时间
This commit is contained in:
2
.github/workflows/dotnet.yml
vendored
2
.github/workflows/dotnet.yml
vendored
@@ -37,7 +37,7 @@ jobs:
|
||||
release_name: v1.5.3.${{ steps.date.outputs.today }}
|
||||
draft: false
|
||||
prerelease: false
|
||||
body: "1. 增加连接中继节点的超时时间\r\n2. 增加网卡端口转发备注\r\n3. 已有多个公开中继服务器上线"
|
||||
body: "1. 增加连接中继节点的超时时间\r\n2. 增加网卡端口转发备注\r\n3. 已有多个公开中继服务器上线\r\n4. 自定义更新检测频率"
|
||||
- name: upload-win-x86-oss
|
||||
id: upload-win-x86-oss
|
||||
uses: tvrcgo/oss-action@v0.1.1
|
||||
|
||||
@@ -23,7 +23,8 @@
|
||||
<Company>snltty</Company>
|
||||
<Description>1. 增加连接中继节点的超时时间
|
||||
2. 增加网卡端口转发备注
|
||||
3. 已有多个公开中继服务器上线</Description>
|
||||
3. 已有多个公开中继服务器上线
|
||||
4. 自定义更新检测频率</Description>
|
||||
<Copyright>snltty</Copyright>
|
||||
<PackageProjectUrl>https://github.com/snltty/linker</PackageProjectUrl>
|
||||
<RepositoryUrl>https://github.com/snltty/linker</RepositoryUrl>
|
||||
|
||||
@@ -129,7 +129,7 @@ namespace linker.plugins.updater
|
||||
{
|
||||
await updaterHelper.GetUpdateInfo(updateInfo);
|
||||
return true;
|
||||
}, () => 30000);
|
||||
}, () => fileConfig.Data.Common.UpdateIntervalSeconds);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -7,6 +7,7 @@ namespace linker.config
|
||||
public sealed partial class ConfigCommonInfo
|
||||
{
|
||||
public string UpdateUrl { get; set; } = "https://static.qbcode.cn/downloads/linker";
|
||||
public int UpdateIntervalSeconds { get; set; } = 60;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
v1.5.3
|
||||
2024-11-10 17:31:52
|
||||
2024-11-11 09:51:14
|
||||
1. 增加连接中继节点的超时时间
|
||||
2. 增加网卡端口转发备注
|
||||
3. 已有多个公开中继服务器上线
|
||||
3. 已有多个公开中继服务器上线
|
||||
4. 自定义更新检测频率
|
||||
Reference in New Issue
Block a user