This commit is contained in:
snltty
2025-11-18 11:40:23 +08:00
parent ab23f67632
commit cbc5668e49
4 changed files with 8 additions and 8 deletions

View File

@@ -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

View File

@@ -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);
});

View File

@@ -1,5 +1,5 @@
v1.9.6
2025-11-18 11:32:25
2025-11-18 11:40:22
1. 一些累计更新一些BUG修复
2. 优化客户端数据同步,减少服务器流量
3. 去除cdkey改为发电解锁中继速度

View File

@@ -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)