Giter Club home page Giter Club logo

flowd's Introduction

FlowD

GitHub stars GitHub issues GitHub Merged Prs GitHub License Language Frame

An Efficient Multi-threaded Download Manager

English | 中文

Introduction

FlowD is a cross-platform, modern download manager developed with Qt that supports multi-threaded downloads, significantly increasing download speed and efficiency. FlowD is designed to provide users with a simple, fast, and easy-to-use download solution tool.

It supports Windows, macOS, and Linux paltform.

Features

  • Multi-threaded Downloads: Utilizing parallel processing, FlowD can fully leverage network bandwidth to accelerate the downloading process.
  • User-friendly Interface: An intuitive graphical user interface makes the management and monitoring of download tasks simple.
  • Automatic Resume: Supports automatic pause and resume during the download process to ensure reliability.
  • Customizable Settings: Users can adjust download parameters according to their needs, such as the number of threads and download speed limits.

Contributing

We welcome contributions from the community, including but not limited to code, documentation, design, and translations. If you are interested in contributing to the development of FlowD, please submit a Pull Request or create an Issue.

License

FlowD is open-source software, released under the MIT License.


Thank you for using FlowD, and we look forward to your feedback and suggestions!

flowd's People

Contributors

l-super avatar programcx avatar

Stargazers

 avatar Echo avatar Starry Source avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

programcx

flowd's Issues

[FEATURE]: use Qt linguist for translation

** Feature Description 【特性详细描述】**

The current default language is set to Chinese.
To make our application more accessible to a wider audience,
we should include a translation system and set English as the default language.
We can use Qt Linguist to create .ts files for translations using lupdate.

QTranslator translator; if (translator.load(QLocale(), "FlowD", "_", ":/translations")) { app.installTranslator(&translator); }

For making strings translatable, we can use the tr function. Here’s an example:

void DownloadItemWidget::onBtnSuspendClicked(bool checked) { if (checked) { ui->btnSuspend->setText(tr("Continue")); /* When the button is checked, change the text to "Continue" TODO: Add logic to resume the download */ } else { ui->btnSuspend->setText(tr("Pause")); /* When the button is unchecked, change the text to "Pause" TODO: Add logic to pause the download */ } }

This setup will ensure that our application supports multiple languages,
with English as the default. The lupdate tool will help generate the .ts files needed for translation.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.