57 Commits

Author SHA1 Message Date
79e80fd798 feat: enhance code viewer with modern Angular inputs and improved styling
- Updated CodeRendererComponent to use Angular's new input() signals instead of @Input decorators
- Added fallback content escaping for code that can't be syntax highlighted
- Improved code viewer styling with larger fonts, better padding and gradient header background
- Enhanced file content fetching with robust cache-busting and fallback mechanisms
- Added debug logging to track content loading and syntax highlighting
- Fixe
2025-11-02 10:51:56 -05:00
0dc346d6b7 feat: add folder filtering and improve list view performance
- Added server-side folder filtering to paginated metadata endpoint with support for regular folders and .trash
- Improved list view performance by optimizing kind filtering and non-markdown file handling
- Updated folder navigation to properly reset other filters (tags, quick links, search) when selecting a folder
- Added request ID tracking to prevent stale responses from affecting pagination state
- Enhanced list view to show loading
2025-11-02 08:38:05 -05:00
70ca76835e feat: preserve scroll position during note list resets
- Added scroll position preservation when resetting note list (e.g. during searches)
- Implemented willReset signal in PaginationService to notify views before data resets
- Created preserveOnReset effect to capture scroll offset before list changes
- Added restoreAfterReset effect to restore scroll position after data reloads
- Updated loadInitial and invalidateCache methods to trigger willReset notifications
2025-11-01 10:10:45 -04:00
b985a7cdbb feat: add non-markdown files to metadata endpoints
- Added support for non-markdown files (images, PDFs, code, etc) in vault metadata endpoints
- Implemented filesystem scanning for non-markdown files with configurable extension whitelist
- Added deduplication by file path to prevent duplicates between Meilisearch and filesystem
- Enhanced folder filtering and kind filtering to properly handle non-markdown files
- Added validation to remove stale entries not present on disk
- Improved logging to track
2025-10-31 23:20:36 -04:00
545c07a4b3 feat: enhance notes list with filtering, sorting and view modes
- Added comprehensive filtering system with support for file types, tags, and quick links
- Implemented sort options (title, created, updated) with dropdown menu
- Added three view modes (compact, comfortable, detailed) for different density layouts
- Added note color indicators and hover actions (edit, delete) to note cards
- Integrated file type detection with appropriate icons for different content types
- Added filter badges to show
2025-10-31 10:54:17 -04:00
57da40f25f feat: add backup file management settings
- Added settings UI to enable/disable .bak file creation when saving files
- Created settings storage in .obsidian/obsiviewer.json to persist backup preferences
- Added API endpoints to read/write backup settings (/api/settings)
- Implemented automatic cleanup of existing .bak files when disabling backups
- Modified file save operations to respect backup setting across notes, bookmarks and graph files
- Removed existing .bak files from version control
2025-10-31 07:35:39 -04:00
cbdb000d4b feat: enhance navigation and URL state management
- Added clickable "Quick Links" header to navigate to all pages view
- Implemented URL normalization to handle multiple section params (tag/folder/quick) with priority rules
- Added suppressNextNoteSelection flag to prevent auto-selection for certain quick link actions
- Updated URL state service to use setQuickWithMarkdown for consistent navigation state
- Improved path normalization to handle backslashes and leading slashes consistently
- Added distinct
2025-10-30 21:34:45 -04:00
6f01d65411 feat: add support for non-markdown files and improve drawings UI
- Added scanning and metadata tracking for non-markdown files (images, PDFs, videos, code files)
- Redesigned drawings editor header with new toolbar layout and dropdown menus
- Added file picker dropdown to easily open existing .excalidraw files
- Implemented new file creation flow with auto-generated filenames
- Added export options menu with PNG/SVG/JSON export variants
- Updated proxy config to support vault file access
- Adde
2025-10-30 12:05:00 -04:00
b1f142c4f7 feat: enhance Excalidraw editor UI and autosave functionality
- Redesigned editor toolbar with improved layout and accessibility attributes
- Added automatic save after 7 seconds of inactivity for better data protection
- Replaced emoji icons with SVG icons for consistent styling and accessibility
- Added success toasts for PNG/SVG exports with destination path
- Updated button styles and layout for better visual hierarchy
- Added aria-labels and improved keyboard navigation support
- Made action buttons optionally hideable via
2025-10-28 22:25:40 -04:00
5647b42d8a feat: add test excalidraw page with deep linking support
- Added new test excalidraw page component and route with deep linking via ?tests=excalidraw
- Enhanced drawings editor to preserve frontmatter and normalize metadata when saving .excalidraw.md files
- Improved excalidraw file handling with better error handling and sanitization
- Updated sidebar and navigation to include test excalidraw option
- Fixed collaborators map serialization issue in excalidraw scene data
2025-10-28 12:47:25 -04:00
e944f6645a feat: switch workspace to Excalidraw drawing mode
- Updated workspace state to open new Excalidraw drawing instead of empty tab
- Removed test-drawing.excalidraw.md file that's no longer needed
- Added Excalidraw plugin to command palette shortcuts
- Updated lastOpenFiles list to include new drawing files
2025-10-27 16:49:50 -04:00
2a82ea2f2b feat: improve note management UI and accessibility
- Replaced fixed positioning with CDK Overlay for "Move to Folder" dialog with improved accessibility and focus management
- Added visual accent color support to note header buttons based on note color metadata
- Enhanced move dialog with keyboard navigation and Enter key support for quick folder selection
- Improved dialog backdrop with themed blur effect and proper z-indexing
- Fixed folder icon SVG path in move dialog
- Added max height constraint an
2025-10-27 16:37:31 -04:00
11a58426d0 feat: revamp editor UI and enhance about panel
- Updated markdown editor with modern toolbar design and improved visual hierarchy
- Added auto-save indicator and note color support in editor header
- Redesigned note list cards with hover effects and quick action buttons
- Added version, build date and copyright info to about panel
- Enhanced scrollbar styling and padding in editor container
- Improved responsive layout and dark mode support across components
2025-10-27 10:11:20 -04:00
917af04642 feat: enhance note creation and navigation UX
- Added note creation event handlers to sync selection, scrolling and focus across components
- Improved context menu styling with better opacity and z-index handling
- Updated mobile layout to hide search input on larger screens
- Fixed focus timing issues in move-note-to-folder component
- Added URL state management for newly created notes
- Removed unused archived note files
- Added proper note ID tracking and scroll-into-view behavior
- Enhanced error
2025-10-26 11:54:47 -04:00
0ae9cae1eb feat: add note moving functionality with UI controls
- Added new API endpoint /api/vault/notes/move for moving markdown files between folders
- Implemented setupMoveNoteEndpoint with path validation, error handling, and event broadcasting
- Added move note UI component to note header with folder selection
- Updated note viewer to handle note path changes after moving
- Added moveNoteToFolder method to VaultService for client-side integration
- Modified note header layout to include move trigger
2025-10-25 21:39:31 -04:00
b1da9b111d feat: reorganize context menu documentation into docs folder
- Moved CONTEXT_MENU_INDEX.md and CONTEXT_MENU_VERIFICATION.md into docs/ directory for better organization
- Consolidated all context menu documentation files in one location for easier maintenance
- Documentation remains complete with 1000+ lines covering implementation, integration, and verification

The change improves documentation structure by moving context menu related files into a dedicated docs folder, making it easier for developers to find an
2025-10-25 20:17:10 -04:00
b873577e93 feat: improve note path handling and add delete confirmation modal
- Updated API endpoints to handle note paths with slashes using regex routes
- Added warning modal component for note deletion confirmation
- Fixed URL encoding of note paths to preserve spaces and special characters
- Improved fullscreen note handling to use URL state and custom events
- Enhanced internal link copying to use proper URL format
- Removed test/sample note files from vault directory
2025-10-25 16:27:42 -04:00
96745e9997 feat: add URL state synchronization for navigation
- Added UrlStateService to sync app state with URL parameters for note selection, tags, folders, and search
- Implemented URL state effects in AppComponent to handle navigation from URL parameters
- Updated sidebar and layout components to reflect URL state changes in UI
- Added URL state updates when navigating via note selection, tag clicks, and search
- Modified note sharing to use URL parameters instead of route paths
- Added auto-opening of relevant
2025-10-24 23:23:30 -04:00
0f7cc552ca feat: add note context menu with color and metadata controls
- Added PATCH endpoint for updating note frontmatter with YAML parsing and merging
- Added DELETE endpoint to move notes to .trash directory with timestamped filenames
- Implemented note context menu with actions like duplicate, share, favorite, and delete
- Added color picker to context menu with gradient background visualization
- Extended NoteFrontmatter type with readOnly and color properties
- Added YAML frontmatter parser with support
2025-10-24 13:45:02 -04:00
83603e2d97 feat: enhance notes list UI with improved visual hierarchy
- Added new folder creation endpoint with support for path or parent/name parameters
- Updated notes list styling with consistent row cards and active state indicators
- Improved theme-aware color variables for better light/dark mode contrast
- Added visual depth with subtle gradient overlays and active item highlighting
- Implemented consistent styling between virtual and standard note list views
- Enhanced new note button styling for better visibility
2025-10-24 13:08:13 -04:00
08a2d05dad feat: add folder management endpoints and CORS support 2025-10-24 08:02:40 -04:00
7e20098d14 feat: add API tests panel to sidebar navigation and UI components 2025-10-23 14:02:46 -04:00
69df390f58 docs: remove Phase 2 completion and executive summary files 2025-10-23 11:50:27 -04:00
c030f91ebe perf: optimize Docker build with layer caching and BuildKit support 2025-10-22 23:13:09 -04:00
397f1b4b80 docs: remove legacy implementation docs in French 2025-10-22 14:56:44 -04:00
698bfef3d8 feat: add help and about pages with sidebar navigation buttons 2025-10-22 08:58:26 -04:00
eeb957cf17 refactor: redesign editor buttons and improve scrollbar theming 2025-10-21 22:32:54 -04:00
0d0607577d refactor: update tag-related styles and UI components with new color system 2025-10-21 14:36:26 -04:00
6e50acbd22 feat: add document properties popover with frontmatter metadata 2025-10-21 11:41:39 -04:00
d788c9d267 feat: add syntax highlighting and code block styling with theme support 2025-10-21 08:34:46 -04:00
062d743481 feat: add CodeMirror dependencies and implement markdown editor UI 2025-10-20 15:43:56 -04:00
3c716fab58 feat: implement new tag management system with filtering and modern UI overlay 2025-10-20 11:07:07 -04:00
168fcaf049 feat: reorder frontmatter keys and add publish/private quick links 2025-10-19 22:19:35 -04:00
0f7610bed1 feat: add quick links filtering and frontmatter enrichment on file load 2025-10-19 20:47:18 -04:00
32a9998b40 feat: add Meilisearch backend integration with Docker Compose setup and Excalidraw support 2025-10-14 10:41:15 -04:00
f50b03a099 refactor: replace basic search with SearchOrchestratorService for improved tag filtering and search index 2025-10-05 20:39:05 -04:00
989f3ee25a feat: add search diagnostics logging and tag cardinality tracking 2025-10-05 16:24:19 -04:00
6c4febe205 feat: add frontend logging system with router and visibility tracking 2025-10-05 11:59:17 -04:00
c0ebfcf5b9 docs: remove deprecated integration checklists and documentation files 2025-10-05 10:31:50 -04:00
8c5394ed64 feat: adjust graph visualization parameters and add distinct colors for tag/attachment nodes 2025-10-04 09:34:04 -04:00
e75fcd60cd refactor: migrate graph canvas to use web worker for force layout computation 2025-10-04 08:56:49 -04:00
a948d10512 refactor: replace toBeTrue/toBeFalse with toBe(true/false) in test assertions 2025-10-03 14:34:10 -04:00
77ced60d7c 96 SUCCESS tests complet 2025-10-03 14:24:16 -04:00
2dfe827759 chore: update Angular cache and TypeScript build info 2025-10-03 08:20:08 -04:00
ce67d6e0de chore: update Angular cache and TypeScript build info 2025-10-02 16:05:25 -04:00
b6d47bde5b chore: update Angular TypeScript build info cache 2025-10-02 15:49:22 -04:00
cf4a3b60eb chore: update Angular cache and TypeScript build info files 2025-10-02 13:46:33 -04:00
20cc6e9215 chore: update Angular TypeScript build info cache 2025-10-02 10:55:11 -04:00
1d4da38164 chore: update Angular cache with new TypeScript definition files 2025-10-01 10:33:30 -04:00
89c8315820 chore: update TypeScript build info cache 2025-10-01 08:20:34 -04:00