v1.5: Integrated optional category feature, i18n stabilization, and documentation update

This commit is contained in:
leeyj
2026-04-16 15:42:02 +09:00
parent df8ae62b0e
commit aef0179c56
47 changed files with 1699 additions and 544 deletions
+5
View File
@@ -37,6 +37,11 @@ def init_db():
except sqlite3.OperationalError:
pass
try:
c.execute("ALTER TABLE memos ADD COLUMN category TEXT")
except sqlite3.OperationalError:
pass
# 2. Separate Tags Table (Normalized)
c.execute('''