summaryrefslogtreecommitdiffstats
path: root/rtorrent-extended/trackerinfo.patch
diff options
context:
space:
mode:
Diffstat (limited to 'rtorrent-extended/trackerinfo.patch')
-rw-r--r--rtorrent-extended/trackerinfo.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/rtorrent-extended/trackerinfo.patch b/rtorrent-extended/trackerinfo.patch
new file mode 100644
index 0000000..63998a5
--- /dev/null
+++ b/rtorrent-extended/trackerinfo.patch
@@ -0,0 +1,21 @@
+diff --git a/src/display/window_tracker_list.cc b/src/display/window_tracker_list.cc
+index 1903d67..2860f12 100644
+--- a/src/display/window_tracker_list.cc
++++ b/src/display/window_tracker_list.cc
+@@ -89,13 +89,14 @@ WindowTrackerList::redraw() {
+ tracker->url().c_str());
+
+ if (pos < m_canvas->height())
+- m_canvas->print(4, pos++, "Id: %s Focus: %s Enabled: %s Open: %s S/L: %u/%u",
++ m_canvas->print(4, pos++, "Id: %s Focus: %s Enabled: %s Open: %s S/L/D: %u/%u/%u",
+ rak::copy_escape_html(tracker->tracker_id()).c_str(),
+ range.first == tl->focus_index() ? "yes" : " no",
+ tracker->is_usable() ? "yes" : tracker->is_enabled() ? "off" : " no",
+ tracker->is_busy() ? "yes" : " no",
+ tracker->scrape_complete(),
+- tracker->scrape_incomplete());
++ tracker->scrape_incomplete(),
++ tracker->scrape_downloaded());
+
+ // m_canvas->print(4, pos++, "Id: %s Focus: %s Enabled: %s Open: %s Timer: %u/%u",
+ // rak::copy_escape_html(tracker->tracker_id()).c_str(),