sledgehammer999
15d3df380c
Migrate everything to use the new Preferences class and not access directly the qbittorrent.ini file.(webui)
2014-08-05 02:34:22 +03:00
sledgehammer999
d8d95d2195
Migrate everything to use the new Preferences class and not access directly the qbittorrent.ini file.
2014-08-05 02:34:21 +03:00
sledgehammer999
da6ce859c0
Cache preferences in memory. Closes #1272 , #1523 , #1694 .
2014-08-05 02:33:50 +03:00
sledgehammer999
d0e0b25c9e
Installer correctly associates torrents and magnet links with qBittorrent under non-admin accounts. Closes #291 #527 #579 #614 #964 .
2014-07-30 00:09:57 +03:00
sledgehammer999
25c923c69e
Merge pull request #1470 from glassez/assoc
...
Fix Windows file associations creation
2014-07-20 20:23:01 +03:00
sledgehammer999
8f32f86453
Merge pull request #1782 from sorokin/alert-disp-qt5
...
Fix alertdispatcher.cpp compilability on Qt5.
2014-07-20 20:21:29 +03:00
sledgehammer999
6e76d5cf41
Run lupdate.
2014-07-16 00:48:12 +03:00
sledgehammer999
eb3ca94172
Sync translations from Transifex.
2014-07-16 00:44:48 +03:00
sledgehammer999
e2748ec3ac
Remove deprecated feature of separate DHT port.
2014-07-16 00:17:21 +03:00
sledgehammer999
08e14cdc26
Fix possible crashes. Closes #1814 .
2014-07-14 22:00:40 +03:00
Bryan Roscoe
f6a324a1bd
Scan Folder dialog now remembers last location
...
Also fix fs_utils spacing
2014-07-13 19:50:57 -05:00
Bryan Roscoe
27afbaf7e7
Fix column resizing issues
2014-07-13 17:03:58 -05:00
sledgehammer999
7419e930ab
Indentation fixes.
2014-07-06 23:18:37 +03:00
sledgehammer999
d6d20074be
Merge pull request #1447 from BrunoReX/hibernation
...
Add option to hibernate computer in Auto-Shutdown menu
2014-07-06 23:11:29 +03:00
sledgehammer999
9a18b50751
Some fixes for commit 6dabf50781
.
2014-07-06 21:39:27 +03:00
sledgehammer999
3ad1cc8289
Merge pull request #1779 from sorokin/move-storage
...
Speedup and fix a bug in torrent moving.
2014-07-06 19:19:59 +03:00
Bruno Barbieri
00e09435b2
Add option to hibernate computer in Auto-Shutdown menu
2014-07-06 06:13:36 -03:00
Ivan Sorokin
6dabf50781
Speedup and fix a bug in torrent moving.
...
This commit implements a map where qbittorrent store a state of
current torrent movings. This commit speed up
torrents moving a bit and also fix a bug when qbittorrent doesn't do
cleanup action when a single torrent is moved several times without
waiting for a previous move to complete.
How it worked before.
Libtorrent has a function torrent_handle::move_storage() that allows to move a
torrent to a specific directory. This function is asynchorous. It means that
this function quits instantaneously and when the actual operation
completes the alert 'storage_moved_alert' or
'storage_moved_failed_alert' will be sent. The storage_moved_alert contains a
torrent_handle and a new path to where the torrent is moved.
During handling of storage_moved_alert, qbittorrent needs not only new path,
but also an old path to perform some of cleanup actions (like removing an old
folder if it is empty). This was achieved by storing a value named
'previous save path' in TorrentPersistentData. A previous save path is
written when move_storage() is issued and is read when
storage_moved_alert is received.
Problems.
This mechanism has two negative aspects:
1. TorrentPersistentData is very slow. As torrent_handle::move_storage() is asynchoronous,
TorrentPersistentData is responsible for more that 99.8% of time
QTorrentHandle::move_storage(). This percent could be higher when there
are lots of torrents and lower when there are few of them.
2. TorrentPersistentData stores only one previous path. But many
move_storage()'s could be issued without waiting for previous to
complete. Subsequent move_storage()'s overwrites previous save path of a
previous move.
A fix.
The fix is simple. Before issueing move_storage() the oldPath is stored in
a special map called 'torrentMoveStates'. When a storage_moved_alert
is received the map is consulted and an alert is handled.
When user moves torrent when previous moving have not yet finished, the
new location is saved in a field 'queuedPath' the same map. When
torrent moving is completed (or failed) qbittorrent attemps to perform
move again to the queued location.
Future direction.
This fix removes one slow read and one slow write to
TorrentPersistentData on torrent moving, but there is still exists
TorrentPersistentData::saveSavePath in handleStorageMovedAlert(), so
overall time for UI hang should be reduced only threefold. A speeding up
TorrentPersistentData should be addressed in a separate commit.
I don't know if I should clean up torrentMoveStates when torrent is
deleted. In any case, torrent could be deleted when corresponding alert
is in alert queue. So if we decide to clean up torrentMoveStates, then
we should not treat receiving alert from unknown torrent as a error.
2014-06-23 11:21:24 +04:00
Ivan Sorokin
ce9da1ba1e
Fix alertdispatcher.cpp compilability on Qt5.
2014-06-23 00:14:58 +04:00
Ivan Sorokin
fddd337e34
Suppress warning about signed/unsigned mismatch.
2014-06-22 19:48:21 +04:00
sledgehammer999
273725d9dc
Fix file renaming.
2014-06-18 23:41:52 +03:00
sledgehammer999
c673b1a7d7
Bring mainwindow in front when notification is clicked and other windows are in front.
2014-06-18 23:22:25 +03:00
sledgehammer999
7e9b47948b
Run lupdate.
2014-06-10 23:22:39 +03:00
sledgehammer999
66c08bcc5d
Sync translations from Transifex.
2014-06-10 23:19:43 +03:00
sledgehammer999
03072050fb
Update search engines versions.txt file. Closes #1745 .
2014-06-08 23:58:30 +03:00
sledgehammer999
d58d87a691
Use completed time from libtorrent directly. Closes #1726 .
2014-06-07 14:44:08 +03:00
sledgehammer999
07f76f4939
Merge pull request #1733 from glassez/fix_build
...
Fix building with Qt5 (missing QObject decl).
2014-06-04 21:55:52 +03:00
sledgehammer999
a361c0ea03
Use the torrent_status for the queue_position too.
2014-06-04 20:26:23 +03:00
Vladimir Golovnev (Glassez)
446a9efe9e
Fix building with Qt5 (missing QObject decl).
2014-06-04 17:38:35 +04:00
Vladimir Golovnev (Glassez)
ec092414b5
Fix Windows file associations creation.
...
Now qBittorrent create global ProgId during installation (using HKLM hive)
and allow to associate .torrent files with it (using HKCU).
2014-06-04 17:37:28 +04:00
Vladimir Golovnev (Glassez)
9f310318c2
Use new JSON parser/generator.
...
Qt4: Use QJson (http://qjson.sourceforge.net ).
Qt5: Use native Qt JSON API.
2014-06-04 17:01:41 +04:00
Vladimir Golovnev (Glassez)
f9c3719d12
Add QJson files.
2014-06-04 17:01:40 +04:00
Vladimir Golovnev (Glassez)
6e59877cee
Remove old JSON classes.
2014-06-04 17:01:39 +04:00
Vladimir Golovnev (Glassez)
268562bff3
Fix HTTP request parsing on Qt5.
2014-06-04 17:01:39 +04:00
Ivan Sorokin
510818d631
Replaced dynamic_cast with switch on alert type.
...
Conflicts:
src/qtlibtorrent/qbtsession.cpp
2014-06-04 11:08:31 +04:00
Ivan Sorokin
1244a46cbb
Extract alert handling to separate functions.
2014-06-04 11:08:31 +04:00
sledgehammer999
27c641ffaa
Rework the GUI code for private torrents.
2014-06-04 00:49:03 +03:00
Ivan Sorokin
32c203d2e6
Copyright notices for alert dispatcher.
2014-06-04 01:40:00 +04:00
sledgehammer999
a6fa27467f
Fix previous commits.
2014-06-03 21:19:25 +03:00
Ivan Sorokin
c2a23f2265
use stats_alert in TorrentSpeedMonitor
...
Conflicts:
src/qtlibtorrent/qbtsession.cpp
2014-06-02 00:35:27 +04:00
Ivan Sorokin
6f38616193
extract torrent statistics from torrent speed monitor to separate file
2014-06-02 00:31:45 +04:00
Ivan Sorokin
b50d7331c7
use post_status_update()
...
Conflicts:
src/qtlibtorrent/qbtsession.cpp
2014-06-02 00:31:45 +04:00
Ivan Sorokin
eb46326d23
use set_alert_dispatch instead of timer to get an alerts from libtorrent
...
libtorrent allows setting a custom dispatch handler that is invoked in
libtorrent thread when new alerts are incoming. QAlertDispatcher is a
class that allows to translate these alerts to UI thread.
The concept is very simple:
1. On initialization QAlertDispatcher constructor calls set_alert_dispatch() passing
QAlertDispatcher::dispatch as argument.
2. On deinitialization destructor calls set_alert_dispatch() passing a empty
function. (line 25) libtorrent handles thos and switches back to queuing
alerts in queue.
3. QAlertDispatcher::dispatch() adds alert to queue and notifies UI thread that new
alerts are incoming. Enqueuing is done in function enqueueToMainThread().
The invariant of class is the following:
if alert queue is not empty, in message loop of UI thread contains a queued
invocation of deliverSignal().
4. When message loop is pumped UI thread execute deliverSignal() function.
It emit appropriate signal and if queue is still not empty (for example
if slot doesn't grab alerts) rewind enqueuing to main thread.
This is a idea. But here is some details.
1. When QAlertDispatcher is destoyed, libtorrent still can call
QAlertDispatcher::dispatch a few times after destruction. This is
handled by passing a "tag". A tag is a object that references QAlertDispatch.
Tag could be invalidated. So on destruction QAlertDispatcher invalidates a tag
and then unsubscribes from alerts. When QAlertDispatcher::dispatch is called
with invalid tag it simply discard an alert.
Therefore we could drop a few alerts during unsubscription. So we unsubscribe
only at exit when missing some alerts is not a problem.
2. Another problem is in QBtSession::saveFastResumeData(). It pumps alert
queue synchronously. My first attempt was to destroy QAlertDispatcher
and then pump libtorrent queue. But as I was afraid of losing alerts I
supported synchronous querying of alerts in QAlertDispatcher.
(QAlertDispatcher::getPendingAlerts)
Conflicts:
src/qtlibtorrent/qbtsession.cpp
2014-06-02 00:31:45 +04:00
Ivan Sorokin
329b754197
cache torrent_status
2014-06-02 00:31:42 +04:00
Ivan Sorokin
5af778bc93
don't make the same request to TorrentModelItem twice
2014-05-25 12:32:09 +04:00
Ivan Sorokin
1c98c11dd0
speed up icon loading
2014-05-25 12:32:09 +04:00
Ivan Sorokin
bbc4080a5d
fewer calls to hash()
2014-05-25 12:32:09 +04:00
sledgehammer999
5d2663660d
Count magnet links in the 'downloading' filter and make them prevent system inhibition. Closes #1558
2014-05-15 22:01:27 +03:00
sledgehammer999
659e0b7fef
Fix tracker announcing problem(hit-and-run) when many torrents are being active. Closes #1571
2014-05-15 21:37:31 +03:00
sledgehammer999
c0b3ad7ee3
Fix crash when the selected torrent disappears from the transfer list. Closes #1661
2014-05-15 20:59:34 +03:00
sledgehammer999
81fa246687
Merge pull request #1685 from sorokin/fix-exception-in-prop-widget
...
Don't show availability bar for magnet links
2014-05-15 00:26:41 +03:00
Ivan Sorokin
765253234c
Don't show availability bar for magnet links
...
This commit fixes an exception in PropertiesWidget:
"Caught exception in PropertiesWidget::loadDynamicData(): invalid
torrent handle used"
This exception occurs when an user clicks on a torrent that doesn't have
a metadata (when a magnet link is not resolved yet). One should not call
torrent_handle::get_torrent_info when torrent doesn't have a metadata.
2014-05-15 01:21:56 +04:00
sledgehammer999
e0ae505bb9
Fix nox build on MAC OSX.
2014-05-13 19:23:58 +03:00
sledgehammer999
5dea64ca16
Merge pull request #1676 from sorokin/fix-open-file
...
fix issue #1674 : AddNewTorrentDialog is shown again and again even if checkbox "dont ask me again" is set
2014-05-12 14:52:47 +03:00
Ivan Sorokin
93bacc62f1
fix issue #1674 : AddNewTorrentDialog is shown again and again even if checkbox "dont ask me again" is set
2014-05-11 19:37:33 +04:00
sledgehammer999
baaf575eee
Fix libtorrent 1.0.0 compilation. Closes #1659
2014-05-10 00:13:20 +03:00
sledgehammer999
9714b2ede9
Fix weird ratio values when torrent was imported or downloaded history was lost due to crash.
2014-05-05 21:30:15 +03:00
sledgehammer999
f99f5f5c7e
Enable system tray in MACOSX (Nick Korotysh).
2014-05-05 21:23:32 +03:00
sledgehammer999
32becf1fca
Fix RSS feed icon. The tmp file gets deleted in the feed destructor. Closes #1639
2014-05-04 15:38:28 +03:00
sledgehammer999
4376e81f78
Fix autoupdater. Send our user-agent to sourceforge.net
...
Conflicts:
src/programupdater.cpp
2014-05-04 15:38:12 +03:00
sledgehammer999
71e5c9e17b
Fix code style.
...
(thanks to glassez)
2014-05-04 15:31:27 +03:00
sledgehammer999
e8c14f3507
Use the new Http classes.
2014-05-04 15:28:56 +03:00
sledgehammer999
6096506bd6
Implement alternatives to QHttpRequestHeader and QHttpResponseHeader.
2014-05-04 15:28:55 +03:00
sledgehammer999
ef3f7d18c9
Fix compilation with Qt5.
2014-05-04 15:28:54 +03:00
Vladimir Golovnev (Glassez)
ba1f4a9b7f
Update QtSingleApplication.
2014-05-02 00:00:05 +03:00
Nick Tiskov
138c3dc3cb
Fix translations bundled with Qt.
2014-05-02 00:00:04 +03:00
Vladimir Golovnev (Glassez)
ce3aac5f9d
Fix functions and macros using to support both Qt4 and Qt5.
2014-05-02 00:00:03 +03:00
alfrix
85cfe464f9
Fix queue sorting order fixes #1120
2014-02-09 21:27:42 -03:00
sledgehammer999
33b0a2b55f
Fix missing percentage signs. Closes #1392 .
2014-02-06 00:49:17 +02:00
sledgehammer999
72ae2cb503
Pretty up last commit.
2014-02-05 21:22:14 +02:00
sledgehammer999
b2544f867c
Merge pull request #1365 from alfrix/master
...
Add button for links in toolbar (fixes #450 )
2014-02-05 21:19:57 +02:00
sledgehammer999
acb32d41fa
Merge pull request #1375 from glassez/win-startup
...
Fix qBittorrent run on Windows startup.
2014-02-05 21:12:23 +02:00
bob23450
6b26adfed2
Fix nox build. Closes #1368
2014-02-05 09:17:27 +01:00
Vladimir Golovnev (Glassez)
64b06c4612
Fix qBittorrent run on Windows startup.
2014-02-03 21:12:47 +04:00
alfrix
494fc54e6f
Add button for links in toolbar ( fixes #450
2014-02-02 16:48:51 -03:00
sledgehammer999
f5cd39cfba
Merge pull request #1328 from glassez/webui-sort
...
Fix WebUI sort by size/speed (part 2)
2014-02-02 10:12:01 -08:00
sledgehammer999
c59793b33f
Correctly restore 'name' column width when loading magnet links in the 'Add new torrent dialog'. Closes #1334 .
2014-02-02 20:05:51 +02:00
sledgehammer999
202006bdd1
Reuse code in AddNewTorrentDialog. #894 .
2014-02-02 20:05:50 +02:00
sledgehammer999
7348b8903c
Correctly resize 'name' column of the content tab. Closes #1360 .
2014-02-02 20:05:14 +02:00
sledgehammer999
a27867ae2b
Bring dialog boxes in the front when qbt doesn't have focus.
...
Code inspired by glassez patch.
2014-02-01 14:02:37 +02:00
Vladimir Golovnev (Glassez)
c3942fb0b3
Fix WebUI sort by ratio for some locales (with comma as decimal point).
2014-01-27 08:44:36 +04:00
Vladimir Golovnev (Glassez)
87d118e87c
Fix WebUI sort by size/speed for some locales (with comma as decimal point).
2014-01-27 08:39:47 +04:00
sledgehammer999
a5a0ca7159
Don't re-announce to trackers when torrent is paused. Closes #1310 .
2014-01-26 16:29:53 +02:00
sledgehammer999
77329a2609
Launch external programs async and don't block. Closes #1252 .
2014-01-26 14:28:58 +02:00
sledgehammer999
bf291dbfb1
Don't show a popup menu when no torrent is selected.
2014-01-26 14:28:57 +02:00
sledgehammer999
0a3dadf3fb
Merge pull request #1325 from Gelmir/stats_percent
...
Fix missing percent sign in stats dialog
2014-01-26 04:05:18 -08:00
sledgehammer999
9ccb4e2781
Add our WM_CLASS in the .desktop file so window managers know how to group our windows.
2014-01-26 13:46:50 +02:00
sledgehammer999
3404d1e05f
Explicitle tell that we don't support freedesktop's startup notify standard. Fixes GNOME issues. Closes #1217 .
2014-01-26 13:45:33 +02:00
sledgehammer999
2f0b869639
Fix overstretched options dialog. Closes #1293 .
2014-01-26 13:29:29 +02:00
sledgehammer999
5afb0a1ab0
Fix windows file association.
2014-01-26 13:09:37 +02:00
Nick Tiskov
ab8ff9f362
Fix missing percent sign in stats dialog
2014-01-26 15:05:09 +04:00
sledgehammer999
aaa723d3ec
Run lupdate.
2014-01-26 02:18:36 +02:00
sledgehammer999
79b3e5ab60
Merge pull request #1324 from Gelmir/rename_amount_columns
...
Use shorter names for amount columns in main UI
2014-01-25 15:48:40 -08:00
Nick Tiskov
1dd8fa3c58
Use shorter names for amount columns in main UI
2014-01-25 23:28:34 +04:00
sledgehammer999
b7f84dabf5
Improvements on the behavior of the program updater( closes #1282 ):
...
1. Check for updates every hour
2. Don't check again for this session if the user chose to ignore the new version
3. Display a message if the user checked for updates via the menu item and there isn't one
4. Remove dead code
2014-01-25 21:03:24 +02:00
sledgehammer999
7428c2c0b1
Fix extratorrents search plugin.
2014-01-25 21:03:23 +02:00
sledgehammer999
8bbdcc78ce
Statistics: handle case where user has gone back to older version.
2014-01-25 21:03:23 +02:00
Vladimir Golovnev (Glassez)
7fce5ab268
Fix sorting by size in WebUI when non-default locale used.
2014-01-25 22:30:22 +04:00
Vladimir Golovnev (Glassez)
1aa70bedb7
Improve HttpConnection::translateDocument().
2014-01-25 22:29:15 +04:00
Nick Tiskov
d0ebcae069
Fix missing separator in QDesktopServices methods
2014-01-23 19:57:47 +04:00
sledgehammer999
b8040e4b4d
Allow 2 decimals when setting the share ratio. Closes #1303 .
2014-01-23 00:25:09 +02:00
sledgehammer999
be097048fd
Fix share ratio text.
2014-01-22 23:43:57 +02:00
Nick Tiskov
5854a2883b
Convert fsutils class to namespace
2014-01-22 20:12:46 +04:00
Nick Tiskov
bd9dcf1247
Hack around QDesktopServices::openUrl to support network shares
2014-01-22 20:12:42 +04:00
Nick Tiskov
6e77d12ac6
Update dialogs
2014-01-22 19:37:32 +04:00
Nick Tiskov
4390530cbe
Update Main UI
2014-01-22 19:37:31 +04:00
Nick Tiskov
ae8356aae5
Update RSS Classes
2014-01-22 19:37:30 +04:00
Nick Tiskov
a8e57d3a7e
Update misc classes
2014-01-22 19:37:30 +04:00
Nick Tiskov
6346716df6
Update SearchEngine classes
...
Guaranteed to work with qt-style separators internally; guaranteed to call native OS environment using native separators
2014-01-22 19:37:29 +04:00
Nick Tiskov
cb7f35d994
Update WebUI classes
...
Guaranteed to show paths with native separators to user
2014-01-22 19:37:28 +04:00
Nick Tiskov
237420546b
Update QBtSession
...
Guaranteed to accept strings with native and qt-style separators; guaranteed to use qt-style separators internally, guaranteed to call libtorrent API with native separators
2014-01-22 19:37:27 +04:00
Nick Tiskov
32b90a7b6d
Update QTorrentHandle
...
Guaranteed to accept strings with both native and qt-style separators; guaranteed to use native separators with libtorrent API
2014-01-22 19:37:26 +04:00
Nick Tiskov
b706210349
Update options UI
...
Guaranteed to work with strings with qt-style separators internally, shows string with native separators to the user
2014-01-22 19:37:26 +04:00
Nick Tiskov
48250c7b76
Update Preferences class
...
Preferences class setters are guaranteed to accept string with both native and qt-style separators, getters are guaranteed to return string with qt-style separators
2014-01-22 19:37:25 +04:00
Nick Tiskov
1334386a1b
Rework fsutils class to only use Qt-style separators
...
fsutils methods are guaranteed to accept strings with both native and qt-style separators and return strings with qt-style separators where appropriate
2014-01-22 19:37:24 +04:00
sledgehammer999
3749a30af2
Improvements on accurateDoubleToString().
2014-01-21 17:40:52 +02:00
sledgehammer999
bb7c2dd9c6
Improvements on statistics saving.
2014-01-21 17:40:30 +02:00
sledgehammer999
0d139234fe
Fix condition checking in statistics saving.
2014-01-21 16:57:20 +02:00
sledgehammer999
441d1d08ba
Convert more accurately decimal numbers to text.
2014-01-21 02:12:27 +02:00
sledgehammer999
4d3672f894
Save statistics every 15min and only if there was new traffic. Fixes #1288 and partially #1272 .
2014-01-21 02:12:27 +02:00
sledgehammer999
3ee5c89856
Reposition statistics menu item.
2014-01-21 02:12:26 +02:00
BTDigg research team
99a5695fb7
Fix issue with SSL under Win32
2014-01-19 21:03:53 +01:00
sledgehammer999
3159012dbb
Merge pull request #1286 from alderz/fix_peer_sorting
...
Fix peers and seeds sorting in transfer list.
2014-01-18 09:57:56 -08:00
sledgehammer999
e30dee6319
Fix 'preview file' regression. Closes #1285 .
2014-01-18 15:03:50 +02:00
Angel Alonso
aa9001522c
Fix peers and seeds sorting in transfer list.
...
When active peers (or seeds) of two torrents are the same we sort by total peers
(or seeds).
2014-01-18 11:53:44 +01:00
sledgehammer999
ceba1dc734
Don't count paused torrents for the autoshutdown. Closes #1280 .
2014-01-16 16:17:10 +02:00
Sébastien Lavoie
e7a95f310e
Issue #1251 - Added basic retina support
2014-01-12 08:06:41 -05:00
Nick Tiskov
150e9bb452
Fix rss settings corruption when checking regexp and going to other rule.
2014-01-11 23:25:41 +04:00
sledgehammer999
1b8083bbc6
Correctly remove isohunt engine.
2014-01-11 18:31:56 +02:00
sledgehammer999
5bf7106e5c
Merge pull request #1258 from Gelmir/selective_reannounce
...
Support selective reannounce with libtorrent 1.0
2014-01-11 08:20:15 -08:00
sledgehammer999
eef45adb44
Merge pull request #1259 from Gelmir/proto
...
Show actual protocol for listen_*_alert
2014-01-11 08:19:57 -08:00
sledgehammer999
7db279998a
Remove isohunt search engine.
2014-01-11 18:13:32 +02:00
sledgehammer999
a479aaa28e
Fix piratebay search engine.
2014-01-11 18:11:08 +02:00
Nick Tiskov
f319678457
Support selective reannounce with libtorrent 1.0
2014-01-08 15:25:53 +04:00
Nick Tiskov
d9ee9c7b0f
Show actual protocol for listen_succeeded_alert and listen_failed_alert log messages.
...
Delete protocol mentioning from setListeningPort
2014-01-08 14:06:26 +04:00
sledgehammer999
0ce28eb28f
Merge pull request #1250 from botanegg/cppcheck
...
Corrections from running cppcheck v2.
2014-01-05 16:22:18 -08:00
Konstantin Goncharik
f29c04d935
In preferences.h now argument is const references
2014-01-05 20:06:29 +08:00
Konstantin Goncharik
a77a6b5a8b
In statsdialog.cpp fix initialization iEnd
2014-01-05 19:41:58 +08:00
sledgehammer999
ab89edb589
Merge pull request #1238 from botanegg/cppcheck
...
Corrections from running cppcheck.
2014-01-04 15:07:48 -08:00
sledgehammer999
959cbb9308
Fix notifications with xfce4-notifyd.
2014-01-04 19:40:05 +02:00
sledgehammer999
f898443e78
Force write settings to disk before exiting.
2014-01-04 19:24:48 +02:00
Konstantin Goncharik
8a882e7323
In smtp.cpp fix 'ct' reassign.
2014-01-04 01:46:11 +08:00
Konstantin Goncharik
edd7f8e5f5
In rssdownloadrule.{cpp,h} 'RssDownloadRule::operator==' made const.
2014-01-04 01:29:31 +08:00
Konstantin Goncharik
a2b3ad7958
In qbtsession.cpp exception made caught by reference
2014-01-04 01:24:32 +08:00
Konstantin Goncharik
bc22447a6a
In qtorrenthandle.cpp exception made caught by reference
2014-01-04 01:19:30 +08:00
sledgehammer999
423d60cced
Delete temporary after they aren't needed. Closes #1188 .
2014-01-02 22:43:17 +02:00
sledgehammer999
ecfd06cfe9
Ensure that the options window will always be placed onscreen. Closes #1226 .
2014-01-02 21:09:45 +02:00
sledgehammer999
ed54f0f7c3
Ensure that at least one column in the tranferlist is always visible. Closes #1165 .
2014-01-02 20:49:35 +02:00
sledgehammer999
fce950b788
Allow to resize the columns in Add New Torrent dialog. Closes #1207 #676
2014-01-02 19:44:23 +02:00
sledgehammer999
5512576022
Preview now correctly uses the selected file. Closes #1222 #1182 .
2014-01-02 18:29:05 +02:00
arvidn
c1c824bcf7
don't use deprecated libtorrent functions
2014-01-01 10:04:22 -08:00
arvidn
3b4f9d2eeb
fix libtorrent 1.0 compatibility
2013-12-31 17:00:14 -08:00
sledgehammer999
e380a17c82
Do cleanup work in an earlier stage to ensure correct conf saving.
2013-12-31 00:44:04 +02:00
sledgehammer999
1648cdc4bc
Sort labels in 'Add new torrent' dialog. Closes #1150 #411 .
2013-12-29 18:47:24 +02:00
sledgehammer999
86b8f3190a
Merge pull request #1201 from qwerty12/master
...
Make sleep and shutdown functions work on systemd's logind
2013-12-26 08:09:51 -08:00
sledgehammer999
e6b20d461e
Merge pull request #1199 from Gelmir/stats_new
...
Minor improvements to stats gathering/dialog
2013-12-26 08:08:30 -08:00
Faheem Pervez
22c8f600df
Make sleep and shutdown functions work on systemd's logind
2013-12-23 11:41:07 +00:00
sledgehammer999
e6de7d2d3a
Fix previous commit.
2013-12-22 23:46:03 +02:00
sledgehammer999
88b5550540
Second attempt at fixing saving settings on shutdown.
2013-12-22 23:11:53 +02:00
Nick Tiskov
b4e9a9bbc0
1. Use a better icon for stats dialog.
...
2. Use more reliable session_status.total_download/upload for statistics
2013-12-23 00:01:21 +04:00
sledgehammer999
c87856d846
Lock toolbar in place. Closes #1144 .
2013-11-30 14:15:57 +02:00
sledgehammer999
2b7c3a1547
Fix resizing grip location. Closes #1146 .
2013-11-30 14:05:18 +02:00
sledgehammer999
3f434570ea
Run lupdate.
2013-11-30 13:19:25 +02:00
Nick Tiskov
5d6e71c9ca
Fix 'peer from PEX' message
2013-11-24 18:21:31 +04:00
sledgehammer999
4a84b6a911
Fix linux compilation.
2013-11-23 15:33:01 +02:00
sledgehammer999
b0e8c1139f
Merge pull request #1109 from doadin/patch-1
...
Fix Typo
2013-11-23 05:07:29 -08:00
sledgehammer999
d7da120063
Run lupdate.
2013-11-23 15:05:37 +02:00
sledgehammer999
cc92f172e3
Check for program updates every 15min and allow the user to manually check for updates through the help menu.
2013-11-23 14:58:03 +02:00
sledgehammer999
e637ff188c
Output a more generic message when blocking IPs and don't use italics in the log.
2013-11-23 13:30:50 +02:00
sledgehammer999
35e9253e9c
Run lupdate.
2013-11-21 18:37:53 +02:00
sledgehammer999
7345a64696
Add tooltip for the peers' flags. Closes #1068 .
2013-11-21 18:13:21 +02:00
sledgehammer999
b1e682ef41
Improve the message of the deletion dialog. Closes #1073 .
2013-11-21 18:13:19 +02:00
sledgehammer999
475aa6aad8
Merge pull request #1105 from Gelmir/stats
...
Add statistics dialog
2013-11-21 06:38:07 -08:00
sledgehammer999
8d04b04aae
Revert "Don't prefer TCP connections over uTP."
...
This reverts commit a052963775
.
2013-11-20 00:30:00 +02:00
doadin
f7dc57ee97
Fix Typo
2013-11-18 16:38:43 -05:00
sledgehammer999
3d9f3eb1b3
Correctly update tracker tier number in the trackers tab. Closes #1075 .
2013-11-18 01:32:08 +02:00
sledgehammer999
683aca7fdf
Fix WebUI link to 'Anonymous mode' explanation. Closes #1093 .
2013-11-17 21:17:48 +02:00
Nick Tiskov
f12b64d36a
Add dialog to show statistics
2013-11-17 02:16:25 +04:00
Nick Tiskov
687e7a1343
Collect and save alltime UL/DL samples
2013-11-17 02:05:44 +04:00
sledgehammer999
144dd5c2a8
Correctly detect if the browser supports gzip compression.
2013-11-16 21:48:20 +02:00
sledgehammer999
35da156ad2
WebUI: Don't gzip too small payloads.
2013-11-16 20:24:56 +02:00
sledgehammer999
f09328c13c
Fix inhibit system functionality. Closes #766 .
2013-11-16 19:29:50 +02:00
Artem S. Tashkinov
ea4ab62531
Always show a peer IP address as a tool tip
...
Helps to see a peer IP address when reverse name resolution is enabled.
2013-11-14 18:04:36 +05:00
Artem S. Tashkinov
8b874f5538
Remove hardcoded Lucida Grande and decrease a font size
2013-11-14 17:24:30 +05:00
sledgehammer999
d1921933f4
Merge pull request #1091 from ZachThibeau/master
...
added fontfix for osx. Closes #1017
2013-11-11 13:38:45 -08:00
Zach Thibeau
2a7aa98afd
added fontfix for osx
2013-11-11 03:38:20 -05:00
sledgehammer999
1c2b54a935
Merge pull request #1060 from alderz/master
...
Add a keyboard shortcut to "Add link to torrent" and fix some png sRGB profiles.
2013-11-10 02:58:20 -08:00
sledgehammer999
44edd75c1e
Merge pull request #1083 from ZachThibeau/master
...
Updated search plugin's URL
2013-11-10 02:57:03 -08:00
Zach Thibeau
dac46e02c3
Updated search plugin's URL
2013-11-09 23:39:29 -05:00
sledgehammer999
3bc1d4afd0
Fix indentation in lineedit code.
2013-11-10 04:11:01 +02:00
sledgehammer999
60a1937bf9
Expand folders when filtering files. Closes #1076 .
2013-11-10 04:10:38 +02:00
sledgehammer999
68cc35e3fd
Hide empty folders after filtering. Closes #74 .
2013-11-10 03:30:04 +02:00
sledgehammer999
b909dd41c5
Small optimization of WebUI responses when there isn't a data payload.
2013-11-09 20:03:54 +02:00
sledgehammer999
c284fd5412
Case insensitive sort in Peers list. Closes #1066 .
2013-11-09 20:03:33 +02:00
sledgehammer999
51a9a9aabb
Make all columns and headers use the same text alignment in the transferlist.
2013-11-09 19:39:13 +02:00
sledgehammer999
6bfdf80a4d
Sync translations from Transifex.
2013-11-05 23:51:18 +02:00
sledgehammer999
4003d7f951
Fix compilation with qt < 4.8.0. Closes #1043 .
2013-11-05 23:06:20 +02:00
sledgehammer999
ade66629b1
Fix WebUI gzip compression. Closes #1037 .
2013-11-05 22:57:33 +02:00
Angel Alonso
7c897f70e2
Strip some png to fix incorrect sRGB profiles.
...
libpng complained about incorrent sRGB profiles in some png's.
"libpng: iCCP: known incorrect sRGB profile".
2013-11-01 20:23:02 +01:00
Angel Alonso
139434b40c
Add a key shortcut to "Add link to torrent..."
...
"Ctrl-Shift-O" will open the "Add link to torrent..." window.
2013-11-01 19:47:05 +01:00
sledgehammer999
ae63830b7d
Update Translator's info.
2013-10-27 16:07:02 +02:00
sledgehammer999
4dc800cf0c
Increase the .torrent size limit when a link to torrent is provided. Closes #879 .
2013-10-27 15:33:55 +02:00
sledgehammer999
ecb6dbabda
Run lupdate.
2013-10-24 23:27:27 +03:00
sledgehammer999
660e0650ce
Allow to clear the UI lock password. Closes #973 .
2013-10-24 23:23:56 +03:00
sledgehammer999
12082a14b7
Run lupdate [skip ci]
2013-10-24 01:58:39 +03:00
sledgehammer999
0da5c8be3a
Fix typo again.
2013-10-24 01:57:57 +03:00
sledgehammer999
0070c66339
Run lupdate.
2013-10-24 00:27:13 +03:00
sledgehammer999
53e0526a1e
Windows: Don't remove file associations if they aren't our own.
2013-10-24 00:15:22 +03:00
sledgehammer999
27d72bd9bf
Fix 'append label to save path' with magnet links.
2013-10-23 23:58:42 +03:00
sledgehammer999
fc3da963d2
Revert "Remove "Force reannounce" action". Closes #958 .
2013-10-23 23:58:41 +03:00
sledgehammer999
cff6db201f
Run lupdate.
2013-10-23 22:25:15 +03:00
sledgehammer999
b4dca951b2
Drop libtorrent 0.15.x support.
2013-10-23 22:19:58 +03:00
sledgehammer999
243abaf524
Improve comment in gCompress().
2013-10-23 22:19:57 +03:00
sledgehammer999
870aba8439
Document better some translatable strings.
2013-10-23 22:19:56 +03:00
sledgehammer999
585954c988
Fix typo.
2013-10-23 22:19:55 +03:00
sledgehammer999
1ca1c4be7e
Run lupdate.
2013-10-22 22:52:24 +03:00
sledgehammer999
1c128c65f0
Don't use deprecated function when adding magnets.
2013-10-22 22:29:25 +03:00
sledgehammer999
8f955fe110
Distinguish more torrent states.
2013-10-22 21:34:27 +03:00
sledgehammer999
bd9c231a0b
Enable gzip compression in the webui.
2013-10-21 00:04:32 +03:00
sledgehammer999
ccc46a0a77
Added instructions for managing translations with Transifex.
2013-10-20 20:29:37 +03:00
sledgehammer999
ba464ab0f5
Run lupdate.
2013-10-20 20:29:36 +03:00
sledgehammer999
2b9f79fafe
Expose new translations and improve language code.
2013-10-20 20:29:32 +03:00
sledgehammer999
88c64ccf0a
New translation: English(United Kingdom).
2013-10-20 20:29:31 +03:00
sledgehammer999
3527fc338b
New translation: English(Australia).
2013-10-20 20:29:31 +03:00
sledgehammer999
751980e87c
Synced .desktop file translation from Transifex.
2013-10-20 20:29:30 +03:00
sledgehammer999
71fa34da13
Sync translations from Transifex.
2013-10-20 20:29:29 +03:00
sledgehammer999
e50d5611f8
Merge pull request #1007 from Gelmir/fix_showrss
...
Fix RSS items not being marked read when the item is a magnet link.
2013-10-20 08:22:00 -07:00
sledgehammer999
82cd484fad
Merge pull request #1008 from Gelmir/null-ref
...
Fix possible null-pointer dereference.
2013-10-20 08:21:14 -07:00
sledgehammer999
18b9de831f
Turn off the scheduler when the user manually changes the rate limits mode.
2013-10-20 14:18:47 +03:00
sledgehammer999
d0893bc1c7
Allow the scheduler to have a start time that's after the end time. Closes #980 .
2013-10-20 13:46:55 +03:00
sledgehammer999
c9a8430463
Make the scheduler timeout every 1.5s.
2013-10-20 13:28:35 +03:00
Nick Tiskov
abde611391
Fix possible null-pointer dereference.
2013-10-20 01:33:22 +04:00
Nick Tiskov
1341b7ea78
Fix RSS items not being marked read when the item is a magnet link.
2013-10-20 00:59:36 +04:00
sledgehammer999
ac622077db
Merge pull request #983 from Gelmir/sched_fixup
...
Remember Alt bandwidth on shutdown.
2013-10-19 10:58:27 -07:00
Nick Tiskov
382155bc26
Prepare bandwidth scheduler code
2013-10-19 21:35:26 +04:00
sledgehammer999
af11343945
Partial revert of e7c27c9b8b
. Single file preview works again.
2013-10-15 00:39:36 +03:00
sledgehammer999
5bf9d7d69a
Revert "Remove obsolete IP_HIDDEN column from peer list." Closes #970 .
...
This reverts commit c8d51e91f4
.
2013-10-14 14:57:51 +03:00
sledgehammer999
ff789fc493
Show external IP in the log. Closes #968 .
2013-10-13 23:19:15 +03:00
sledgehammer999
97fe948f6c
Expose all available translation in the WebUI. Closes #976 .
2013-10-13 22:17:11 +03:00
sledgehammer999
4ad68ac800
Bump to 3.2.0alpha
2013-10-12 17:57:32 +03:00
sledgehammer999
a23198324f
Updated Translators' info.
2013-10-12 16:52:42 +03:00
sledgehammer999
7712ca3efd
Add the new translation to the build.
2013-10-12 16:52:42 +03:00
sledgehammer999
389c5fb114
New translation: Vietnamese.
2013-10-12 15:20:22 +03:00
sledgehammer999
a360e222e8
Updated translations from Transifex.
2013-10-12 15:20:20 +03:00
sledgehammer999
87e9adb666
Update translations for .desktop file.
2013-10-12 15:20:18 +03:00
sledgehammer999
e08ae6b668
Fix magnet metadata loading. Update the queue and save_path correctly in all use cases.
2013-10-09 23:34:00 +03:00
sledgehammer999
c6bc4d2cd2
Run lupdate.
2013-10-06 18:45:20 +03:00
sledgehammer999
08cd1c9b0c
Option to disallow bringing the torrent dialog to the front.
2013-10-06 18:42:56 +03:00
sledgehammer999
3e0ea7b490
Run lupdate.
2013-10-06 15:17:46 +03:00
sledgehammer999
672cd5a999
Merge pull request #955 from Gelmir/remove_obsolete_tr
...
Remove obsolete translation string (not used anywhere)
2013-10-06 04:36:45 -07:00
sledgehammer999
14310f9b05
Improve loading of magnet metadata in the background.
...
Conflicts:
src/qtlibtorrent/qbtsession.cpp
2013-10-06 13:49:23 +03:00
Nick Tiskov
d0a4b2da79
Remove obsolete translation string (not used anywhere)
2013-10-04 17:55:39 +04:00
sledgehammer999
1e802f2090
Really fix compilation with 0.15.x.
2013-10-01 22:57:51 +03:00
sledgehammer999
c311080d8d
Fix compilation with libtorrent 0.15.x.
2013-10-01 18:52:25 +03:00
sledgehammer999
6a45e9dbd7
Don't save resume data when torrent has an error. Prevents removing possibly useful .fastresume file and writing garbage.
2013-10-01 01:57:35 +03:00
sledgehammer999
bbf47b0907
Optimize torrentperistentdata parameters and add utility funtions for previous commit.
2013-10-01 01:57:35 +03:00
sledgehammer999
a1a5fb065e
Backup/recover torrent persistent data into each individual .fastresume file. This should mitigate the problem of users losing their torrents' settings/savepath/label after qbt wasn't shutdown cleanly.
2013-10-01 01:57:34 +03:00
sledgehammer999
4ac19e2b27
Fix encoding and don't let the OS automatically choose a port.
2013-09-20 21:23:26 +03:00
sledgehammer999
08138307da
Refactor code for reporting listen failure/success.
2013-09-19 23:43:21 +03:00
sledgehammer999
eeb43d6bfd
Increase the log size to accomodate for users with many torrents (>100).
2013-09-19 23:41:04 +03:00
sledgehammer999
4cd134a35e
Remove unnecessary check.
2013-09-19 00:15:30 +03:00
Vladimir Golovnev (Glassez)
dbf8675de3
Some improvements of requesting pid of running instance code.
2013-09-18 19:55:55 +04:00
Vladimir Golovnev (Glassez)
b78ea79d30
Bringing the AddNewTorrentDialog to the front.
2013-09-17 16:27:38 +04:00
sledgehammer999
89b82778e6
Add interface to request the pid of the running instance.
2013-09-17 16:27:37 +04:00
sledgehammer999
da561ccd38
Fix gcc warning [-Wreorder].
2013-09-14 16:11:04 +03:00
sledgehammer999
11ebb9f0f7
Run lupdate.
2013-09-14 15:26:16 +03:00
sledgehammer999
e7c27c9b8b
Polish Preview window. Closes #908 .
2013-09-14 15:26:15 +03:00
sledgehammer999
0f298397b3
Simplify various if-else and QString::number.
2013-09-14 15:16:50 +03:00
sledgehammer999
70215bd3ff
Fixed rounding bugs with floating numbers v2.
2013-09-14 15:15:30 +03:00
sledgehammer999
fcebe1e485
Improve the scheduler ui settings.
2013-09-14 12:59:29 +03:00
sledgehammer999
ae8c6ecf1c
Run lupdate.
2013-09-12 15:35:01 +03:00
sledgehammer999
62cc91efc4
Better description in download from url dialog.
2013-09-12 15:31:30 +03:00
sledgehammer999
774d749eef
Redesigned scheduler code logic. Closes #903 .
2013-09-11 18:54:47 +03:00
sledgehammer999
2fc53613cd
Fix compilation error.
2013-09-11 01:11:04 +03:00
sledgehammer999
135165d856
Run lupdate.
2013-09-11 00:38:33 +03:00
sledgehammer999
0ea8fd6996
Allow to enter only info-hashes in the download dialog.
2013-09-11 00:28:19 +03:00
sledgehammer999
f8fdd58e20
Visually close downloadrurl dialog before opening addnewtorrent dialog.
2013-09-10 23:23:45 +03:00
sledgehammer999
6e9ed4ead7
Update naturalSorting in the Peers tab.
2013-09-10 18:34:15 +03:00
sledgehammer999
d09b0d5f72
Fixed rounding bugs with floating numbers.
2013-09-10 18:16:01 +03:00
sledgehammer999
251d5b1921
Fix string typo and rerun lupdate.
2013-09-02 14:19:00 +03:00
sledgehammer999
4f8ccd0dfc
Visually show that the private flag are respected and that PEX/DHT/LSD is disabled. Closes #880 .
2013-09-01 22:29:53 +03:00
sledgehammer999
04430a4cdd
Run lupdate.
2013-09-01 20:46:35 +03:00
sledgehammer999
c7aa2cb684
Display a message when a link to a search plugin is invalid. Closes #892 .
2013-09-01 20:42:44 +03:00
sledgehammer999
65012bc517
Run lupdate.
2013-09-01 17:48:29 +03:00
sledgehammer999
0b0e137175
Mark strings as translatable. Closes #893 .
2013-09-01 17:47:06 +03:00
sledgehammer999
6bea659d50
Fix ETA calculation when some files are downloaded and marked afterwards as 'do not download'.
2013-09-01 17:01:11 +03:00
sledgehammer999
37f821556e
Merge trackers when torrent already exists instead of showing an AddNewTorrent dialog.
2013-09-01 17:01:02 +03:00
sledgehammer999
532bec5d87
Fix typo in comment.
2013-09-01 17:00:52 +03:00
sledgehammer999
74a1cce46c
Simplify busy wait.
2013-09-01 17:00:22 +03:00
sledgehammer999
6cdbf6f869
Simplify checks.
2013-09-01 17:00:12 +03:00
sledgehammer999
51cde405f9
Always override AddTorrentsInPause setting when downloading in the background.
2013-09-01 16:59:55 +03:00
sledgehammer999
17c122e5ad
Don't show the progress bar in AddNewTorrent dialog when not necessary.
2013-09-01 16:59:23 +03:00
Nick Tiskov
c8cc727aea
Add progress indicator for metadata retrieval
2013-08-28 19:14:52 +04:00
Nick Tiskov
8ca7603f38
Load magnet metadata inside AddNewTorrentDialog
2013-08-28 19:08:22 +04:00
Nick Tiskov
a1298fbf58
Add option to ignore global share ratio limits for torrents created in qBt.
2013-08-07 22:34:57 +04:00
sledgehammer999
f276ad568e
Fixed naturalSort. When a single digit number was followed by text+numbers, the string wouldn't sort correctly.
2013-08-03 19:06:18 +03:00
sledgehammer999
a1f82db5d5
Re-updated .ts files.
2013-08-03 19:06:15 +03:00
sledgehammer999
9bd8b90dbe
Merge pull request #833 from Gelmir/tr
...
Fix translation monstrosity in about dialog
2013-08-03 08:49:12 -07:00
sledgehammer999
ed49c3ad31
Update .ts files and remove obsolete strings.
2013-08-03 16:23:39 +03:00
sledgehammer999
3c813d456c
Updated Danish translation from Transifex.
2013-08-03 16:15:31 +03:00
sledgehammer999
881c2babe5
Updated Romanian translation from Transifex.
2013-08-03 16:14:57 +03:00
sledgehammer999
2a8b530b46
Updated Korean translation from Transifex.
2013-08-03 16:14:21 +03:00
sledgehammer999
1b2de035b4
Updated Finnish translation from Transifex.
2013-08-03 16:13:45 +03:00
sledgehammer999
2ea427bd24
Updated German translation from Transifex.
2013-08-03 16:13:08 +03:00
sledgehammer999
02fab15e7b
Updated Greek translation from Transifex.
2013-08-03 16:12:23 +03:00
sledgehammer999
3b43d48836
Updated Catalan translation from Transifex.
2013-08-03 16:11:45 +03:00
sledgehammer999
94cfba6f23
Updated Swedish translation from Transifex.
2013-08-03 16:10:50 +03:00
sledgehammer999
06cd53ab92
Updated Serbian translation from Transifex.
2013-08-03 16:10:19 +03:00
sledgehammer999
68602cb375
Updated Georgian translation from Transifex.
2013-08-03 16:09:42 +03:00
sledgehammer999
ecaa81da0f
Updated Polish translation from Transifex.
2013-08-03 16:08:25 +03:00
sledgehammer999
d3e744d0fb
Updated Chinese translation from Transifex.
2013-08-03 16:07:50 +03:00
sledgehammer999
d57381a524
Updated Turkish translation from Transifex.
2013-08-03 16:07:11 +03:00
sledgehammer999
b033beec60
Updated Lithuanian translation from Transifex.
2013-08-03 16:06:36 +03:00
sledgehammer999
d05761f1f0
Updated Hebrew translation from Transifex.
2013-08-03 16:06:03 +03:00
sledgehammer999
6ed0d4bc1c
Updated French translation from Transifex.
2013-08-03 16:05:20 +03:00
sledgehammer999
75ff773068
Updated Ukrainian translation from Transifex.
2013-08-03 16:04:28 +03:00
sledgehammer999
caf1a050c8
Updated Dutch translation from Transifex.
2013-08-03 16:03:43 +03:00
sledgehammer999
4cd3c144dc
Updated Chinese(Taiwan) translation from Transifex.
2013-08-03 16:02:24 +03:00
sledgehammer999
4d51cc6c0f
Updated Bulgarian translation from Transifex.
2013-08-03 16:01:38 +03:00
sledgehammer999
f3e90265fd
Updated Armenian translation from Transifex.
2013-08-03 16:00:50 +03:00
sledgehammer999
d97c1d2b6b
Updated Hungarian translation from Transifex.
2013-08-03 15:59:52 +03:00
sledgehammer999
ec4490a7cb
Updated Spanish translation from Transifex.
2013-08-03 15:59:10 +03:00
sledgehammer999
d03261480d
Updated Portuguese translation from Transifex.
2013-08-03 15:58:08 +03:00
sledgehammer999
b610ab4825
Updated Croatian translation from Transifex.
2013-08-03 15:57:19 +03:00
sledgehammer999
4662bcf112
Updated Belarusian translation from Transifex.
2013-08-03 15:56:05 +03:00
sledgehammer999
890f9a7e19
Updated Slovak translation from Transifex.
2013-08-03 15:55:14 +03:00
sledgehammer999
7f713cbd8c
Updated Russian translation from Transifex.
2013-08-03 15:54:34 +03:00
sledgehammer999
0841e91ac7
Updated Portuguese(Brazil) translation from Transifex.
2013-08-03 15:53:20 +03:00
sledgehammer999
73d1abd6f0
Updated Norwegian translation from Transifex.
2013-08-03 15:52:23 +03:00
sledgehammer999
f6f69ddf63
Updated Japanese translation from Transifex.
2013-08-03 15:50:55 +03:00
sledgehammer999
abe3cf9323
Updated Italian translation from Transifex.
2013-08-03 15:50:20 +03:00
sledgehammer999
213fd9ffb7
Updated Galician translation from Transifex.
2013-08-03 15:48:57 +03:00
sledgehammer999
e67156b403
Updated Czech translation from Transifex.
2013-08-03 15:46:35 +03:00
sledgehammer999
5ccf3adb4d
Updated Basque translation from Transifex.
2013-08-03 15:45:18 +03:00
sledgehammer999
115855a177
Updated Arabic translation from Transifex.
2013-08-03 15:42:19 +03:00
sledgehammer999
a052963775
Don't prefer TCP connections over uTP.
2013-08-03 15:22:20 +03:00
Nick Tiskov
84b4e7b65e
Fix translation monstrosity
2013-08-01 13:24:35 +04:00
sledgehammer999
c96eff2c15
Updated NSIS script.
2013-07-29 20:31:15 +03:00
sledgehammer999
7d99b21c20
Updated norwegian translation by tomaso.
2013-07-28 20:19:51 +03:00
sledgehammer999
53c1846757
Complete utorrent-compatible flags support.
2013-07-28 18:19:06 +03:00
Nick Tiskov
ed0acede20
Use Unicode for libtorrent alert messages.
2013-07-28 17:09:07 +04:00
sledgehammer999
14808d2bef
Merge pull request #794 from Gelmir/rss_feed_del_multi
...
Show delete action when multiple feeds are selected
2013-07-27 12:12:08 -07:00
sledgehammer999
4cd4ad457b
Merge pull request #786 from Gelmir/inputDlg_autoexpand
...
Resize input dialogs to fit contents
2013-07-27 12:10:43 -07:00
Nick Tiskov
bb6d7ba2ff
Show delete action when multiple feeds are selected
2013-07-27 23:01:14 +04:00
Nick Tiskov
cc04ebd45f
Try to center AutoExpandableDialog on the same screen as main window
...
If main window is unavailable use the screen, where the mouse cursor is.
2013-07-27 22:57:33 +04:00
sledgehammer999
0e72583c1f
Merge pull request #793 from Gelmir/f2_edit
...
Enable edit/rename via F2 or double click in various places
2013-07-27 11:48:31 -07:00
sledgehammer999
7d4a3e007e
Merge pull request #711 from constantined/unwanted-fix
...
Make possible to move file to .unwanted directory after downloading
2013-07-27 09:24:26 -07:00
sledgehammer999
6c89df7206
Remove unnecessary code from qbtsession.
2013-07-27 18:07:57 +03:00
sledgehammer999
dd78744695
Updated spanish translation by alfrix.
2013-07-27 18:07:56 +03:00
meequz
8664a4d7ba
Update Belarusian translation on master
2013-07-27 15:21:22 +03:00
Nick Tiskov
de3108e1e5
Move textBox geometry updates into showEvent:
...
1. Makes QFontMetrics more accurate (~50%) for custom DPI systems
2. Makes it possible to have fixed dialog size yet again (like in old dialog box) and still allow to autoexpand the textBox
2013-07-27 14:14:01 +04:00
Nick Tiskov
fd8a2e05a4
Use AutoExpandableDialog instead of QInputDialog wherever possible
2013-07-27 14:14:00 +04:00
Nick Tiskov
e028fa9be0
Add auto resizable input dialog class
2013-07-27 14:14:00 +04:00
Nick Tiskov
42e81b9d19
Support edit/delete/double click hotkeys in rss feed list and rule list.
2013-07-27 14:13:38 +04:00
Nick Tiskov
107906928a
Enable delete hotkey in web seed and tracker list.
...
Make delete hotkey in transfer list non-global.
2013-07-27 14:13:37 +04:00
Nick Tiskov
7adf012f9c
Enable edit/rename via F2 or double click in various places
2013-07-27 14:13:37 +04:00
sledgehammer999
82171f5a08
Update translations.
2013-07-27 01:34:54 +03:00
sledgehammer999
7a16146f6f
Convert misc class to a namespace instead.
2013-07-27 01:34:52 +03:00
sledgehammer999
19a5fc03aa
Merge pull request #807 from kraleksandr/master
...
Some corrections for RU translation
2013-07-26 12:22:06 -07:00
Mikhail Varantsou
e192fd35c4
Updated Belarusian translation
2013-07-26 15:33:20 +03:00
sledgehammer999
235bb7c3a4
Use system language as default language. Closes #780 .
2013-07-26 02:10:10 +03:00
kraleksandr
fbd97aea3f
Some corrections for RU translation
2013-07-25 23:39:55 +04:00
Nick Tiskov
aa327fb2df
Fix kickass torrents search plugin
2013-07-23 22:23:45 +04:00
sledgehammer999
080377b662
Respect UI lock when clicking on tray notification. Closes #784 .
2013-07-22 01:46:10 +03:00
sledgehammer999
798bd2388b
Allow more fine tuning of uploads. Closes #684 .
2013-07-22 01:41:01 +03:00
sledgehammer999
102b2dc738
Fix text size problem on Windows with custom DPI. ( closes #758 )
...
On Windows FontMetrics seem to be broken when custom DPI is set by the user.
2013-07-21 23:03:14 +03:00
sledgehammer999
522d68ab0b
Sort invalid dates regardless of sorting order.
2013-07-21 22:13:53 +03:00
dartraiden
47291ea7e7
russian translation: typos
2013-07-19 18:52:13 +04:00
Nick Tiskov
b6c59fd70b
Do not mark articles read if download has failed
...
This change includes: always try to download unread articles matching ruleset already present in list (aka redownload failed items)
2013-07-18 00:21:20 +04:00
sledgehammer999
050aadd3fa
Update NSIS croatian translation by delakroa.
2013-07-15 02:45:53 +03:00
sledgehammer999
05fc956e61
Updated NSIS spanish translation by alfrix.
2013-07-14 14:57:22 +03:00
sledgehammer999
323de569df
Sort invalid dates always at the bottom. Closes #106 and #735 .
2013-07-14 14:54:29 +03:00
sledgehammer999
216778be64
Updated NSIS portuguesBR translation by marinho.
2013-07-14 13:51:30 +03:00
sledgehammer999
25f8740751
Updated portuguese-BR translation by marinho.
2013-07-13 00:19:53 +03:00
sledgehammer999
0cfa3ba06d
Merge pull request #765 from Gelmir/no_newline_for_rename
...
Forbid newlines in rename torrent dialog.
2013-07-11 14:44:51 -07:00
sledgehammer999
8711722257
Updated Czech translation by vilim.
2013-07-12 00:02:53 +03:00
sledgehammer999
bf59997bac
Updated NSIS Czech translation by vilim.
2013-07-12 00:02:09 +03:00
sledgehammer999
a36c52ea44
Fix NSIS for included qt translations. Closes #762 .
2013-07-11 23:59:26 +03:00
Nick Tiskov
c6329f6327
Forbid newlines in rename torrent dialog.
2013-07-11 14:16:13 +04:00
sledgehammer999
f261c18d73
Merge pull request #755 from Gelmir/stacktrace_gh_md
...
Wrap stacktrace output in GitHub MarkDown code tags.
2013-07-10 12:07:59 -07:00
sledgehammer999
e604d78c3c
Update copyright info for MAC bundle.
2013-07-09 22:55:51 +03:00
sledgehammer999
64a26e596e
Update NSIS scripts.
2013-07-09 21:00:11 +03:00
sledgehammer999
af997c5802
Updated Qt translations.
2013-07-09 20:56:41 +03:00
sledgehammer999
f6e4ff1ab9
Use naturalSort in search.
2013-07-09 20:37:14 +03:00
sledgehammer999
09abc9d8b7
Use naturalSort in TorrentContentFilterModel.
2013-07-09 20:13:58 +03:00
sledgehammer999
18edf7a20c
Minor change in lessThan signature.
2013-07-09 20:13:57 +03:00
sledgehammer999
7f858dfef5
Updated NSIS japanese translation by hasimoto.
2013-07-09 14:08:03 +03:00
Nick Tiskov
625cebcaad
Wrap stacktrace output in GitHub MarkDown code tags.
2013-07-09 14:50:15 +04:00
sledgehammer999
b00950aa7a
Merge pull request #749 from Gelmir/transferlistsort
...
Use number-aware sort in transfer list
2013-07-08 08:08:41 -07:00
sledgehammer999
267f30414d
Fix compilation under gcc.
2013-07-08 18:04:53 +03:00
Nick Tiskov
89e3500a8e
Move number-aware comparison logic into misc class.
2013-07-08 18:50:53 +04:00
Nick Tiskov
2fa0f86df4
Use number-aware sort in transfer list
2013-07-08 18:03:19 +04:00
sledgehammer999
ea0d10ebc0
Merge pull request #753 from devastatorius/patch-1
...
Update lithuanian.nsi
2013-07-08 04:29:54 -07:00
Nick Tiskov
32a8105590
Add Russian NSIS translation
2013-07-08 13:11:43 +04:00
devastatorius
6584de3a19
Update lithuanian.nsi
2013-07-08 12:02:05 +03:00
sledgehammer999
1047f14680
Updated croatian translation by delakroa.
2013-07-08 01:08:08 +03:00
sledgehammer999
da169fd26e
Updated NSIS basque translation by aramendi.
2013-07-08 00:33:51 +03:00
sledgehammer999
2ee57ddb20
Updated NSIS portuguese translation by marques.
2013-07-08 00:30:34 +03:00
sledgehammer999
b1b29b06fe
Updated NSIS galician translation by marcos.
2013-07-07 15:26:23 +03:00
sledgehammer999
f8ce9fa98d
Updated NSIS norwegian translation by tomaso.
2013-07-07 15:14:52 +03:00
sledgehammer999
f3e0bf3584
Updated NSIS norwegian translation by tomaso.
2013-07-07 14:54:16 +03:00
sledgehammer999
b7758fd6ba
Updated NSIS arabic translation by SDERAWI.
2013-07-07 13:53:52 +03:00
sledgehammer999
a284f47c42
Add ommitted string in the NSIS translations.
2013-07-07 12:37:28 +03:00
sledgehammer999
686fd33f3e
Updated NSIS japanese translation by hashimoto.
2013-07-07 12:24:59 +03:00
sledgehammer999
3fc1f4e162
Merge pull request #687 from Gelmir/asserts_fix
...
Fix failing asserts (rss settings are not saved).
2013-07-06 14:32:44 -07:00
sledgehammer999
803dc1a571
Updated NSIS galician translation by marcos.
2013-07-06 20:21:48 +03:00
sledgehammer999
33890c297f
Updated NSIS basque translation by aramendi.
2013-07-06 20:17:52 +03:00
sledgehammer999
98403e3816
Updated arabic translation by SDERAWI.
2013-07-06 20:10:59 +03:00
sledgehammer999
47ffe15793
Updated NSIS norwegian translation by tomaso.
2013-07-06 19:56:40 +03:00
sledgehammer999
52b2cba8e2
Updated NSIS arabic translation by SDERAWI.
2013-07-06 19:53:14 +03:00
sledgehammer999
82a0c4585c
Merge pull request #622 from john-peterson/column
...
Adding "Save path" column
2013-07-06 07:29:33 -07:00
sledgehammer999
ea3c6b6b09
Write BOM to NSIS scripts.
2013-07-06 15:03:26 +03:00
sledgehammer999
c085648063
Update galician translation by marcos.
2013-07-06 12:28:03 +03:00
Nick Tiskov
c8d51e91f4
Remove obsolete IP_HIDDEN column from peer list.
2013-07-06 04:07:09 +04:00
Nick Tiskov
ba014d0033
Allow to sort peer list either by country or by IP
2013-07-06 04:04:03 +04:00
sledgehammer999
b486d419dc
Update basque translation by aramendi
2013-07-05 00:14:49 +03:00
sledgehammer999
b5d447e6d0
Update japanese translation by hashimoto.
2013-07-04 23:20:18 +03:00
sledgehammer999
33d9ae1e4a
Update norwegian translation by Tomaso.
2013-07-04 23:18:20 +03:00
sledgehammer999
d8afccf948
Update italian translation by bovirus.
2013-07-04 23:17:45 +03:00
Nick Tiskov
30bf0a4c5f
Russian translation remaster.
...
1. A couple of translation fixes.
2. File updated with line numbers (now you can finally see dialog mockups and code snippets in Linguist)
2013-07-04 13:15:37 +04:00
sledgehammer999
e1d85627a8
Updated translations.
2013-07-04 02:47:17 +03:00
sledgehammer999
44a4889074
Preserve original style on about dialog.
2013-07-04 02:40:06 +03:00
sledgehammer999
64fabfed5b
Norwegian translation by Tomaso.
2013-07-04 02:24:13 +03:00
sledgehammer999
7b04e8204f
Merge pull request #736 from Gelmir/tr_drop_unneeded
...
Translations fixes
2013-07-03 15:02:39 -07:00
sledgehammer999
65621e2886
Merge pull request #739 from Gelmir/rc_proper_encoding
...
Use UCS-2 LE encoding for windows resource file
2013-07-03 08:42:49 -07:00
sledgehammer999
23b52f3d11
Update translations.
2013-07-03 18:25:18 +03:00
sledgehammer999
fbaaf10ee5
Update Portuguese translation by Sérgio Marques.
2013-07-03 18:18:33 +03:00
Nick Tiskov
f1a3a1424f
Use UCS-2 LE encoding for windows resource file
2013-07-03 19:01:39 +04:00
sledgehammer999
d4dd04cbdc
Call updateDiskSpaceLabel() manually in onSavePathChanged(). Closes #715 .
2013-07-03 16:57:47 +03:00
Nick Tiskov
8e7ef66011
Translations fixes
...
Do not translate strings, which should not be translated
Remove unnecessary/unused strings.
2013-07-03 15:44:30 +04:00
sledgehammer999
164f3b761d
Merge pull request #732 from alfrix/translations
...
Translations: update spanish
2013-07-02 14:07:50 -07:00
sledgehammer999
04ad78404c
Update NSIS script.
2013-07-02 21:32:01 +03:00
sledgehammer999
1e6aa54f0e
Use default choking algorithm. fastest_upload is too biased towards fast peers.
2013-07-02 20:45:59 +03:00
Nick Tiskov
7c1e91f256
Support Atom feeds
2013-07-02 21:02:45 +04:00
Alfre
2dece90144
Translations: update spanish
2013-07-02 11:56:58 -03:00
sledgehammer999
bc605fe09e
Merge pull request #619 from sledgehammer999/notification_on_finish
...
Actually show the tray notification when a torrent finishes downloading.
2013-07-01 14:28:02 -07:00
sledgehammer999
d52d64cbaf
Merge pull request #677 from Gelmir/rss_old_redl
...
Respect article limit during feed updates
2013-07-01 14:17:12 -07:00
Nick Tiskov
050893d8df
Prevent auto(re)downloading of RSS articles, which exceed article limit.
2013-07-02 00:58:17 +04:00
sledgehammer999
0c514a0f07
Update windows binary metadata.
2013-07-01 23:17:37 +03:00
sledgehammer999
cdc893a6cf
Merge pull request #229 from Hyperz/master
...
Default/native look for the search filter
2013-07-01 13:08:44 -07:00
constantined
4ec176b683
Make possible to move file to .unwanted directory after downloading
2013-07-01 12:47:24 +03:00
Nick Tiskov
6b660d505c
Allow control of cache expiry interval (libtorrent 0.16.10 allocator can now return cache to kernel)
2013-07-01 12:58:20 +04:00
Nick Tiskov
2647d9e994
Revert "Merge pull request #259 from sledgehammer999/revert_disk_cache"
...
This reverts commit a796df9019
.
2013-07-01 12:58:19 +04:00
Nick Tiskov
70a0de8de5
Fix failing asserts (rss settings are not saved).
...
See Pull #675
2013-07-01 12:52:23 +04:00
Nick Tiskov
454dbd5cd8
Do not autoDL items based on rules still being edited.
2013-07-01 12:43:40 +04:00
sledgehammer999
a4085ef68c
Merge pull request #727 from Gelmir/rename_on_index_changes
...
Properly rename torrent which changes position in filter model
2013-06-30 14:11:40 -07:00
Nick Tiskov
0e09717a02
Properly rename torrents, when index is moved out of current filter model or changes position inside filter model while rename window stays open
2013-07-01 00:56:12 +04:00
sledgehammer999
647f81ff84
Merge pull request #683 from Gelmir/rss_proper_drag_move
...
Fix Drag/Move event in RSS widget
2013-06-30 12:50:15 -07:00
sledgehammer999
2c7441b31d
Merge pull request #682 from Gelmir/rss_dnd_sameplace
...
Repopulate the feed tree after drag&drop to same location
2013-06-30 12:48:39 -07:00
sledgehammer999
e797365e3d
Change description of random port checkbox.
2013-06-30 15:57:46 +03:00
sledgehammer999
a261ab14ee
Port spinbox is now disabled correctly.
2013-06-30 15:52:37 +03:00
sledgehammer999
be5a1ae272
Seed rand only at one place.
2013-06-30 15:32:45 +03:00
tungnian lee
9913484f68
new fix for selecting random port when system starts up
2013-06-30 15:15:44 +03:00
tungnian lee
2de8b9112d
more clean up for feature selecting a random port when starts up
2013-06-30 15:15:43 +03:00
tungnian lee
75e28bb3e6
Made changes for clean up and fix the problem that a new ramdon port is set every time a setting is saved.
2013-06-30 15:15:42 +03:00
sledgehammer999
7a99eb8e23
Write BOM in NSIS translations' files.
2013-06-30 15:14:45 +03:00
sledgehammer999
0b15515f59
Update NSIS scripts to use unicode version of installer.
2013-06-30 14:43:23 +03:00
sledgehammer999
9ff7eab83b
Fixed compilation with libtorrent 0.15.x
2013-06-30 02:45:02 +03:00
sledgehammer999
b32a68318c
Ensure that all tranferlist columns have a size > 0.
2013-06-29 18:16:23 +03:00
sledgehammer999
029505bf1d
Impove drawing speed of peers list when there are many peers.
2013-06-29 18:10:45 +03:00
sledgehammer999
01307b377e
Improve drawing speed of transferlist with many torrents.
2013-06-29 17:58:41 +03:00
sledgehammer999
0322002b46
Update maintainer info in About dialog.
2013-06-29 15:37:08 +03:00
sledgehammer999
64dad99c36
Ensure that all columns in the peerlist are showing.
2013-06-29 13:28:29 +03:00
sledgehammer999
f227130388
Simplify code.
2013-06-27 15:29:02 +03:00
sledgehammer999
38d78b7606
Change seeding algorithm. Increase connections per second.
2013-06-27 15:25:23 +03:00
sledgehammer999
1ad9d9b4e0
Use new Libtorrent version define.
2013-06-16 14:34:00 +03:00
Christophe Dumez
f4e5d7bc11
Merge pull request #636 from sledgehammer999/libtorrent_trunk
...
Fix compilation with libtorrent 1.x.x.
2013-06-08 10:35:05 -07:00
sledgehammer999
22e2bafa7a
Fix compilation with libtorrent 1.x.x v2
2013-06-08 18:21:15 +03:00
Nick Tiskov
562e9ce108
Drag'n'Drop fixups.
...
1. Proper event handling
2. Allow folder moving
3. Allow moving into folders
2013-06-08 19:04:42 +04:00
Christophe Dumez
b8598bfc14
Merge pull request #594 from ccerrillo/master
...
changes in mootools breaks the context menu
2013-06-08 05:54:08 -07:00
Christophe Dumez
2a31d378a5
Merge pull request #606 from sledgehammer999/peer_tab
...
Show utorrent compatible peer flags. Implements issue #531 .
2013-06-08 05:48:09 -07:00
Christophe Dumez
a33a959f63
Merge pull request #629 from sledgehammer999/temp_tor_data
...
Store TorrentTempData only in memory. Partially implements #583 .
2013-06-08 05:41:46 -07:00
Christophe Dumez
1ff3818e6b
Merge pull request #662 from micheleolivo/master
...
Italians strings fixed
2013-06-08 05:10:48 -07:00
Nick Tiskov
116fa8936a
Add missing QTreeWidget::dropEvent to d'n'd atempt occuring in same location.
...
Remove 'Overwrite attempt' dialog as obsolete. Now moving item, e.g. from folder to same folder, will just make it the last child of the folder.
2013-06-04 18:47:01 +04:00
sledgehammer999
78663b9c27
Fix peer flags.
2013-05-24 19:18:03 +03:00
Christophe Dumez
0213b5f511
Add missing break statement in proxy code
2013-05-22 20:43:02 +03:00
Michele Olivo
559e0ac218
Fixed a couple of Italians strings.
2013-05-21 11:50:03 +02:00
sledgehammer999
94b58ca229
Fix compilation with libtorrent 1.x.x.
2013-05-07 22:57:18 +03:00
sledgehammer999
7aa3eff845
Add constness and value by reference in TorrentTempData.
2013-05-04 21:29:18 +03:00
sledgehammer999
9a0a26dae1
Store TorrentTempData only in memory. Partially implements #583 .
2013-05-04 17:56:26 +03:00
John Peterson
d1c3a07ba6
Adding "Save path" column
...
because it's useful when moving files
It's the same path as in properties because that's consistent
2013-05-01 09:05:14 +02:00
sledgehammer999
a30dc3a823
Actually show the tray notification when a torrent finishes downloading.
2013-04-30 23:52:32 +03:00
sledgehammer999
8464720d99
Show utorrent compatible peer flags. Implements issue #531 .
2013-04-22 20:48:50 +03:00
sledgehammer999
365ba4341a
Updated italian translation of NSIS installer by bovirus.
2013-04-20 12:06:34 +03:00
ccerrillo
c928987313
mootools change break context menu
...
Fx.Tween in mootols 1.4.5 no longer sets visibility to hidden, so when the context menu dissapear, if you put the mouse in the space where the menu were showed is still there but with opacity to 0 and cannot click to nothing below that area
So i emulated the old behaviour with OnComplete event.
Additionally i changed the use of deprecated $empty
2013-04-17 20:41:24 +03:00
Christophe Dumez
d5aa316613
Merge pull request #513 from Gelmir/creator_root
...
Fix: using files/folder in disk root for torrent creation fails
2013-04-14 03:06:29 -07:00
Christophe Dumez
43271d3ea7
Merge pull request #568 from alfrix/master
...
Updated Spanish Translation
2013-04-14 03:05:16 -07:00
Christophe Dumez
9aa0041422
Merge pull request #584 from sledgehammer999/it_translation
...
Update italian translation by bovirus.
2013-04-14 03:04:46 -07:00
sledgehammer999
1e7668608a
Update disk space label in add new torrent dialog. Fixes issue #282 .
2013-04-14 05:26:25 +03:00
sledgehammer999
a685349ae6
Updated italian language of nsis installer by bovirus.
2013-04-14 03:58:24 +03:00
sledgehammer999
7c2e679c8b
Update italian translation by bovirus.
2013-04-14 03:45:54 +03:00
Alfre
b6e16fbdc0
Update Spanish translation
2013-04-10 15:06:23 -03:00
sledgehammer999
4af28bfe81
Really fix issue #405 and #536 .
2013-04-01 21:37:36 +03:00
Christophe Dumez
4ba5e43933
Improve peer host name resolution ( closes #360 )
...
- Take a QString in argument to avoid converting it twice. The caller already
has the IP as a QString.
- Fix bug where hostnames coming from the cache would not the displayed.
- Fix bug where the resolved hostnames would not be displayed if the IP we know
does not match the first one in the QHostInfo::addresses() list. It may come
later in the list or may be formatted differently (possible with IPv6).
- Avoid requesting again host names for IPs that were already requested recently
but whose resolution did not return a useful hostname.
2013-03-28 21:47:45 +02:00
Nick Tiskov
6debc1e958
Fix unhandled exception when trying to create torrents from files/folder in disk root.
2013-03-21 20:56:39 +04:00
Christophe Dumez
9651d8736b
Fix legittorrents search plugin ( closes #515 )
2013-03-20 21:16:28 +02:00
Christophe Dumez
07ec2cce31
Update Italian translation
2013-03-16 22:26:40 +02:00
Christophe Dumez
698171bbcf
Updated Basque translation
2013-03-16 22:01:48 +02:00
Driim
df23fc1de2
delete not needed space
2013-03-11 22:52:49 +04:00
Driim
f445c8f872
Fix add torrent icon version 3
2013-03-11 22:50:32 +04:00
Driim
eb035e2199
Fix add torrent icon version 2
2013-03-11 22:45:32 +04:00
Driim
dac3a1a0ca
Fix missing "Add torrent file" icon
2013-03-11 19:33:57 +04:00
Nick Tiskov
314fc003b3
Use <OS_name>conf.pri file to control libz linkage
2013-03-11 00:04:40 +04:00
Christophe Dumez
c36b2774ed
Merge pull request #469 from Gelmir/ul_eta
...
ETA calculation for seed_only torrents; ETA column sorting
2013-03-10 12:53:26 -07:00
Nick Tiskov
ec08bfac07
Improve code readability in speed monitor
2013-03-10 23:25:24 +04:00
Christophe Dumez
cd754fd239
Update Norwegian translation
2013-03-10 21:24:15 +02:00
Christophe Dumez
a6e7588593
Merge pull request #495 from Gelmir/ru_ts
...
Update Russian translation.
2013-03-10 12:13:46 -07:00
Nick Tiskov
008ba33ce9
Update Russian translation.
2013-03-10 23:06:09 +04:00
Christophe Dumez
f49ba3e93d
Avoid using #define
2013-03-10 20:31:06 +02:00
Christophe Dumez
e98fb61400
Link against lz
2013-03-10 20:29:46 +02:00
Christophe Dumez
13e57fb9dd
Merge pull request #471 from daimor/master
...
Correctly handle HTTP responses with gzipped encoded content.
2013-03-10 11:08:57 -07:00
Christophe Dumez
7234a93293
Merge pull request #462 from Gelmir/webui_json
...
Multiple JSON parses fixes
2013-03-10 11:04:15 -07:00
Christophe Dumez
56cff16b07
Update language files
2013-03-10 20:03:21 +02:00
Christophe Dumez
a998f4c980
Merge pull request #464 from Gelmir/log_clear
...
Allow clearing of execution log and peer ban log
2013-03-10 11:01:33 -07:00
Nick Tiskov
0c0c7459f1
Cosmetic fix for eta sorting in torrent list: 'infinity' must always come last
2013-03-10 20:59:19 +04:00
Nick Tiskov
34a88c83f0
Calculate eta for seed only torrents using ratio limits
2013-03-10 20:59:19 +04:00
Nick Tiskov
a8f29e51c5
Cosmetic fixes to torrent creator
2013-03-10 20:58:23 +04:00
Nick Tiskov
964b321458
Ignore multiple sequential newlines in torrent creator
2013-03-10 20:41:59 +04:00
Nick Tiskov
dec726c0ae
Add tooltip in torrent creation dialog as a hint on tracker tiers
2013-03-10 20:41:58 +04:00
Nick Tiskov
025f4f9737
Support tracker mirrors in torrent creator
2013-03-10 20:41:58 +04:00
Nick Tiskov
66b982ad03
Minor refactoring for json parser
2013-03-10 20:40:08 +04:00
Nick Tiskov
3309706964
Allow clearing of execution log and peer ban log
2013-03-10 20:31:46 +04:00
Nick Tiskov
9d275d6d34
Allow bool lists in json values
2013-03-10 20:03:53 +04:00
Nick Tiskov
91f9a46c18
Allow semicolon in json values (Windows paths support)
2013-03-10 20:03:52 +04:00
Dmitry Maslennikov
e017ba6863
add cookies for redirect, cookies for auto download torrent from rss, add support gzip
2013-03-10 19:15:33 +04:00
sledgehammer999
0fa0be2d0e
Pass the correct flag in torrent_handle::status for libtorrent > 0.15
2013-03-10 17:08:40 +02:00
sledgehammer999
4e0dc5d51a
Merge pull request #478 from sledgehammer999/win_backtrace
...
Move backtrace support to windows specific pri files and other minor improvements. v2
2013-03-10 04:21:55 -07:00
Christophe Dumez
14bfc4f4ed
Merge pull request #434 from Gelmir/session_end
...
Attempt to fix data loss during session end v2
2013-03-10 00:53:41 -08:00
Christophe Dumez
e5f0edaa0a
Merge pull request #456 from Gelmir/fix_webui_ap
...
Allow/Fix special characters in json replies in WebUI
2013-03-10 00:48:45 -08:00
Christophe Dumez
4e2750262d
Merge pull request #466 from Gelmir/webseed_menu
...
Add context menu to web seed list
2013-03-10 00:35:21 -08:00
sledgehammer999
12a6ecf353
Enable 'copy magnet uri' for torrents without metadata too. Fixes issue #458 .
2013-03-05 23:15:39 +02:00
sledgehammer999
eb0d1748c3
Fix compilation without backtrace support on Windows.
2013-03-03 03:11:01 +02:00
sledgehammer999
1f0d4ce871
Move Windows backtrace functionality to the windows specific *.pri files.
2013-03-03 00:52:51 +02:00
Nick Tiskov
b64caf2cb8
Remove add/remove buttons in web seed list, since context menu is now implemented.
2013-02-28 23:04:12 +04:00
Nick Tiskov
b286bead09
Add context menu for web seeds: add, remove, copy, edit.
2013-02-28 23:00:04 +04:00
Nick Tiskov
dc4d0a7078
Allow/Fix special characters in json replies in WebUI
2013-02-25 16:28:15 +04:00
Christophe Dumez
da3406b811
Simplify the code a bit now that QIniSettings uses qBittorrent / qBittorrent by default
2013-02-16 20:04:48 +02:00
Christophe Dumez
6c753ac183
Have QIniSettings use qBittorrent / qBittorrent by default
2013-02-16 19:33:07 +02:00
Christophe Dumez
1549a443c5
Have Preferences subclass QIniSettings privately to discourage bad usage.
2013-02-16 19:30:44 +02:00
Nick Tiskov
28df59b9e6
Attempt to fix data loss during session end
2013-02-16 17:46:34 +04:00
Christophe Dumez
1f25e6d0fe
Merge pull request #423 from Gelmir/rss_rulelist
...
Changing regexp/wildcard mode should update article list matches
2013-02-16 05:36:42 -08:00
Christophe Dumez
47f5d165a8
Merge pull request #427 from sledgehammer999/update_def_path
...
Fix case where the default save wasn't getting updated in the addition d...
2013-02-16 05:34:27 -08:00
Christophe Dumez
13a195d73b
Merge pull request #426 from sledgehammer999/fix_dont_show
...
Fix 'dont show' dialog when downloading torrent. Closes issue #405 .
2013-02-16 05:33:00 -08:00
sledgehammer999
04e4295140
Fix case where the default save wasn't getting updated in the addition dialog.
2013-02-12 00:31:47 +02:00
sledgehammer999
fe98c36abf
Fix 'dont show' dialog when downloading torrent. Closes issue #405 .
2013-02-11 23:38:33 +02:00
Christophe Dumez
ee84af0826
Update Norwegian translation
2013-02-11 12:44:11 +02:00
Christophe Dumez
e1d09303f9
Update language files
2013-02-11 12:42:39 +02:00
Nick Tiskov
a6e862d9ea
More updates to Russian translation
2013-02-11 14:22:51 +04:00
Nick Tiskov
c28641ba94
Fix Russian translation for d3b4ec77bc
2013-02-11 14:03:41 +04:00
Nick Tiskov
5e5d8118c7
Changing regexp/wildcard mode should update article list matches
2013-02-11 13:58:00 +04:00
Nick Tiskov
e05cce9b59
Small fix to tracker editing
2013-02-10 22:39:15 +04:00
Nick Tiskov
a7a4557b29
fixup! Use QInputDilog for tracker editing
2013-02-10 22:07:37 +04:00
Nick Tiskov
4cb783d5bf
Use QInputDilog for tracker editing
2013-02-10 22:07:36 +04:00
Nick Tiskov
cd830768d6
Allow to edit tracker URI
2013-02-10 22:05:51 +04:00
Christophe Dumez
6f46c60360
Update Hebrew translation
2013-02-09 23:06:09 +02:00
Christophe Dumez
d9d63141bb
Merge pull request #396 from karimodm/master
...
Fix to Issue #395 : Preview feature absent when .!qB extensions added
2013-02-09 10:34:10 -08:00
Andrea Villa
b6f156b7dd
Reverting fs_utils.cpp and fixing callers instead
2013-02-09 18:55:10 +01:00
Nick Tiskov
93c64d03e3
Fix copy tracker build failure
2013-02-09 21:18:52 +04:00
Christophe Dumez
6fddbd8178
Merge pull request #206 from Driim/master
...
Copy tracker URL
2013-02-09 07:53:11 -08:00
Christophe Dumez
67ca3315fd
Merge pull request #374 from Gelmir/feedreader_lang
...
Fix spacing in Russian translation in article list
2013-02-09 07:50:16 -08:00
Christophe Dumez
168de06d47
Merge pull request #391 from sledgehammer999/win_installer
...
Major refactoring on the windows installer scripts
2013-02-09 07:46:53 -08:00
Christophe Dumez
3ee79afe4f
Merge pull request #402 from bovirus/patch-2
...
Update src/lang/qbittorrent_it.ts by bovirus
2013-02-09 07:36:51 -08:00
sledgehammer999
a2e4e2ad37
Remove leading and trailing whitespace when choosing filenames. Fixes issue #401 .
2013-02-07 21:31:24 +02:00
ROBERTO
367b17e315
Update src/lang/qbittorrent_it.ts
2013-02-07 14:25:58 +01:00
Andrea
ccd50262c6
FIX: Redeclared Variable
2013-02-05 03:44:54 +01:00
Andrea
c7efd0dd05
Fix Preview for .!qB extended files
2013-02-05 01:46:00 +01:00
sledgehammer999
287e2a7c2d
Update README.txt.
2013-02-02 03:54:31 +02:00
sledgehammer999
9618cc1628
Update instructions in README.txt.
2013-02-02 03:28:07 +02:00
sledgehammer999
d435eae35c
Include third party plugins used by the scripts.
2013-02-02 03:04:15 +02:00
sledgehammer999
80021c4ef6
Move the check for already running instance just before the actual installation.
2013-02-02 02:52:14 +02:00
sledgehammer999
d959a5918c
Remove unused label.
2013-02-02 02:52:11 +02:00
sledgehammer999
5b092b3aea
Updated language tables with all the strings.
2013-02-02 02:52:09 +02:00
sledgehammer999
749e668a03
Remove file associations only if qbt is associated. Fixes issue #307 .
2013-02-02 02:52:06 +02:00
sledgehammer999
257f75a201
Reserve dll for faster execution.
2013-02-02 02:52:04 +02:00
sledgehammer999
cfa1e8441b
Added some logging for a few actions.
2013-02-02 02:52:01 +02:00
sledgehammer999
5b66b7a24f
Run unistaller silently before proceeding with the install.
2013-02-02 02:51:59 +02:00
sledgehammer999
78ee01b03c
The installer now checks if qbt is running before proceeding.
2013-02-02 02:51:56 +02:00
sledgehammer999
653d49ab3c
Offer to launch qbt after installation.
2013-02-02 02:51:54 +02:00
sledgehammer999
c13776d000
Add more info to the system about the unistaller.
2013-02-02 02:51:52 +02:00
sledgehammer999
e71facf6d6
Add version info to the installer executable.
2013-02-02 02:51:49 +02:00
sledgehammer999
f2f2dad402
Split removal of configuration files to 2 options.
2013-02-02 02:51:47 +02:00
sledgehammer999
c6ba3b4ca3
Change title of installer to show the qbt's version.
2013-02-02 02:51:45 +02:00
sledgehammer999
feadedf8ef
Support adding of windows firewall rule.
2013-02-02 02:51:42 +02:00
sledgehammer999
ccce8f58c9
Updated translations.nsi
2013-02-02 02:51:27 +02:00
sledgehammer999
e85efb828d
Create language tables for all the available languages.
2013-02-02 02:50:35 +02:00
sledgehammer999
4d739d4050
Refactor windows installer script to accomodate further translation. Also split it up so it is easier to maintain and extend.
2013-02-02 02:44:33 +02:00
Dmitriy Falko
b172196512
Merge pull request #2 from qbittorrent/master
...
Up-to-date commit
2013-01-28 06:08:05 -08:00
Nick Tiskov
9b121fd5d0
Save article 'read' state on exit
2013-01-28 14:53:04 +04:00
Christophe Dumez
405885209b
Update Finnish translation
2013-01-27 18:49:36 +02:00
Nick Tiskov
12f0954c4c
Fix spacing in Russian translation in article list
2013-01-27 13:39:25 +04:00
Christophe Dumez
8046ba4103
Merge pull request #361 from sledgehammer999/torrent_creator
...
Fix torrent creator when saving to a non-latin path in Windows.
2013-01-26 12:35:41 -08:00
Christophe Dumez
dce5c217c8
Merge pull request #329 from Gelmir/iface_hrNames
...
Show human readable interface names
2013-01-26 12:31:59 -08:00
Christophe Dumez
0161e64481
Update Norwegian translation
2013-01-26 22:21:00 +02:00
sledgehammer999
b768005f44
Merge pull request #337 from Gelmir/stacktrace_win
...
Support stacktrace on Windows
2013-01-26 12:15:09 -08:00
Christophe Dumez
6838edb4fe
Merge pull request #358 from Gelmir/raise_wnd
...
Raise main window when starting another instance w/o params
2013-01-26 11:59:09 -08:00
sledgehammer999
2309c25aa4
Fix null termination of wsave_path.
2013-01-26 20:35:50 +02:00
Nick Tiskov
1090e87f3a
fixup! Raise main window when starting another instance w/o params
2013-01-26 22:22:17 +04:00
Nick Tiskov
104b2aecdc
fixup! Show human readable interface names (mostly affects Windows)
2013-01-26 21:24:38 +04:00
Christophe Dumez
2a76ddb81d
Remove binary translations now that they are generated at configure time
2013-01-26 19:08:04 +02:00
Christophe Dumez
13cd4815ee
Add Legit Torrents search plugin
2013-01-26 16:09:00 +02:00
Nick Tiskov
5eaf4201ae
Fixes: 1) Building fails w/o "CONFIG += strace_win" 2) mingw build
...
Commenting Mingw release flags section for now. Strace is not reliable with mingw (only calls to other libraries are resolved, internal calls show up as addresses).
2013-01-25 22:52:12 +04:00
Christophe Dumez
606ee3c883
Update Portuguese translation
2013-01-25 17:54:03 +02:00
Christophe Dumez
a1a73af7da
Update Finnish translation
2013-01-23 22:07:21 +02:00
sledgehammer999
ed26846a54
Null terminate the wide string in torrent creator.
2013-01-23 17:30:44 +02:00
sledgehammer999
e7125d21cb
Fix torrent creator when saving to a non-latin path in Windows.
2013-01-23 14:19:18 +02:00
sledgehammer999
0c0a90c6c2
Update Qt translations from qt 4.8.4
2013-01-22 19:04:38 +02:00
Nick Tiskov
5ca5441a48
Support raising window when UI is locked
2013-01-22 17:36:14 +04:00
Nick Tiskov
88960556e3
Raise main window when starting another instance w/o params
2013-01-22 15:38:09 +04:00
Christophe Dumez
d3b4ec77bc
Update date in About dialog copyright
2013-01-20 13:01:51 +02:00
Christophe Dumez
08dc932d00
Fixes to Italian translation
2013-01-20 12:20:51 +02:00
Christophe Dumez
d6b99a8d70
Add plugin versions.txt file for python3
2013-01-20 00:00:58 +02:00
Christophe Dumez
e13eeeed60
Update plugin versions
2013-01-19 23:59:26 +02:00
Christophe Dumez
b71570bdf7
Fix duplicate results in piratebay results
2013-01-19 23:27:51 +02:00
Nick Tiskov
a9cffd8863
Support stacktrace on Windows
...
adds 'strace_win' CONFIG option
2013-01-19 22:07:20 +04:00
Christophe Dumez
0ace60a39b
Use HTTPS for btdigg
2013-01-19 19:36:52 +02:00
Christophe Dumez
d740b051cb
Really fix kat search engine with python3
2013-01-19 19:29:51 +02:00
Christophe Dumez
f369e22de0
Fix kat.ph search with python3
2013-01-19 18:54:18 +02:00
Christophe Dumez
64fd3044b1
Fix compilation error with libtorrent v0.15
2013-01-19 18:16:47 +02:00
Christophe Dumez
bcd81c0791
Better fix for --no-splash argument
2013-01-19 16:38:34 +02:00
Christophe Dumez
965f7f5d26
Fix support for --no-splash command line argument
2013-01-19 16:24:31 +02:00
Christophe Dumez
636e052faa
Remove "Force reannounce" action
...
Does not work as intended.
2013-01-16 20:03:32 +02:00
Christophe Dumez
6e1f250470
Stop listening on port 4433 since we do not support SSL torrents
2013-01-16 19:07:22 +02:00
sledgehammer999
4f1cb5ab7c
Store language settings for the installer. Use them in the unistaller too.
2013-01-13 18:07:21 +02:00
sledgehammer999
2fbc979136
Remove qBittorrent Start Menu folder when uninstalling. Partially fixes #291 .
2013-01-13 18:07:18 +02:00
Nick Tiskov
3e98bd49e2
Show human readable interface names (mostly affects Windows)
2013-01-13 17:44:14 +04:00
Christophe Dumez
186bbd7fc3
Safer check
2013-01-13 13:01:58 +02:00
Christophe Dumez
34fc7407a2
Fix possible crash in loadPeers() ( closes #222 )
2013-01-13 12:53:34 +02:00
Christophe Dumez
aecf069975
Require password to exit qBittorrent from tray icon when locked ( closes #311 )
2013-01-12 19:18:39 +02:00
Christophe Dumez
ec90fc480c
Bump mootools to 1.4.5
2013-01-12 18:55:02 +02:00
Christophe Dumez
4012a64327
Update Italian translation
2013-01-10 18:59:50 +02:00
Christophe Dumez
646c6b6e64
Fix torrentreactor engine plugin
2013-01-09 19:16:44 +02:00
Christophe Dumez
3eae8b3db2
Update language files
2013-01-09 19:06:09 +02:00
Nick Tiskov
a756c264f9
Update Russian translation.
2013-01-09 20:30:24 +04:00
Christophe Dumez
add29f9a5c
Remove torrentdownloads.ws search plugin (Pretty much dead...)
2013-01-08 22:24:21 +02:00
Christophe Dumez
6a16ca31a2
Really use HTTPS link for isohunt engine
2013-01-08 21:51:51 +02:00
Christophe Dumez
b1cf8c16df
Use HTTPS link for thepiratebay.se
2013-01-08 21:47:24 +02:00
Christophe Dumez
5b2947764d
Use HTTPS link for isohunt
2013-01-08 21:41:16 +02:00
Christophe Dumez
452fdbcc6f
Use HTTPS link for kat.ph plugin
2013-01-08 21:34:28 +02:00
Christophe Dumez
1b3a758f28
Search plugins: Properly uncompress gzipped responses in retrieve_url()
2013-01-08 21:30:43 +02:00
Christophe Dumez
4db73d421d
Remove outdated torrentz link
2013-01-08 20:08:40 +02:00
Christophe Dumez
643840d969
Remove btjunkie search plugin
2013-01-08 18:57:54 +02:00
Nick Tiskov
8302b9e1d7
Update Russian translation
2013-01-03 14:52:34 +04:00
Christophe Dumez
12bd5c9dd7
Update Italian translation
2013-01-02 18:25:53 +02:00
sledgehammer999
57a609a62c
Merge pull request #301 from Gelmir/static_favicon
...
Use qico plugin in static build. Required for RSS favicon capabilities.
2012-12-30 08:43:56 -08:00
Christophe Dumez
26228e747d
Merge pull request #299 from Gelmir/anon_mode_help_external
...
Anonymous mode link is not opened in default browser.
2012-12-30 02:22:22 -08:00
Nick Tiskov
f55ea07c1d
Move QTPLUGIN qmake macro to src.pro.
2012-12-29 20:06:15 +04:00
Nick Tiskov
0cdb833aa6
Use qico plugin in static build. Required for RSS favicon capabilities.
2012-12-28 15:40:22 +04:00
Nick Tiskov
54e99b73d6
Fix 'Amount Uploaded' contradiction between main view and properties widget
2012-12-27 17:57:31 +04:00
Nick Tiskov
680998f9c2
Add 'Uploaded' column to main view
2012-12-27 17:55:40 +04:00
Nick Tiskov
12d062cd7e
Anonymous mode link is not opened in default browser.
2012-12-27 16:54:11 +04:00