Custom Query (2447 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (469 - 471 of 2447)

Ticket Resolution Summary Owner Reporter
#3271 Fixed Support pygeoip for ip lookups Calum
Description

Alpine linux only packages the pure-python pygeoip as py3-geoip which is not the same as the MaxMind GeoIP (python3-geoip on Ubuntu).

However they packages are compatible with some minor changes:

  • deluge/core/preferencesmanager.py

    diff --git deluge/core/preferencesmanager.py deluge/core/preferencesmanager.py
    index e3c935c99..19dd3b2fb 100644
    (this hunk was shorter than expected)  
    2424from deluge._libtorrent import lt
    2525from deluge.event import ConfigValueChangedEvent
    2626
     27GeoIP = None
    2728try:
    28     import GeoIP
     29    from GeoIP import GeoIP
    2930except ImportError:
    30     GeoIP = None
     31    try:
     32        from pygeoip import GeoIP
     33    except ImportError:
     34        pass
    3135
    3236try:
    3337    from urllib.parse import quote_plus
    def _on_set_geoip_db_location(self, key, geoipdb_path):  
    464469        # Load the GeoIP DB for country look-ups if available
    465470        if os.path.exists(geoipdb_path):
    466471            try:
    467                 self.core.geoip_instance = GeoIP.open(
    468                     geoipdb_path, GeoIP.GEOIP_STANDARD
    469                 )
     472                self.core.geoip_instance = GeoIP(geoipdb_path, 0)
    470473            except AttributeError:
    471474                log.warning('GeoIP Unavailable')
    472475        else:
#2920 Fixed Support lt 1.1 new settings/methods Calum
Description

A lot of progress has been made and the develop branch now has almost full support for lt1.1 with only a few outstanding deprecated items to deal with.

  • Session stats still need converting
  • torrent_info.file_at now uses file_storage and should be able to get the required file_size with index directly.
  • Remove torrent_status.priority and associated config keys.

For reference the PR this ticket was created from: https://github.com/deluge-torrent/deluge/pull/127

#484 Duplicate Support for groups of torrents andar jd@typhon.org
Description

Hi. A nice feature to consider would be groups. One would be able to select one or several torrent and add it or them to a group (an existing group or a new one). Groups would be listed on the left panel (may include a separator under "Checking"). One should then be able to manage torrents as currently doing for a sole torrent (pause, delete, bandwith actions, re-check and the like). Maybe using contextual menus on the groups labels within the left panel for these global actions would be appropriate.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.