Custom Query (2449 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (1 - 3 of 2449)

1 2 3 4 5 6 7 8 9 10 11
Ticket Resolution Summary Owner Reporter
#3610 Fixed 'Change Ownership' option gone from GTK-UI. mhertz
Description

I narrowed issue down to commit #bcaaeac, specifically last change of menubar.py, breaking this i.e.:

-            item = Gtk.RadioMenuItem(group=maingroup, label=username)
+            item = Gtk.RadioMenuItem.new_with_label(maingroup, username)

So reverting that, makes the menu/context-menu entries return for said option, which otherwise got hidden from called error-callback function. Strange as looks in line with documentation, but obviously no expert myself.

Issue reported on forum by darcmandeluge here: https://forum.deluge-torrent.org/viewtopic.php?p=237035#p237035

Thanks in advance!

#3604 Fixed Fix log level tweaks from logging.conf seblu
Description

When you set a config directory path (-c) on the command line, and only when, a file named logging.conf is read to set fine grained log levels. This allows to have per module/plugin log levels.

The file is parsed and the log levels are set in the deluge.log.tweak_logging_levels. This function set the appropriate logger to the desired level. Despite the log level is changed, log levels less than ERROR are still not logged.

The reason is that the log level check is done twice, in the logging.Logger class and in the logging.Handler class.

Fix proposed: https://github.com/deluge-torrent/deluge/pull/428

#3602 Fixed Add torrent dialog removes directory from file tree bro bro
Description

When adding a torrent that contains one directory with one file inside, the directory is not included in the tree view. This has been the behavior since the dawn of time, presumable due to the mistaken beleif that the directory was not needed. All other torrent clients include the directory even if there is only one file inside

1 2 3 4 5 6 7 8 9 10 11
Note: See TracQuery for help on using queries.