v1.4.5 — 蓝图去统计数+勤学显示备注

- 六板块卡片移除统计数字,仅保留 emoji+名称
- 勤学项在列表中显示备注 note
This commit is contained in:
mac
2026-06-04 16:38:54 +08:00
parent 8c81fae334
commit 8ac6f1af6b
3 changed files with 13 additions and 10 deletions

1
app.py
View File

@@ -137,6 +137,7 @@ def compute_stats():
all_study_items.append({
'name': name.strip(),
'done': si.get('done', False) if isinstance(si, dict) else False,
'note': si.get('note', '') if isinstance(si, dict) else '',
'pillar': pillar
})