Merged
Conversation
Each enabled search config becomes a draggable timeline lane positioned by timestamp. Users can drag lanes left/right to apply time offsets, correlating events from different log sources despite clock drift. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Detect standalone CR in files and fall back to stream search (ripgrep miscount lines with CR-only endings from serial/progress output) - Fix stream search CRLF chunk boundary bug causing phantom empty lines - Simplify ripgrep output parsing with --no-filename - Search config results now preserve original lineNumber + add displayIndex when filtered (was remapping lineNumber to displayIndex, breaking selection) - Refactor goToLine to separate scroll target from selected line number - Fix cursor status showing display index instead of line number in filtered mode Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Scan up to 3 levels of subfolders, shown as collapsible tree nodes - Detect file types by reading magic bytes (first 16 bytes), not extensions Covers PNG, JPEG, GIF, BMP, WebP, MP4/MOV, MKV/WebM, AVI, OGG Files without NUL bytes in header treated as text (extensionless logs work) - Double-click dispatch: text → editor, image → image viewer, video → video player - Parallel file sniffing (16 concurrent) for fast scanning - Skip known large dirs (node_modules, __pycache__, build, dist, etc.) - Preserve subdirectory collapse state on refresh - Directories sorted first, then files alphabetically Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
File indexing, stream search, and analysis all process files in 1MB chunks synchronously, blocking the Electron event loop and causing the OS "Application Not Responding" dialog on large files. Fix: yield control after each chunk with setImmediate() in: - FileHandler.open() — file indexing - FileHandler.searchWithStream() — stream-based search - ColumnAwareAnalyzer.analyze() — log analysis Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
GET_LINE_TIMESTAMPS) fetches all timestamps in a single round-tripTest plan
🤖 Generated with Claude Code