Page 1 of 1

Cosmetic problem

Posted: Fri Oct 27, 2023 11:30 pm
by yokotsumo
OS: Ubuntu 22.04
Deluge version: 2.0.3

In the status bottom bar, Uploaded and Down Speed data are inverted.

Re: Cosmetic problem

Posted: Sat Oct 28, 2023 6:15 pm
by mhertz
Yeah was fixed in deluge 2.0.4. Best to simply upgrade imho, ppa or pip, but anyway, this command-line will apply relevant commit locally to deluge 2.0.3 if wanted:

Code: Select all

sudo find /usr -path "*/deluge/ui/gtk3/glade/main_window.tabs.ui" -exec sh -c 'curl https://github.com/deluge-torrent/deluge/commit/eeeb7fb69b73cca40a27662997f2d21cec6ed33f.patch | patch {}' \;
If not having curl, but wget:

Code: Select all

sudo find /usr -path "*/deluge/ui/gtk3/glade/main_window.tabs.ui" -exec sh -c 'wget -O- https://github.com/deluge-torrent/deluge/commit/eeeb7fb69b73cca40a27662997f2d21cec6ed33f.patch | patch {}' \;
If change mind, rerun command-line again to revert(and press 'y' when prompted: "assume -R?".