summaryrefslogtreecommitdiffstats
path: root/deluge/ui/gtk3/torrentview.py
Commit message (Collapse)AuthorAge
* Upgrade codebase with pyupgrade (>=py3.6)DjLegolas2021-12-29
| | | | | | | | Added pyupgrade utility with manual stage to pre-commit and run on all files. Ref: https://github.com/asottile/pyupgrade Closes: deluge-torrent/deluge#326
* Remove all Python 2 supportdeluge-2.1.0.dev0DjLegolas2021-12-28
| | | | | | | | | * Removed all __future__ imports from code * Removed all six dependencies * Removed all future_builtins imports * Removed all Python 2 related code Closes: deluge-torrent/deluge#325
* [GtkUI] Fix ETA sorting to match WebUICalum Lind2021-12-22
| | | | | | The sort for Ascending was putting longest eta first but seems more intuitive that the smallest time to wait should be first. The WebUI in previous commit swapped this behaviour so updating GtkUI.
* [GTKUI] Add "Last Transfer" columnAndrew Stone2021-11-23
| | | | Closes: deluge-torrent/deluge#255
* [GTK] Fix missing argument for GtkMenu.popup()Calum Lind2019-06-12
| | | | | | Missed while converting from pygtk to Gtk3 Fixes: #3266
* [GTK] Fix no torrent selected on startupCalum Lind2018-11-09
|
* [GTK3] Fix UnicodeWarning in row comparison on Python 2Calum Lind2018-11-02
|
* [GTK3] Fix column header right-click menu popupCalum Lind2018-11-02
| | | | | | | | The popup_at_pointer method is only available in GTK >=3.22 so for compatibility restore using popup method. Right-clicking on column headers popped-up torrent menu so only show this menu when in torrentview.
* [GTK3] Fix cmp sorting on Python 3Calum Lind2018-11-02
|
* [GTK3] Fix and remove FIXME commentsCalum Lind2018-11-02
| | | | | | | | - Several of the FIXME comments seem to be outdated so removed. - The status_icon comment was resolved by fixing the arguments supplied to tray_menu.popup(). - The TreePath no longer returns a tuple so cast path to int. - Fix an error with Pixbuf signature.
* [GTK3] Fix GObject deprecation warningshugosenari2018-11-02
| | | | | | | | | GObject.idle_add is deprecated using GLib.idle_add instead GObject.timeout_add is deprecated using GLib.timeout_add instead GObject.SIGNAL_RUN_LAST is deprecated; use GObject.SignalFlags.RUN_LAST instead GObject.GError is deprecated; use GLib.GError instead GObject.timeout_add is deprecated use GLib.timeout_add instead. ListStore(str, str) using unicode_literals get_value return utf8.
* [GTK3] Change module structure from ui/gtkui to ui/gtk3Calum Lind2018-11-02
This moves the directory structure so that there is no conflict with the old gtk2 UI. Also changes the conf and state files being loaded.