qbittorrent:v4_1_x

Last commit made on 2020-03-13
Get this branch:
git clone -b v4_1_x https://git.launchpad.net/qbittorrent

Branch merges

Branch information

Name:
v4_1_x
Repository:
lp:qbittorrent

Recent commits

d8cb552... by Mike Tzou <email address hidden>

Merge pull request #12159 from thalieht/backportflags

Backport #12014: Use IP geolocation database by DB-IP instead of MaxMind

304e831... by sledgehammer999

Use IP geolocation database by DB-IP instead of MaxMind

f16d219... by Mike Tzou <email address hidden>

Merge pull request #11778 from FranciscoPombal/v4_1_x

WebUI: backport #11635 and #11756 to v4_1_x

22b0160... by FranciscoPombal <email address hidden>

WebUI: fix populating statistics window

Closes #11665

d4f49c3... by FranciscoPombal <email address hidden>

WebUI: Prevent excessive sync requests

Don't sync main data if a request to do so is already in progress.

This prevents piling up of requests and bogging down slow/busy machines, since the current implementation of `/api/v2/sync/maindata` is very computationally intensive, especially with lots of torrents.

Everything gets updated on the next scheduled request anyway (via the timeout mechanism).

0b055d8... by Mike Tzou <email address hidden>

Merge pull request #11472 from thalieht/backport_pausechecking

Backport

21595fc... by thalieht <email address hidden>

Reallow to force recheck torrents that aren't fully started

64ac48e... by thalieht <email address hidden>

Reallow to pause checking torrents

5d98721... by Mike Tzou <email address hidden>

Merge pull request #11437 from Chocobo1/backport

Fix integer narrowing on x86 (backport)

5981595... by Chocobo1 <email address hidden>

Fix integer narrowing on x86

The f_type is an alias to `int` on 32-bit system and the switch cases
uses `unsigned int`.

Closes #11427.