tag #5

Merged
Ethanfel merged 11 commits from tag into main 2026-01-22 12:49:03 +01:00
Showing only changes of commit 48417b6d73 - Show all commits

View File

@@ -35,7 +35,7 @@ class SorterEngine:
# Seed categories if empty
cursor.execute("SELECT COUNT(*) FROM categories")
if cursor.fetchone()[0] == 0:
for cat in ["_TRASH", "Default", "Action", "Solo"]:
for cat in ["_TRASH", "control", "Default", "Action", "Solo"]:
cursor.execute("INSERT OR IGNORE INTO categories VALUES (?)", (cat,))
conn.commit()