Chocobo1
cab10aa7b4
Use QString::toStdString()
...
Qt5 utilized the desired toUtf8() instead of toAscii().
8 years ago
sledgehammer999
5046c36458
Immediately update torrent_status after manipulating super seeding mode. Partially fixes #6072 .
8 years ago
Tim Delaney
c0339d4f6a
Fix regex RSS matching. Closes #6337 .
...
--HG--
branch : magao-dev
8 years ago
dzmat
b167b4174e
reduce methods accessibility from public to private
8 years ago
Tim Delaney
5d185f1fcd
Fix compilation error on Qt<5.4. Closes #6170 .
...
--HG--
branch : magao-dev
8 years ago
Eugene Shalygin
13d9dea8ac
cmake: make LibtorrentRasterbar::LibTorrent public dependency of qbt_base
...
If libtorrent include directory not in the compiler search path, we have
to pass it to all qbt targets, because session.h includes
libtorrent/version.hpp
8 years ago
Falco
84759d4f20
fix index overflow for torrents with invalid meta data or empty progress
8 years ago
thalieht
f8213f5d56
friendlyUnit: Properly replace spaces with non-breaking spaces
8 years ago
thalieht
311b060c70
Increased number of digits after the decimal point for Gibibytes and above
8 years ago
sledgehammer999
f4fa000ba3
Polish previous commit.
8 years ago
Chocobo1
0517a3eb63
Fix rss icon too large in rss settings dialog
...
Give a name to the rss icon (in .ui file)
Add helper function: Utils::Misc::largeIconSize()
Group functions under the same #ifdef
8 years ago
Chocobo1
a2bb947dcc
After files relocate, don't remove the old folder even if it is empty.
8 years ago
Chocobo1
fa45ba102c
Refactor
8 years ago
Chocobo1
e37a696e7d
Refactor
...
Move default value to preference class
Rename variable
Reorder headers
Remove extra parentheses
8 years ago
Chocobo1
72a6f7ae24
Use the numbers from tracker scrape response. Closes #5048 , #6117 .
...
Add comments
Thanks to Ian Kent for helping investigate
8 years ago
sledgehammer999
a092cb9bda
Remove settings to exchange trackers. It wasn't used by non-libtorrent clients. Also it has a privacy risk and you might be DDoSing someone. DHT makes it obsolete anyway.
8 years ago
Eugene Shalygin
b6e64c13d8
Fetch torrent status when generating final fastresume data
...
This is done to get correct queue position, which has to be written into
the fastresume file. See discussion in #6154 .
8 years ago
Eugene Shalygin
6cd233dd61
Add queue repair code
...
This is a bit adjusted code created by nxd4, who shared it in issue
disappearing).
8 years ago
Eugene Shalygin
4c13f155ff
Do not remove added files unconditionally. Closes #6248
...
If removing of added torrents is enabled and dialog for adding torrents
is disabled, file guard was assuming that torrent is added successfully.
And that can be not the case if a user trying to add a broken torrent
file (or not a torrent file at all). Then this file gets deleted always.
Fix this by checking result of addTorrent_impl().
8 years ago
Eugene Shalygin
de403dcd9d
Workaround problem with moc from Qt4 and #if
...
moc from Qt4 ignores Q_ENUMS when it is behind #if QT_VERSION check.
Therefore moc entries for enum in TorrentFileGuard were not generated
and the setting was not saving/loading. This closes #6103 , #5451
8 years ago
sledgehammer999
c384cc8c8c
Move new icons to their own theme folder.
8 years ago
Eugene Shalygin
7b594a635e
Set upper version limit for QTBUG-52633
...
The bug seems to be fixed in version 5.7.1.
8 years ago
Tim Delaney
70ce12372d
Follow project coding style. Issue #2192 .
...
--HG--
branch : magao-dev
8 years ago
Tim Delaney
2244b7cb66
RSS episode filter refactoring and logging (prep for later commits).
...
--HG--
branch : magao-dev
8 years ago
Chocobo1
bc41e2034c
Fix warning: unused parameter ‘action’ [-Wunused-parameter]
8 years ago
sledgehammer999
4f59caf3ca
Fix share ratio limiting. Broken by commit 259b5e51c4
. Closes #6039 #6048 .
8 years ago
Eugene Shalygin
9a123c42c3
Add a workaround for QTBUG-52633, qBt issue #5073
...
The QTBUG-52633 results in food of network interface changed events, libtorrent IP
rebind calls and flood in the qBt log. The work around is the check not only for
interface name, but for IP address on that interface before triggering the libtorrent rebind.
8 years ago
sledgehammer999
283511116e
New translations: Icelandic, Latvian, Malay, Occitan, Uzbek
...
Also re-run lupdate.
8 years ago
sledgehammer999
d88ec48468
Polish previous commit.
8 years ago
dzmat
abeff99ba0
minimizing the number of warnings about deprecated auto_ptr
8 years ago
Chocobo1
5cf86d3677
Change Utils::Fs::freeDiskSpaceOnPath() signature
...
refactor the function internals
8 years ago
thalieht
b2144f7928
SearchTab: use saveSettings() and loadSettings() to handle header state
8 years ago
sledgehammer999
0d1b70e248
Decouple dependency between Session and BandwidthScheduler during Session init. Closes #6007 .
8 years ago
Chocobo1
ab187f06da
Fix unused variable warnings
8 years ago
Chocobo1
0b313e0bc3
Remove unused variable
8 years ago
Chocobo1
7f2f78a816
Simplify #if expression
8 years ago
Chocobo1
e1c9e3b9ed
Fix memory leak
...
call unicode version of the function directly
8 years ago
Chocobo1
5608827429
Simplify function call
8 years ago
Chocobo1
5d2d22a218
Fix warning C4090.
...
different '__unaligned' qualifiers.
8 years ago
Chocobo1
11c2ee81c1
Fix warning C4267.
...
conversion from 'size_t' to 'int', possible loss of data.
8 years ago
Chocobo1
cffa729ac5
Put temp files in .qBittorrent directory. Closes #4462 .
8 years ago
Chocobo1
d84461c9b2
Remove unused header
8 years ago
dzmat
4b18bb29a6
DRY violation fixed
8 years ago
zywo
6e7d3b8135
Fix CMake compilation error.
8 years ago
Chocobo1
a415f14fac
Rename splitter names
8 years ago
Chocobo1
6b835f53ce
Use new key for storing RSS splitter_v value.
...
So that old value won't override the RSS layout.
8 years ago
Tim Delaney
b84d9201fd
Allow | in RSS must contain. Closes #6171 .
...
--HG--
branch : magao-dev
8 years ago
Tim Delaney
390d7a8124
Improve UI responsiveness during RSS downloading. Closes #873 , #1089 , #1235 , #5423 .
...
--HG--
branch : magao-dev
8 years ago
Tim Delaney
32bdb73f70
RSS allow infinite range to extend beyond current season. Closes #800 , #3876 , #6170 .
...
--HG--
branch : magao-dev
8 years ago
thalieht
c7a04e27f4
Log: set embedded Tracker [OFF] msg type as info
8 years ago