feat: 修改群聊日报生成与群成员信息展示

- 支持结构化 AI 群聊日报及移动端长图导出
- 支持日报时间范围和消息类型筛选
- 支持群成员及当前用户群昵称解析
- 移除消息加载更多并优化图片懒加载
- 增强头像处理与敏感密钥日志保护
This commit is contained in:
电摇小子
2026-06-29 16:43:01 +08:00
parent f6f8bc33f9
commit c00d581d9e
15 changed files with 1531 additions and 175 deletions
-3
View File
@@ -236,8 +236,6 @@ export class ImageDecryptService {
version,
'file:',
datPath,
'xorKey:',
this.xorKey,
'aesKey present:',
!!this.aesKey
)
@@ -258,7 +256,6 @@ export class ImageDecryptService {
return null
}
const key = Buffer.from(this.aesKey, 'ascii').slice(0, 16)
console.log('[ImageDecrypt] AES key bytes:', key.toString('hex'), 'length:', key.length)
decrypted = this.decryptDatV4(datPath, key)
}