improvement(wrapped): 调整年度总结卡片标题文案为提问式

- 更新 wrapped card manifest 与卡片 title,使标题更具引导性
This commit is contained in:
2977094657
2026-01-31 20:00:31 +08:00
parent 2bd595428f
commit e5ba16abc0
4 changed files with 6 additions and 6 deletions

View File

@@ -734,7 +734,7 @@ def build_card_00_global_overview(
return { return {
"id": 0, "id": 0,
"title": "年度全局概览", "title": "这一年,你的微信都经历了什么?",
"scope": "global", "scope": "global",
"category": "A", "category": "A",
"status": "ok", "status": "ok",

View File

@@ -343,7 +343,7 @@ def build_card_01_cyber_schedule(
return { return {
"id": 1, "id": 1,
"title": "年度赛博作息表", "title": "你是「早八人」还是「夜猫子」?",
"scope": "global", "scope": "global",
"category": "A", "category": "A",
"status": "ok", "status": "ok",

View File

@@ -787,7 +787,7 @@ def build_card_02_message_chars(*, account_dir: Path, year: int) -> dict[str, An
return { return {
"id": 2, "id": 2,
"title": "年度消息字数", "title": "你今年打了多少字?够写一本书吗?",
"scope": "global", "scope": "global",
"category": "C", "category": "C",
"status": "ok", "status": "ok",

View File

@@ -31,21 +31,21 @@ _CACHE_VERSION = 4
_WRAPPED_CARD_MANIFEST: tuple[dict[str, Any], ...] = ( _WRAPPED_CARD_MANIFEST: tuple[dict[str, Any], ...] = (
{ {
"id": 0, "id": 0,
"title": "年度全局概览", "title": "这一年,你的微信都经历了什么?",
"scope": "global", "scope": "global",
"category": "A", "category": "A",
"kind": "global/overview", "kind": "global/overview",
}, },
{ {
"id": 1, "id": 1,
"title": "年度赛博作息表", "title": "你是「早八人」还是「夜猫子」?",
"scope": "global", "scope": "global",
"category": "A", "category": "A",
"kind": "time/weekday_hour_heatmap", "kind": "time/weekday_hour_heatmap",
}, },
{ {
"id": 2, "id": 2,
"title": "年度消息字数", "title": "你今年打了多少字?够写一本书吗?",
"scope": "global", "scope": "global",
"category": "C", "category": "C",
"kind": "text/message_chars", "kind": "text/message_chars",