{"id":24783197,"url":"https://github.com/thatlinuxguyyouknow/turboshark","last_synced_at":"2026-07-02T10:31:30.398Z","repository":{"id":266571671,"uuid":"898711402","full_name":"ThatLinuxGuyYouKnow/TurboShark","owner":"ThatLinuxGuyYouKnow","description":"Multi-threaded download manager","archived":false,"fork":false,"pushed_at":"2025-08-23T18:07:39.000Z","size":905,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-24T04:09:36.533Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ThatLinuxGuyYouKnow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-12-04T22:23:16.000Z","updated_at":"2025-08-23T18:07:43.000Z","dependencies_parsed_at":"2024-12-05T00:27:27.425Z","dependency_job_id":"39b873a8-16f4-4c2f-8297-dd0f362c716c","html_url":"https://github.com/ThatLinuxGuyYouKnow/TurboShark","commit_stats":null,"previous_names":["thatlinuxguyyouknow/turboshark"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ThatLinuxGuyYouKnow/TurboShark","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThatLinuxGuyYouKnow%2FTurboShark","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThatLinuxGuyYouKnow%2FTurboShark/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThatLinuxGuyYouKnow%2FTurboShark/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThatLinuxGuyYouKnow%2FTurboShark/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ThatLinuxGuyYouKnow","download_url":"https://codeload.github.com/ThatLinuxGuyYouKnow/TurboShark/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThatLinuxGuyYouKnow%2FTurboShark/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35043933,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-02T02:00:06.368Z","response_time":173,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-29T12:15:57.656Z","updated_at":"2026-07-02T10:31:30.375Z","avatar_url":"https://github.com/ThatLinuxGuyYouKnow.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Turbo Shark: A Multithreaded Download Manager\n\n[![Flutter](https://img.shields.io/badge/Flutter-%2302569B.svg?style=for-the-badge\u0026logo=flutter\u0026logoColor=white)](https://flutter.dev/)\n[![Dart](https://img.shields.io/badge/Dart-%230175C2.svg?style=for-the-badge\u0026logo=dart\u0026logoColor=white)](https://dart.dev/)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)\n\nTurbo Shark is a Flutter-based multithreaded download manager designed to efficiently download files by breaking them into segments and downloading them concurrently. This approach significantly speeds up the download process, especially for large files.\n\n![🚧](image.png)\n\n## Features\n\n-   **Multithreaded Downloading:** Utilizes Dart isolates to download file segments concurrently, improving download speed.\n-   **Progress Tracking:** Provides real-time progress updates for each download.\n-   **Download States:** Tracks the state of each download (e.g., in progress, done, failed).\n-   **Customizable Segment Count:** Allows you to specify the number of segments to use for downloading.\n-   **User-Friendly UI:** Simple and intuitive user interface using custom drawer for navigation.\n-   **Theme Support:**  Supports dark and light themes.\n \n## Core Logic\n\nThe core download functionality is encapsulated within the `ConcurrentFileDownloader` class. This class is responsible for:\n\n1.  **Segmenting Files:** Dividing large files into smaller segments for concurrent download.\n2.  **Concurrent Downloads:** Utilizing Dart isolates to download these segments simultaneously, improving speed.\n3.  **Progress Updates:** Sending real-time progress information back to the main thread to update the UI.\n4.  **State Management:** Tracking the state of each download (in progress, complete, failed) and updating the user interface accordingly.\n\n## Dependencies\n\nThe following pub.dev packages are used in this project:\n\n-   `provider`: For state management.\n-   `google_fonts`: For custom fonts in the UI.\n\nYou can add these dependencies to your `pubspec.yaml` file:\n\n```yaml\ndependencies:\n  flutter:\n    sdk: flutter\n  provider: ^6.1.1\n  google_fonts: ^6.1.0\n```\n\n## Usage\n\n1.  **Clone the repository:**\n    ```bash\n    git clone https://github.com/ThatLinuxGuyYouKnow/turbo-shark\n    ```\n2.  **Navigate to the project directory:**\n    ```bash\n    cd turbo_shark\n    ```\n3.  **Install dependencies:**\n    ```bash\n    flutter pub get\n    ```\n4.  **Run the app:**\n    ```bash\n    flutter run\n    ```\n\n## Known Issues/Limitations\n\n-   **Error Handling:** The current error handling is basic. More robust error handling and retry mechanisms can be implemented.\n-   **Resuming Downloads:** The current implementation doesn't support resuming interrupted downloads.\n-   **UI Polishing:** The UI could be improved with better feedback on loading states and error conditions.\n-   **Platform Specifics:** Further platform-specific optimizations might be needed for optimal performance.\n-   **Testing:** Further testing would help to find bugs.\n\n## Contributing\n\nContributions are always welcome! If you have any ideas for improvements or find any bugs, feel free to submit a pull request.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthatlinuxguyyouknow%2Fturboshark","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthatlinuxguyyouknow%2Fturboshark","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthatlinuxguyyouknow%2Fturboshark/lists"}