Vladimir Golovnev
ee9d2173e0
Combine all the column filter related widgets
...
PR #18726 .
2 years ago
Chocobo1
a450a7c6e1
Delegate string hashing to standard library
...
Since standard library could have platform dependent specialized hashing functions.
Also the main idea is to let `qHash` handle whatever integer type `std::hash` returns and mix it with `seed` accordingly.
PR #18715 .
2 years ago
thalieht
d41a77841d
Save UI Theme Dialog size
...
PR #18709 .
2 years ago
thalieht
ae06daba6a
Correctly initialize group box children as disabled
...
PR #18710 .
2 years ago
Vladimir Golovnev
77aa85fbd3
Provide UI Theme editor
...
PR #18655 .
2 years ago
Vladimir Golovnev
989b1e6c2c
Improve finished torrent handling
...
PR #18704 .
Closes #18694 .
2 years ago
Vladimir Golovnev
9ef23d524d
Prevent incorrect log message about torrent content deletion
...
PR #18692 .
Closes #18689 .
2 years ago
Tom
0bb0829a9a
Allow to filter torrent list by save path
...
PR #18600 .
2 years ago
Chocobo1
fa30b70453
Fix code defects
2 years ago
thalieht
f630d84858
WebUI: Add "Add to top of queue" option
...
PR #18660 .
2 years ago
Vladimir Golovnev
ee6f699b48
Apply adjacent changes within single transaction
...
PR #18635 .
2 years ago
Vladimir Golovnev
ce9bdaef5c
Correctly check for database needs to be updated
...
* Correctly check for database needs to be updated
* Create index only if not exists
* Double check whether database needs to be updated
PR #18638 .
2 years ago
Vladimir Golovnev
37c04fdeed
Prevent possible problem of using incomplete type
...
PR #18639 .
2 years ago
Vladimir Golovnev
c51aa2d573
Index torrents table by queue position
...
PR #18623 .
2 years ago
sledgehammer999
b922e1ae73
Sync translations from Transifex and run lupdate
2 years ago
Vladimir Golovnev
58a654a70f
Reject requests that contain backslash in path
...
PR #18626 .
Closes #18618 .
2 years ago
Vladimir Golovnev
ff0f3b4975
WebAPI: Allow to set read-only directory as torrent location
...
PR #18613 .
Closes #18480 .
2 years ago
Vladimir Golovnev
8df68ac878
Prevent RSS folder from being moved into itself
...
PR #18619 .
Closes #18446 .
2 years ago
Vladimir Golovnev
2f9b313287
Perform own tracking of files progress
...
PR #18597 .
2 years ago
Vladimir Golovnev (Glassez)
cbf591a8b5
Improve SOCKS5 error messages
2 years ago
Vladimir Golovnev (Glassez)
96da685e5d
Expand the scope of "Proxy hostname lookup" option
2 years ago
Vladimir Golovnev (Glassez)
6ac14d0c57
Allow to use proxy per subsystem
2 years ago
Vladimir Golovnev (Glassez)
4745a40f0b
Allow to specify proxy option per request
2 years ago
Vladimir Golovnev (Glassez)
8993d87b32
Let Search Engine handle its proxy usage
2 years ago
loligans
466314675c
WebUI: Add multi-file renaming
...
PR #18287 .
Closes #16239 .
2 years ago
Hanabishi
d75fd3fcde
Show filtered port numbers in logs
...
PR #18544 .
2 years ago
Vladimir Golovnev
9fb9ca47f6
Update the cached state once recheck is started
...
We have to force update the cached state, otherwise someone will be able to get an incorrect one during the interval until the cached state is updated in a regular way.
PR #18579 .
Closes #18559 .
2 years ago
Luka Čelebić
917190d936
Add shortcut for "Ban peer permanently" function
...
PR #18576 .
2 years ago
Vladimir Golovnev
1e913f46f0
Rename isSeed to isFinished to correctly represent its meaning
...
PR #18580 .
2 years ago
Vladimir Golovnev
4c0ebc0e0f
Access some more data in a non-blocking manner
...
* Cache URL seeds to access in a non-blocking manner
* Provide non-blocking way to create magnet URI for torrent
PR #18572 .
2 years ago
Chocobo1
6a4bb5c1b7
Migrate away from unsafe function
...
MooTools More has CVE-2021-20088 and qbt is affected by it by using the
unsafe function call `String.parseQueryString()`, so migrate away from
it.
PR #18554 .
2 years ago
Vladimir Golovnev
7600f59f3a
Prevent precise timers from being used when unnecessary
...
The implementation of QTimer::singleShot() uses Qt::PreciseTimer if interval is less than 2 seconds. This isn't mentioned in the docs.
Qt::PreciseTimer increases the system's timer resolution which negatively affects power consumption.
PR #18555 .
Closes #18350 .
2 years ago
sledgehammer999
915121a0dd
Sync translations from Transifex and run lupdate
2 years ago
Vladimir Golovnev
1be5b3abd8
Revamp torrent content widget
...
PR #18162 .
2 years ago
brvphoenix
e37661d53a
WebUI: Add filelog settings
...
PR #18506 .
Closes #17421 .
2 years ago
Vladimir Golovnev
d06f78dbbd
Improve sync API performance
...
PR #18394 .
2 years ago
Vladimir Golovnev
5d4766edbe
Allow to add new torrents to queue top
...
PR #18518 .
Closes #11599 .
2 years ago
Vladimir Golovnev
72ac92ec68
Allow to use another icons in dark mode
...
PR #18435 .
2 years ago
sledgehammer999
b2213ded6d
Support TLS 1.2+ only in the server
...
Closes #18122
2 years ago
sledgehammer999
1ea2fe5b8d
Blacklist bad ciphers for TLS in the server
...
Prevents the ROBOT attack.
Closes #18483
2 years ago
Vladimir Golovnev
7227d2b2b2
Revert changes of conflict resolution strategy on automatic move
...
PR #18516 .
Closes #18297 .
Closes #18495 .
2 years ago
Vladimir Golovnev
0dcbf9f698
Improve command line parameters dispatching
...
Encapsulate parameters dispatching in Application class.
Avoid serializing parameters when it is not necessary.
PR #18469 .
2 years ago
Vladimir Golovnev
09e58df03f
Don't increase limits when prefetching metadata for added magnets
...
Adjusting limits was made based on the belief that "forced" torrents (internally used for prefetching metadata)
are still under limits, but ignore only the queue. This is not really the case. "Forced" torrents ignore the limits
like "maximum active torrents/downloads", so adjusting limits is not required, and what's more, it really causes the
problem of unexpectedly activated previously queued torrents when adding some magnet using "Add new torrent" dialog.
PR #18503 .
Fixes #18490 .
2 years ago
sledgehammer999
10153f0063
Use previous color for pause icon for indicating status
...
Affects transfer list and status filters
Related to PR #18110
2 years ago
sledgehammer999
870bb42e4f
[WebUI] Use new pause icon color for toolbar/menu
...
This the webui part of PR #18110
2 years ago
sledgehammer999
b61c7b7220
Adjust env variable for PDB discovery
2 years ago
Vladimir Golovnev
c58fb92365
Suppress warning when session cookie name isn't overridden
...
PR #18455 .
2 years ago
sledgehammer999
630b4ed3b9
Migrate settings much earlier
2 years ago
Vladimir Golovnev
2310dcd136
Reload system tray icon to replace menu
...
PR #18250 .
Closes #18074 .
2 years ago
Nick Korotysh
ee00a80796
Drop extra semicolon
...
Fixes build with -pedantic flag.
PR #18431 .
2 years ago