Custom Query (2444 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (37 - 39 of 2444)

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
Ticket Resolution Summary Owner Reporter
#3439 Fixed Execute plugin fails to run on Windows, exception thrown scudre
Description

Execute plugin fails to run on Windows. Issue is due to the migration from Python 2 to Python 3, and the different handling of strings and bytes. Following exception is thrown when attempting to execute a script:

Traceback (most recent call last):
File "c:\users\chris\appdata\roaming\deluge\plugins\execute-1.3d-py3.8.egg\deluge_execute\core.py", line 139, in execute_commands
cmd_args = [cmd_arg.replace('&', '^^^&') for cmd_arg in cmd_args]
File "c:\users\chris\appdata\roaming\deluge\plugins\execute-1.3d-py3.8.egg\deluge_execute\core.py", line 139, in
cmd_args = [cmd_arg.replace('&', '^^^&') for cmd_arg in cmd_args]
TypeError: a bytes-like object is required, not 'str'
#3438 Fixed hostname bug for fetching Tracker Icons bader77uk
Description

I have found a bug in downloading trackers icon, i have attached edited debug log file that's related to the issue.

its most likely a bug in variable ->host

looking for a fix ASAP

Thanks!

#3435 Fixed Both bg and fg should be defined sergio
Description

There is no promise that default bg is white and default fg is black.

The fix is simple:

--- deluge.css.orig	2020-10-24 01:53:42.263275855 +0300
+++ deluge.css	2020-10-24 01:47:25.640715735 +0300
@@ -6,6 +6,8 @@
     border: 0 none;
     overflow: hidden;
     height: 100%;
+    color: black;
+    background: white;
 }
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
Note: See TracQuery for help on using queries.