Added Record screen, transcribe, mobile screen share bug fix.

This commit is contained in:
2026-06-10 16:46:03 +05:30
parent 3e24cacc39
commit 28f616d829
5 changed files with 320 additions and 32 deletions
+4
View File
@@ -77,4 +77,8 @@ CREATE TABLE IF NOT EXISTS sessions_log (
);
`);
// Migration: stored recording filename for a session (null if not recorded)
try { db.exec('ALTER TABLE sessions_log ADD COLUMN recording TEXT'); } catch (e) { /* exists */ }
try { db.exec('ALTER TABLE sessions_log ADD COLUMN transcript TEXT'); } catch (e) { /* exists */ }
module.exports = db;