You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(db): create upload_chunks before ALTERs + bump Soniox v5, v1.3.2
Fresh installs crashed on upload with "no such column: status". In
_migrate_v2 the upload_chunks ALTERs ran before the CREATE TABLE, so on
a fresh DB the ALTER hit "no such table" (silently dropped — the loop
only ignores "duplicate column") and the table was created without
status/error_message/segments_json. Create the child tables first and
declare the three columns inline; keep the ALTERs to top up old DBs.
Also bump Soniox to v5 (stt-async-v5 for upload, stt-rt-v5 for realtime)
— same price, better accuracy + speaker separation, name-only change.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,14 @@
2
2
3
3
Tất cả thay đổi đáng chú ý của Scribble được ghi tại đây.
4
4
5
+
## [1.3.2] - 2026-06-22
6
+
7
+
### Fixed
8
+
- Sửa lỗi `no such column: status` khi upload file trên máy cài mới. Migration tạo bảng `upload_chunks` sai thứ tự (ALTER chạy trước CREATE) khiến bảng thiếu cột `status/error_message/segments_json` — nay tạo bảng trước, khai báo cột inline, ALTER chỉ top-up cho DB cũ.
9
+
10
+
### Changed
11
+
- Nâng Soniox lên model v5 (`stt-async-v5` cho upload, `stt-rt-v5` cho ghi âm realtime) — chất lượng nhận diện và tách người nói tốt hơn, giá không đổi.
0 commit comments