mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 06:28:03 -06:00
- Fix communication between qBittorrent and Web UI (broken by Qt 4.6)
This commit is contained in:
@@ -3,6 +3,7 @@
|
|||||||
- BUGFIX: Fix possible crash when closing a search engine tab
|
- BUGFIX: Fix possible crash when closing a search engine tab
|
||||||
- BUGFIX: Make sure service port does not change
|
- BUGFIX: Make sure service port does not change
|
||||||
- BUGFIX: Fix possible DHT port saving issue
|
- BUGFIX: Fix possible DHT port saving issue
|
||||||
|
- BUGFIX: Fix communication between qBittorrent and Web UI (Qt 4.6)
|
||||||
|
|
||||||
* Wed Dec 23 2009 - Christophe Dumez <chris@qbittorrent.org> - v2.0.3
|
* Wed Dec 23 2009 - Christophe Dumez <chris@qbittorrent.org> - v2.0.3
|
||||||
- BUGFIX: Minor cosmetic fix to program preferences
|
- BUGFIX: Minor cosmetic fix to program preferences
|
||||||
|
|||||||
@@ -233,7 +233,7 @@ void EventManager::modifiedTorrent(QTorrentHandle h)
|
|||||||
}
|
}
|
||||||
event["name"] = QVariant(h.name());
|
event["name"] = QVariant(h.name());
|
||||||
event["size"] = QVariant(misc::friendlyUnit(h.actual_size()));
|
event["size"] = QVariant(misc::friendlyUnit(h.actual_size()));
|
||||||
event["progress"] = QVariant(h.progress());
|
event["progress"] = QVariant((double)h.progress());
|
||||||
event["dlspeed"] = QVariant(tr("%1/s", "e.g. 120 KiB/s").arg(misc::friendlyUnit(h.download_payload_rate())));
|
event["dlspeed"] = QVariant(tr("%1/s", "e.g. 120 KiB/s").arg(misc::friendlyUnit(h.download_payload_rate())));
|
||||||
if(BTSession->isQueueingEnabled()) {
|
if(BTSession->isQueueingEnabled()) {
|
||||||
if(h.queue_position() >= 0)
|
if(h.queue_position() >= 0)
|
||||||
|
|||||||
Reference in New Issue
Block a user