Changes between Version 12 and Version 13 of Plan/libtorrent


Ignore:
Timestamp:
01/17/2014 06:33:56 PM (10 years ago)
Author:
Cas
Comment:

more changes committed

Legend:

Unmodified
Added
Removed
Modified
  • Plan/libtorrent

    v12 v13  
    5353}}} 
    5454 
    55 '''core.py, preferencesmanager.py''' - For the python bindings use session.get_settings() 
    56 {{{ 
    57         .def("settings", &session::settings) 
    58 }}} 
    59  
    6055'''preferencesmanager.py''' (set_%s_proxy -> set_proxy) # Same proxy used for all connections now 
    6156{{{ 
     
    6459        .def("set_web_seed_proxy", allow_threads(&session::set_web_seed_proxy)) 
    6560}}} 
    66  
    67 === torrent_handle.cpp === 
    68 '''torrent.py''' - handle().* -> handle.status().*)      
    69 {{{ 
    70         .def("is_seed", _(&torrent_handle::is_seed)) 
    71         .def("is_finished", _(&torrent_handle::is_finished)) 
    72         .def("is_paused", _(&torrent_handle::is_paused)) 
    73         .def("is_auto_managed", _(&torrent_handle::is_auto_managed)) 
    74         .def("has_metadata", _(&torrent_handle::has_metadata)) 
    75 }}}