Add comprehensive download manager system#11
Merged
jasielmacedo merged 4 commits intoNov 6, 2025
Merged
Conversation
Implement a full-featured download manager for user downloads, completely separate from the existing model download functionality. This includes: - SQLite database schema for download history and settings - Dedicated download service with pause/resume/cancel capabilities - Standalone download manager window with full UI - Integration with main window via three-dot menu - Save Image As functionality in webview context menus - Configurable default download folder - Persistent downloads that continue even when main window closes The download manager tracks all user-initiated file downloads, provides real-time progress updates, and allows users to manage completed downloads.
- Add missing shell import in download service (was causing runtime errors) - Fix Save Image As bug: chosen save path now actually used instead of default - Add getDownload(id) method to database for efficient single download queries - Remove unused downloadIdCounter variable - Implement pending custom paths system for Save As functionality - Update download handler to check for custom paths before using defaults The Save Image As feature now correctly saves to the user-chosen location instead of ignoring it and using the default downloads folder.
jasielmacedo
deleted the
claude/add-download-manager-window-011CUqpC5zYtPzuRoq7kPTA1
branch
November 6, 2025 03:04
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.
Implement a full-featured download manager for user downloads, completely
separate from the existing model download functionality. This includes:
The download manager tracks all user-initiated file downloads, provides
real-time progress updates, and allows users to manage completed downloads.