mirror of
https://github.com/snltty/linker.git
synced 2025-12-19 18:06:47 +08:00
196
This commit is contained in:
2
.github/workflows/install.yml
vendored
2
.github/workflows/install.yml
vendored
@@ -103,7 +103,7 @@ jobs:
|
||||
key-id: ${{ secrets.ALIYUN_OSS_ID }}
|
||||
key-secret: ${{ secrets.ALIYUN_OSS_SECRET }}
|
||||
bucket: ide-qbcode
|
||||
asset-path: ./public/publish-fpk/docker/inker-docker-x64.fpk
|
||||
asset-path: ./public/publish-fpk/docker/linker-docker-x64.fpk
|
||||
target-path: /downloads/linker/v1.9.6/linker-docker-x64.fpk
|
||||
- name: upload-fpk-x64
|
||||
id: upload-fpk-x64
|
||||
|
||||
@@ -207,7 +207,7 @@ function writeUploadIpk(data, tagName) {
|
||||
'key-id': '${{ secrets.ALIYUN_OSS_ID }}',
|
||||
'key-secret': '${{ secrets.ALIYUN_OSS_SECRET }}',
|
||||
'bucket': 'ide-qbcode',
|
||||
'asset-path': `./public/publish-fpk/docker/inker-docker-${arch}.fpk`,
|
||||
'asset-path': `./public/publish-fpk/docker/linker-docker-${arch}.fpk`,
|
||||
'target-path': `/downloads/linker/${tagName}/linker-docker-${arch}.fpk`
|
||||
}
|
||||
});
|
||||
@@ -279,9 +279,9 @@ readVersionDesc().then((desc) => {
|
||||
}
|
||||
writeText('../publish-fpk.sh', publishFpkText);
|
||||
|
||||
const ipkData = readYaml('../ymls/install.yml');
|
||||
writeUploadIpk(ipkData, `v${desc.version}`);
|
||||
writeYaml('../../.github/workflows/install.yml', ipkData);
|
||||
const installData = readYaml('../ymls/install.yml');
|
||||
writeUploadIpk(installData, `v${desc.version}`);
|
||||
writeYaml('../../.github/workflows/install.yml', installData);
|
||||
|
||||
|
||||
});
|
||||
@@ -1,5 +1,5 @@
|
||||
v1.9.6
|
||||
2025-11-18 11:32:25
|
||||
2025-11-18 11:40:22
|
||||
1. 一些累计更新,一些BUG修复
|
||||
2. 优化客户端数据同步,减少服务器流量
|
||||
3. 去除cdkey,改为发电解锁中继速度
|
||||
|
||||
@@ -40,7 +40,7 @@ namespace linker.messenger.store.file.tunnel
|
||||
|
||||
OnChanged();
|
||||
|
||||
return true;
|
||||
return await Task.FromResult(true).ConfigureAwait(false);
|
||||
}
|
||||
public async Task<bool> SetTunnelTransports(string machineId, List<ITunnelTransport> list)
|
||||
{
|
||||
@@ -59,7 +59,7 @@ namespace linker.messenger.store.file.tunnel
|
||||
|
||||
OnChanged();
|
||||
|
||||
return true;
|
||||
return await Task.FromResult(true).ConfigureAwait(false);
|
||||
}
|
||||
|
||||
public async Task<List<TunnelTransportItemInfo>> GetTunnelTransports(string machineId)
|
||||
|
||||
Reference in New Issue
Block a user