You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally posted by gallyamb January 6, 2025
rakshasa/rtorrent support editing trackers list: add new trackers, enable/disable existing ones. Would be great, if Flood could provide an UI for this actions
as reference:
defd_add_tracker(self, info_hash: str, url: str, *, group: int=0) ->None:
"""add a tracker to download"""self.rpc.d.tracker.insert(info_hash, group, url)
deft_enable_tracker(self, info_hash: str, tracker_index: int) ->None:
"""enable a tracker of download"""self.rpc.t.is_enabled.set(f"{info_hash}:t{tracker_index}", 1)
deft_disable_tracker(self, info_hash: str, tracker_index: int) ->None:
"""disable a tracker of download"""self.rpc.t.is_enabled.set(f"{info_hash}:t{tracker_index}", 0)
The text was updated successfully, but these errors were encountered:
Discussed in #837
Originally posted by gallyamb January 6, 2025
rakshasa/rtorrent support editing trackers list: add new trackers, enable/disable existing ones. Would be great, if Flood could provide an UI for this actions
as reference:
The text was updated successfully, but these errors were encountered: