Skip to content

Commit 3b7ef54

Browse files
authored
chore: add changelog for 1.0.2-nightly.11 (#3333)
1 parent 9e58c50 commit 3b7ef54

File tree

3 files changed

+54
-21
lines changed

3 files changed

+54
-21
lines changed

apps/web/content/changelog/1.0.2-nightly.10.mdx

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,29 @@
22
date: "2026-01-23"
33
---
44

5-
- Add sleep detection to automatically stop recording
6-
- Recording stops when system goes to sleep
5+
- Add sleep detection (macOS)
6+
- Recording automatically stops when you close your laptop lid or put the system to sleep
7+
- Prevents unintended recording while the system is inactive
78

8-
- Enhanced event context menu for events with notes
9-
- New "Open in new tab" option for quick multi-tab workflows
10-
- "Reveal in Finder" to access session files directly
11-
- "Delete completely" option to remove event and associated session data
12-
- Ignoring events without notes now cleans up empty sessions automatically
9+
- Enhanced context menu for calendar events
10+
- Events with notes now show: "Open in new tab", "Reveal in Finder", and "Delete completely"
11+
- "Delete completely" removes both the event and all associated session data
12+
- Ignoring events without notes now automatically cleans up empty sessions
1313

14-
- Fix authentication token refresh on app restart
15-
- Credentials no longer lost after restarting the app
16-
- Auto token refresh keeps sessions alive
17-
- Use navigatorLock for more reliable session locking
14+
- Fix credentials being lost after app restart
15+
- Session tokens now refresh automatically in the background
16+
- Switched to browser-native lock mechanism, eliminating spurious timeout warnings
1817

19-
- Fix memory accumulation in audio processing
20-
- Removed unnecessary audio data buffering in MicStream
21-
- Added bounded channels with backpressure to prevent memory growth during long recordings
18+
- Fix memory growth during long recordings
19+
- Removed audio data accumulation that could consume ~19GB/day of memory
20+
- Added bounded audio channels with backpressure to prevent unbounded memory growth
2221

23-
- Fix Ollama model listing CORS issues
24-
- Model list now loads properly when using local Ollama instance
22+
- Fix Ollama model list not loading for remote instances
23+
- Model list now populates correctly when connecting to Ollama via Tailscale or other remote setups
2524

26-
- Improve timeline event visibility and time display
27-
- Events now use end time for determining past/future visibility
28-
- Smart time tracking updates timeline when events start or end
29-
- Event start times are now displayed in the timeline sidebar
25+
- Fix starting recording from enhanced view
26+
- Clicking "Start listening" while viewing a summary now correctly switches to raw view
27+
28+
- Improved timeline event display
29+
- Events now use end time to determine past/future visibility
30+
- Event start times are displayed in the timeline sidebar
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
date: "2026-01-24"
3+
---
4+
5+
- Split FAB into separate Join and Start listening buttons
6+
- When a meeting is detected, two buttons now appear: "Join (platform)" and "Start listening"
7+
- Join button opens the meeting URL without starting listening
8+
- Start listening button starts listening without opening a new tab
9+
- Join button hides on narrow screens to keep FAB inside note area
10+
11+
- Fix image attachment crashes and improve attachment handling
12+
- Images are now saved as files in session folder instead of base64, preventing app freezes
13+
- Preserve original attachment filenames (Obsidian-style)
14+
- Duplicate filenames automatically get numbered suffixes (e.g., "image 1.png")
15+
- Switch to official TipTap image extension with block-level images
16+
17+
- Make content folder migration safer
18+
- Content folder changes now copy data instead of moving it
19+
- Original folder is preserved for safety
20+
- Added confirmation dialog explaining the copy-only behavior
21+
22+
- Fix authentication token refresh errors
23+
- Handle refresh_token_already_used errors properly
24+
- Clear invalid sessions to prevent lock timeout warnings
25+
- Remove duplicate deep link handler
26+
27+
- Improve feedback modal
28+
- Add optional checkbox to attach redacted application logs
29+
- Logs include last 500 lines with user paths, emails, and IP addresses redacted
30+
31+
- Show spinner instead of checkmark while local STT is initializing
32+
- Prevents confusing UI state during model initialization

plugins/tracing/src/ext.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ impl<'a, R: tauri::Runtime, M: tauri::Manager<R>> Tracing<'a, R, M> {
3939

4040
pub fn log_content(&self) -> Result<Option<String>, crate::Error> {
4141
let logs_dir = self.logs_dir()?;
42-
const TARGET_LINES: usize = 1000;
42+
const TARGET_LINES: usize = 300;
4343
const MAX_ROTATED_FILES: usize = 5;
4444

4545
let log_files: Vec<_> = std::iter::once(logs_dir.join("app.log"))

0 commit comments

Comments
 (0)