Open
Conversation
…l for displaying all shortcuts\n- Add SlashCommandMenu for quick block insertion\n- Add WorkspaceSidebar for page navigation\n- Add IconPicker for page icon selection\n- Implement keyboard shortcuts service
… to app layout\n- Register global navigation shortcuts (Cmd+T, Cmd+U, Cmd+D)\n- Add shortcuts modal accessible via Shift+?\n- Make shortcuts work across all pages
… with localStorage\n- Add 7 built-in templates (Blank, Meeting Notes, Daily Journal, etc.)\n- Support for custom templates\n- Template CRUD operations
…emplates\n- Add search and filter functionality\n- Categorized template display\n- Template preview cards with icons
…owse all available templates\n- Search and category filtering\n- One-click page creation from templates\n- Matches app color scheme
…ncryption\n- Update package.json and lock file
…tion\n- Key derivation from user identity\n- Encrypt/decrypt content methods\n- Key export/import for backup\n- Secure key management with localStorage
…in UI\n- Export/import encryption keys\n- Visual feedback for encryption state\n- Key management interface
…d to Storacha\n- Image compression and thumbnail generation\n- File size validation (max 100MB)\n- Drag-and-drop support\n- Upload progress tracking
…e upload interface with drag-and-drop\n- File management (view, copy link, delete)\n- Grid view with file metadata\n- Matches app color scheme
…s link to sidebar\n- Add Files link to sidebar\n- Update navigation icons\n- Integrate with existing sidebar design
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.
🔐 Overview
This PR adds file upload capabilities and end-to-end encryption features, enabling users to securely upload, manage, and encrypt their files.
✨ Features Added
Encryption Service
Encryption Status Indicator
File Upload Service
File Upload Component
Files Page (
/files)Navigation Integration
🎯 User Benefits
🔧 Technical Details
Dependencies Added
@noble/ciphers- Encryption libraryFiles Changed
package.json- Added encryption dependencysrc/lib/services/encryption.ts- Encryption servicesrc/lib/services/file-upload.ts- File upload servicesrc/lib/components/EncryptionStatusIndicator.svelte- Encryption UIsrc/lib/components/FileUpload.svelte- File upload componentsrc/routes/files/+page.svelte- Files page routesrc/lib/components/sidebar/Sidebar.svelte- Navigation updatesCommits
feat: add encryption dependency- Add @noble/ciphersfeat: add encryption service- Core encryption functionalityfeat: add encryption status indicator- Encryption UI componentfeat: add file upload service and component- File upload functionalityfeat: add files upload page- Dedicated files routefeat: add Files and Templates to sidebar navigation- Navigation integration🔒 Security Considerations
🧪 Testing
🔗 Related
Ready for Review ✅