From e5ba16abc0618730a565f46d9277361f87fd38db Mon Sep 17 00:00:00 2001 From: 2977094657 <2977094657@qq.com> Date: Sat, 31 Jan 2026 20:00:31 +0800 Subject: [PATCH] =?UTF-8?q?improvement(wrapped):=20=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E5=B9=B4=E5=BA=A6=E6=80=BB=E7=BB=93=E5=8D=A1=E7=89=87=E6=A0=87?= =?UTF-8?q?=E9=A2=98=E6=96=87=E6=A1=88=E4=B8=BA=E6=8F=90=E9=97=AE=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 更新 wrapped card manifest 与卡片 title,使标题更具引导性 --- .../wrapped/cards/card_00_global_overview.py | 2 +- .../wrapped/cards/card_01_cyber_schedule.py | 2 +- .../wrapped/cards/card_02_message_chars.py | 2 +- src/wechat_decrypt_tool/wrapped/service.py | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/wechat_decrypt_tool/wrapped/cards/card_00_global_overview.py b/src/wechat_decrypt_tool/wrapped/cards/card_00_global_overview.py index 6dfdf4c..45d5adb 100644 --- a/src/wechat_decrypt_tool/wrapped/cards/card_00_global_overview.py +++ b/src/wechat_decrypt_tool/wrapped/cards/card_00_global_overview.py @@ -734,7 +734,7 @@ def build_card_00_global_overview( return { "id": 0, - "title": "年度全局概览", + "title": "这一年,你的微信都经历了什么?", "scope": "global", "category": "A", "status": "ok", diff --git a/src/wechat_decrypt_tool/wrapped/cards/card_01_cyber_schedule.py b/src/wechat_decrypt_tool/wrapped/cards/card_01_cyber_schedule.py index a59111e..1247cfc 100644 --- a/src/wechat_decrypt_tool/wrapped/cards/card_01_cyber_schedule.py +++ b/src/wechat_decrypt_tool/wrapped/cards/card_01_cyber_schedule.py @@ -343,7 +343,7 @@ def build_card_01_cyber_schedule( return { "id": 1, - "title": "年度赛博作息表", + "title": "你是「早八人」还是「夜猫子」?", "scope": "global", "category": "A", "status": "ok", diff --git a/src/wechat_decrypt_tool/wrapped/cards/card_02_message_chars.py b/src/wechat_decrypt_tool/wrapped/cards/card_02_message_chars.py index 2a0428e..2fe3d7c 100644 --- a/src/wechat_decrypt_tool/wrapped/cards/card_02_message_chars.py +++ b/src/wechat_decrypt_tool/wrapped/cards/card_02_message_chars.py @@ -787,7 +787,7 @@ def build_card_02_message_chars(*, account_dir: Path, year: int) -> dict[str, An return { "id": 2, - "title": "年度消息字数", + "title": "你今年打了多少字?够写一本书吗?", "scope": "global", "category": "C", "status": "ok", diff --git a/src/wechat_decrypt_tool/wrapped/service.py b/src/wechat_decrypt_tool/wrapped/service.py index c865cba..c83a32c 100644 --- a/src/wechat_decrypt_tool/wrapped/service.py +++ b/src/wechat_decrypt_tool/wrapped/service.py @@ -31,21 +31,21 @@ _CACHE_VERSION = 4 _WRAPPED_CARD_MANIFEST: tuple[dict[str, Any], ...] = ( { "id": 0, - "title": "年度全局概览", + "title": "这一年,你的微信都经历了什么?", "scope": "global", "category": "A", "kind": "global/overview", }, { "id": 1, - "title": "年度赛博作息表", + "title": "你是「早八人」还是「夜猫子」?", "scope": "global", "category": "A", "kind": "time/weekday_hour_heatmap", }, { "id": 2, - "title": "年度消息字数", + "title": "你今年打了多少字?够写一本书吗?", "scope": "global", "category": "C", "kind": "text/message_chars",