Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/add-lock-app-functionality.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/add-to-chat-memory-context.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/auto-expand-chat-input.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/chat-max-width.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/fix-claude-keyboard-capture.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-ollama-307-redirect.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/full-screen-note-editor.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/inter-font-update.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/resizable-sidepanel.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/title-bar-conversation-actions.md

This file was deleted.

25 changes: 25 additions & 0 deletions app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# think-app

## 0.5.1

### Patch Changes

- 159b7c3: Add lock app functionality to settings page
- 5dec15b: Improve "Add to Chat" to attach memory as context instead of prepopulating message

- Add AttachedMemoryChips component showing selected memory as removable chip
- Navigate to /chat instead of / when clicking "Add to Chat"
- Send attached_memory_ids to backend for explicit context inclusion
- Label attached memory as "User's Selected Memory" so AI knows which memory user is referring to
- Preserve attached sources when special handlers run

- bb80b08: Add auto-expanding chat input that grows as users type
- 90f0ec7: Add max width constraint to chat bubbles for consistent column layout
- d0a0da6: Fix HTTP 307 redirect handling in Ollama download for Windows users
- 99257a9: Replace add memory dialog with full-screen TipTap editor

- Add new TipTap-based NoteEditor component with formatting toolbar
- Remove AddMemoryDialog in favor of full-screen editing experience
- Update MemoryDetailPanel to open editor for notes

- 148eb6e: Replace WorkSans font with Inter for better readability
- 98c0214: Add title bar with conversation actions (pin, delete) and improve sidebar icon UX

## 0.5.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "think-app",
"version": "0.5.0",
"version": "0.5.1",
"private": true,
"main": "electron/main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion backend/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "think-backend"
version = "0.5.0"
version = "0.5.1"
description = "Think backend API"
authors = ["Your Name <you@example.com>"]
package-mode = false
Expand Down
19 changes: 19 additions & 0 deletions extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# think-extension

## 0.5.1

### Patch Changes

- bb80b08: Add auto-expanding chat input that grows as users type
- 45c37b2: Fix keyboard input being captured by host page when using extension on Claude.ai

- Add delegatesFocus option to Shadow DOM for better focus handling
- Stop focus events (focusin/focusout) from propagating to host document
- Stop keyboard events (keydown/keyup/keypress) from propagating to host document
- Prevents sites like Claude.ai from intercepting keystrokes intended for the extension

- 148eb6e: Replace WorkSans font with Inter for better readability
- 7cdcbae: Add resizable sidepanel that pushes page content aside

- Add draggable resize handle on left edge of panel (300px - 600px range)
- Push webpage content aside when panel opens instead of overlaying
- Persist panel width preference using chrome.storage

## 0.5.0

## 0.4.0
Expand Down
2 changes: 1 addition & 1 deletion extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "think-extension",
"version": "0.5.0",
"version": "0.5.1",
"private": true,
"scripts": {
"dev": "vite build --watch",
Expand Down
2 changes: 1 addition & 1 deletion extension/public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoM28Tz8K1587vX8QWs6yyyHbFR46rsgVSQkVDRe2xHEMhCY1KdDEL3DraxZM+0FXOycPeav/2HDuybZnP8CB3BM02GviZ4UhmY0IFBnQRiJTI13y5boNKSR8ENPAe4eaFxLELELQK9HE1klhFZgI04R989xYUW7ZaWBYc3qsQelyIaAK1GaFsubTQcngi4sfbCWnX8HW3oqu3yJ9A91SbRyNTNUwnc7S9OaBvtFKKZMSnF7BzdB7VztR/rehxWCm4Wa3BWZzrHN6OK1TiOzrsJ2byIVU4UiP2q5jXzJt0o5X7XLHPUc0CLxIqfVKGmK59wI2AM/GKxTHNX0o9KKriQIDAQAB",
"name": "Think - Save to Personal AI",
"version": "0.5.0",
"version": "0.5.1",
"description": "Save web pages to your personal AI assistant",
"permissions": [
"activeTab",
Expand Down
Loading