Skip to content

Commit 595da17

Browse files
committed
Merge branch 'main' of github.com:ILoveBingLu/CipherTalk
2 parents b7f0c77 + 012b280 commit 595da17

7 files changed

Lines changed: 12 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@
1212
### 变更
1313
- 暂无
1414

15+
## [2026.826.0] - 2026-08-26
16+
17+
### 修复
18+
- 修复 WCDB 云端授权网络请求在网络可用但 WinHTTP/NSURLSession 请求失败时误报“首次必须联网获取时间”的问题;增加请求重试、延长超时,并区分授权服务响应错误。
19+
1520
## [2026.825.0] - 2026-08-25
1621

1722
### 新增

CipherTalk-CLI/src/services/db/wcdbCore.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -792,6 +792,7 @@ export class WcdbCore {
792792
case -13: return '请勿使用盗版'
793793
case -14: return '您已被禁用'
794794
case -15: return '已停用'
795+
case -16: return '云端授权服务请求失败'
795796
default: return `WCDB 错误码: ${code}`
796797
}
797798
}
@@ -806,6 +807,7 @@ export class WcdbCore {
806807
if (code === -13) return `${prefix}: ${code}(请勿使用盗版)`
807808
if (code === -14) return `${prefix}: ${code}(您已被禁用)`
808809
if (code === -15) return `${prefix}: ${code}(已停用)`
810+
if (code === -16) return `${prefix}: ${code}(云端授权服务请求失败)`
809811
if (code === -3) return `${prefix}: ${code}(消息数据库未找到)`
810812
return `${prefix}: ${code}`
811813
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
**一款现代化的微信聊天记录查看与分析工具**
88

99
[![License](https://img.shields.io/badge/license-CC--BY--NC--SA--4.0-blue.svg)](LICENSE)
10-
[![Version](https://img.shields.io/badge/version-2026.825.0-green.svg)](package.json)
10+
[![Version](https://img.shields.io/badge/version-2026.826.0-green.svg)](package.json)
1111
[![Platform](https://img.shields.io/badge/platform-Windows-0078D6.svg?logo=windows)]()
1212
[![Electron](https://img.shields.io/badge/Electron-39-47848F.svg?logo=electron)]()
1313
[![React](https://img.shields.io/badge/React-19-61DAFB.svg?logo=react)]()

electron/services/wcdbCore.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -795,6 +795,7 @@ export class WcdbCore {
795795
case -13: return '请勿使用盗版'
796796
case -14: return '您已被禁用'
797797
case -15: return '已停用'
798+
case -16: return '云端授权服务请求失败'
798799
default: return `WCDB 错误码: ${code}`
799800
}
800801
}

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ciphertalk",
3-
"version": "2026.825.0",
3+
"version": "2026.826.0",
44
"description": "密语 - 微信聊天记录查看工具",
55
"author": "ILoveBingLu",
66
"license": "CC-BY-NC-SA-4.0",

resources/wcdb_api.dll

6.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)