mirror of
https://wget.la/https://github.com/Wxw-Gu/WechatExplorer
synced 2026-08-18 12:07:01 +08:00
feat: 完善日报图片与公众号消息展示
修复日报图片读取格式与模型不支持时的友好降级 恢复话题关键词回退,确保词云在缺少顶层关键词时仍可展示 支持公众号多文章消息在聊天、日报、检索和 HTML 导出中完整呈现 迁移账号身份缓存并优化首次连接的账号占位信息 补充图片、词云、账号缓存与多文章消息回归测试
This commit is contained in:
@@ -53,6 +53,12 @@ type LocationContent = {
|
||||
lng: number
|
||||
}
|
||||
type CardContent = { type: 'card'; username: string; nickname: string; avatarUrl?: string }
|
||||
export type ShareArticle = {
|
||||
title: string
|
||||
description?: string
|
||||
url: string
|
||||
coverUrl?: string
|
||||
}
|
||||
type ShareContent = {
|
||||
type: 'share'
|
||||
title: string
|
||||
@@ -60,6 +66,7 @@ type ShareContent = {
|
||||
url: string
|
||||
appname?: string
|
||||
typeVal?: string
|
||||
articles?: ShareArticle[]
|
||||
}
|
||||
export type ForwardedMessageItem = {
|
||||
messageType: number
|
||||
|
||||
Reference in New Issue
Block a user