Cosmetic problem

General support for problems installing or using Deluge
Post Reply
yokotsumo
New User
New User
Posts: 1
Joined: Fri Oct 27, 2023 11:20 pm

Cosmetic problem

Post by yokotsumo »

OS: Ubuntu 22.04
Deluge version: 2.0.3

In the status bottom bar, Uploaded and Down Speed data are inverted.
mhertz
Moderator
Moderator
Posts: 2215
Joined: Wed Jan 22, 2014 5:05 am
Location: Denmark

Re: Cosmetic problem

Post 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?".
Post Reply