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
feat(changelog): add v3.2 changelog and update announcement modal
- Add v3.2.0 changelog entry with AI features, SDK migration,
smart error recovery, video playback fix, and shadcn v3 upgrade
- Update announcement modal to v3.2 content (AI Intelligence theme)
- Replace emojis with Lucide icons in modal feature highlights
- Change localStorage key from "seenV3" to "v3.2SAW"
- Auto-show modal on first visit when v3.2SAW is not set
- Update header button text from "V3 is Here!" to "V3.2"
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: src/data/changelog.ts
+27Lines changed: 27 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,33 @@ export interface ChangeItem {
9
9
}
10
10
11
11
exportconstchangelogItems: ChangeItem[]=[
12
+
{
13
+
date: "Fri, 14 Feb 2026",
14
+
version: "3.2.0",
15
+
changes: {
16
+
new: [
17
+
"**AssemblyAI SDK Integration**: Migrated transcription engine to the official AssemblyAI JavaScript SDK for better reliability and type safety",
18
+
"**AI Analysis Features**: Opt-in AI intelligence features including Auto Chapters, Summarization, Sentiment Analysis, Entity Detection, Key Phrases, Content Moderation, and Topic Detection",
19
+
"**Speaker Diarization**: Identify different speakers in interviews, meetings, and conversations",
20
+
"**Smart Error Recovery**: Feature-language incompatibility errors now show a clear explanation and a one-click retry button that automatically disables the unsupported feature",
21
+
"**Options Badges**: Selected transcription options (language, diarize, AI features) are shown as badges on the result screen",
22
+
"**shadcn/ui v3 Upgrade**: All UI components upgraded to shadcn v3 (radix-vega) with unified Radix UI package and Tabler icons",
23
+
"**Intelligence Panels**: New Studio tabs for Chapters, Summary, Sentiment, Entities, and Key Phrases when AI features are enabled",
24
+
],
25
+
improved: [
26
+
"**Video File Playback**: Studio player now uses a video element to handle both audio and video containers (MP4, WebM, etc.)",
27
+
"**Polling Resilience**: Transcription status polling retries up to 5 consecutive errors before failing, with 5-second intervals",
28
+
"**Mutual Exclusivity Handling**: Auto Chapters and Summarization are mutually exclusive in the UI with clear descriptions",
29
+
"**Donation Transparency**: Premium features show a one-time donation nudge explaining processing costs",
30
+
],
31
+
fixed: [
32
+
"**Null Safety**: Added guards on nullable SDK fields to prevent crashes during polling",
33
+
"**Polling Error Details**: Error responses are now fully read and displayed instead of generic messages",
0 commit comments