mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-11 20:14:13 +00:00
Show save_path in TorrentDetails.
This commit is contained in:
parent
c2f7c362b3
commit
cc7d7e8c62
1
TODO
1
TODO
@ -10,5 +10,4 @@
|
|||||||
* Change the menubar.py gtkui component to menus.py and add support for plugins
|
* Change the menubar.py gtkui component to menus.py and add support for plugins
|
||||||
to add menuitems to the torrentmenu in an easy way.
|
to add menuitems to the torrentmenu in an easy way.
|
||||||
* Restart daemon function
|
* Restart daemon function
|
||||||
* Sync the details pane to current trunk
|
|
||||||
* Docstrings!
|
* Docstrings!
|
||||||
|
@ -149,7 +149,8 @@ class Torrent:
|
|||||||
"eta": self.get_eta(),
|
"eta": self.get_eta(),
|
||||||
"ratio": self.get_ratio(),
|
"ratio": self.get_ratio(),
|
||||||
"tracker": status.current_tracker,
|
"tracker": status.current_tracker,
|
||||||
"tracker_status": self.tracker_status
|
"tracker_status": self.tracker_status,
|
||||||
|
"save_path": self.save_path
|
||||||
}
|
}
|
||||||
|
|
||||||
# Create the desired status dictionary and return it
|
# Create the desired status dictionary and return it
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -71,6 +71,7 @@ class TorrentDetails:
|
|||||||
self.tracker_status = glade.get_widget("summary_tracker_status")
|
self.tracker_status = glade.get_widget("summary_tracker_status")
|
||||||
self.next_announce = glade.get_widget("summary_next_announce")
|
self.next_announce = glade.get_widget("summary_next_announce")
|
||||||
self.eta = glade.get_widget("summary_eta")
|
self.eta = glade.get_widget("summary_eta")
|
||||||
|
self.torrent_path = glade.get_widget("summary_torrent_path")
|
||||||
|
|
||||||
def update(self):
|
def update(self):
|
||||||
# Only update if this page is showing
|
# Only update if this page is showing
|
||||||
@ -93,7 +94,7 @@ class TorrentDetails:
|
|||||||
"total_payload_upload", "download_payload_rate",
|
"total_payload_upload", "download_payload_rate",
|
||||||
"upload_payload_rate", "num_peers", "num_seeds", "total_peers",
|
"upload_payload_rate", "num_peers", "num_seeds", "total_peers",
|
||||||
"total_seeds", "eta", "ratio", "tracker", "next_announce",
|
"total_seeds", "eta", "ratio", "tracker", "next_announce",
|
||||||
"tracker_status"]
|
"tracker_status", "save_path"]
|
||||||
status = functions.get_torrent_status(self.core,
|
status = functions.get_torrent_status(self.core,
|
||||||
selected,
|
selected,
|
||||||
status_keys)
|
status_keys)
|
||||||
@ -133,6 +134,7 @@ class TorrentDetails:
|
|||||||
self.tracker_status.set_text(status["tracker_status"])
|
self.tracker_status.set_text(status["tracker_status"])
|
||||||
self.next_announce.set_text(
|
self.next_announce.set_text(
|
||||||
deluge.common.ftime(status["next_announce"]))
|
deluge.common.ftime(status["next_announce"]))
|
||||||
|
self.torrent_path.set_text(status["save_path"])
|
||||||
|
|
||||||
def clear(self):
|
def clear(self):
|
||||||
# Only update if this page is showing
|
# Only update if this page is showing
|
||||||
|
Loading…
x
Reference in New Issue
Block a user