Custom Query (2448 matches)
Results (37 - 39 of 2448)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#3441 | Fixed | Torrent Info : Horizontal View (patch) | fastrizwaan | |
Description |
Please Allow Horizontal Torrent Info, as Vertical Notebook is too cramped up. |
|||
#3440 | Fixed | charset should be ignored for application/x-bittorrent | megaksa | |
Description |
deluge version: 2.0.4.dev38 on Arch Linux. I'm used to use delugesiphon Chrome plugin to add new torrents to server. However after switching to Arch which has latest deluge, the plugin doesn't work anymore for rutracker.org. After the investigation I've found the issue to be deluge itself. httpdownloader. When requesting torrent download rutracker responds with the header: Content-Type: application/x-bittorrent; charset=Windows-1251 While providing charset for this content type IMO doesn't make sense, I suggest to not do re-encoding to UTF-8 for anything besides 'text/...' MIME types. Attached is a suggested fix produced by diff /usr/lib/python3.8/site-packages/deluge/httpdownloader.py /usr/lib/python3.8/site-packages/deluge/httpdownloader_fixed.py |
|||
#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' |