Skip to content

Commit

Permalink
Changelog : 1.3
Browse files Browse the repository at this point in the history
- Added Threading Modes

Single: Download will be executed within the main thread and the GUI
won't respond to your actions if the download isn't finished.

Multiple: Download(s) will be executed with sepereate Threads (QThreads). This is mostly intended for single downloads. You can use that function also for multiple downloads, but that will ruin the progress bar, because it will jump between the different videos.

Your decision ;)
  • Loading branch information
EchterAlsFake committed Jul 8, 2023
1 parent f20ab5e commit bf6d4cb
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,17 @@ Some releases are too big for GitHub. In that case, you can find it on [Google D
- Added additional stuff to the metadata function (Likes, Image URL, Tags)
- Added border colours for input fields

## 1.3

- Added Threading Modes

Single: Downloads will be executed within the main thread, and the GUI
won't respond to your actions if the download isn't finished.

Multiple: Download(s) will be executed with separate Threads (QThreads). This is mostly intended for single downloads. You can use that function also for multiple downloads, but that will ruin the progress bar, because it will jump between the different videos.

Your decision ;)

# Contributing

You can contribute literally everything. Typo Errors, code optimization, features... Just make a Pull Request :) <br>
Expand Down

0 comments on commit bf6d4cb

Please sign in to comment.