diff --git a/.changeset/media-memory-feature.md b/.changeset/media-memory-feature.md deleted file mode 100644 index 41cda17..0000000 --- a/.changeset/media-memory-feature.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -"think-app": minor ---- - -feat(app): add media memory support for voice memos, audio, and video - -- Add voice memo recording from system tray and main app -- Add audio file upload with drag-and-drop support -- Add video file upload with FFmpeg audio extraction and thumbnail generation -- Add local AI transcription using faster-whisper with timestamp segments -- Add new memory card components for voice memos, audio, and video -- Add transcription settings for Whisper model selection -- Add file size limits and input validation for security diff --git a/.changeset/memory-context-toggle.md b/.changeset/memory-context-toggle.md deleted file mode 100644 index e7e7501..0000000 --- a/.changeset/memory-context-toggle.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"think-app": patch ---- - -feat(app): add toggle to enable/disable memory context in chat - -- Add "Memory on/off" toggle inside chat input container -- Skip automatic RAG retrieval when toggle is off -- Attached memories still work when toggle is off -- Toggle defaults to on (current behavior preserved) diff --git a/.changeset/smooth-cards-hover.md b/.changeset/smooth-cards-hover.md deleted file mode 100644 index 1c3496d..0000000 --- a/.changeset/smooth-cards-hover.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"think-app": patch ---- - -Remove scale transform on memory card hover that caused text to appear blurry diff --git a/app/CHANGELOG.md b/app/CHANGELOG.md index 390de9f..4e4fac0 100644 --- a/app/CHANGELOG.md +++ b/app/CHANGELOG.md @@ -1,5 +1,30 @@ # think-app +## 0.6.0 + +### Minor Changes + +- 16103f3: feat(app): add media memory support for voice memos, audio, and video + + - Add voice memo recording from system tray and main app + - Add audio file upload with drag-and-drop support + - Add video file upload with FFmpeg audio extraction and thumbnail generation + - Add local AI transcription using faster-whisper with timestamp segments + - Add new memory card components for voice memos, audio, and video + - Add transcription settings for Whisper model selection + - Add file size limits and input validation for security + +### Patch Changes + +- c40f37b: feat(app): add toggle to enable/disable memory context in chat + + - Add "Memory on/off" toggle inside chat input container + - Skip automatic RAG retrieval when toggle is off + - Attached memories still work when toggle is off + - Toggle defaults to on (current behavior preserved) + +- bb5ac91: Remove scale transform on memory card hover that caused text to appear blurry + ## 0.5.5 ### Patch Changes diff --git a/app/package.json b/app/package.json index 2887a33..5781c2b 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "think-app", - "version": "0.5.5", + "version": "0.6.0", "private": true, "main": "electron/main.js", "scripts": { diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 1c42ad8..c78a10a 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "think-backend" -version = "0.5.5" +version = "0.6.0" description = "Think backend API" authors = ["Your Name "] package-mode = false diff --git a/extension/CHANGELOG.md b/extension/CHANGELOG.md index c0c2b2f..0e4d886 100644 --- a/extension/CHANGELOG.md +++ b/extension/CHANGELOG.md @@ -1,5 +1,7 @@ # think-extension +## 0.6.0 + ## 0.5.5 ## 0.5.4 diff --git a/extension/package.json b/extension/package.json index 5213932..23efd3c 100644 --- a/extension/package.json +++ b/extension/package.json @@ -1,6 +1,6 @@ { "name": "think-extension", - "version": "0.5.5", + "version": "0.6.0", "private": true, "scripts": { "dev": "vite build --watch", diff --git a/extension/public/manifest.json b/extension/public/manifest.json index 15279a0..f80a604 100644 --- a/extension/public/manifest.json +++ b/extension/public/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoM28Tz8K1587vX8QWs6yyyHbFR46rsgVSQkVDRe2xHEMhCY1KdDEL3DraxZM+0FXOycPeav/2HDuybZnP8CB3BM02GviZ4UhmY0IFBnQRiJTI13y5boNKSR8ENPAe4eaFxLELELQK9HE1klhFZgI04R989xYUW7ZaWBYc3qsQelyIaAK1GaFsubTQcngi4sfbCWnX8HW3oqu3yJ9A91SbRyNTNUwnc7S9OaBvtFKKZMSnF7BzdB7VztR/rehxWCm4Wa3BWZzrHN6OK1TiOzrsJ2byIVU4UiP2q5jXzJt0o5X7XLHPUc0CLxIqfVKGmK59wI2AM/GKxTHNX0o9KKriQIDAQAB", "name": "Think - Save to Personal AI", - "version": "0.5.5", + "version": "0.6.0", "description": "Save web pages to your personal AI assistant", "permissions": [ "activeTab",