diff --git a/ChangeLog b/ChangeLog index 981dc66bd..ee25379a2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ + * fixed uninitialized private flag in torrent_info + * fixed long standing issue with file.cpp on windows. Replaced the low level + io functions used on windows. + * made it possible to associate a name with torrents without metadata. + * improved http-downloading performance by requesting entire pieces via + http. + * added plugin interface for extensions. And changed the interface for + enabling extensions. + release 0.11 * added support for incorrectly encoded paths in torrent files diff --git a/Jamfile b/Jamfile index 4416cfcaa..38d12d1c6 100755 --- a/Jamfile +++ b/Jamfile @@ -53,6 +53,8 @@ SOURCES = http_tracker_connection.cpp udp_tracker_connection.cpp sha1.cpp + metadata_transfer.cpp + logger.cpp ; KADEMLIA_SOURCES = diff --git a/configure.in b/configure.in index 2f4c3b912..6c1cc1b75 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ AC_PREREQ(2.59) AC_INIT(src/torrent.cpp) -AM_INIT_AUTOMAKE(libtorrent, 0.11) +AM_INIT_AUTOMAKE(libtorrent, 0.12) AM_CONFIG_HEADER(config.h) diff --git a/docs/manual.html b/docs/manual.html index 4a009d977..131134acc 100755 --- a/docs/manual.html +++ b/docs/manual.html @@ -32,49 +32,49 @@
  • abort()
  • add_torrent()
  • remove_torrent()
  • -
  • disable_extensions() enable_extension()
  • -
  • set_upload_rate_limit() set_download_rate_limit()
  • -
  • set_max_uploads() set_max_connections()
  • -
  • set_max_half_open_connections()
  • -
  • set_ip_filter()
  • -
  • status()
  • -
  • is_listening() listen_port() listen_on()
  • -
  • pop_alert() set_severity_level()
  • -
  • start_dht() stop_dht() set_dht_settings() dht_state()
  • -
  • add_dht_node() add_dht_router()
  • +
  • set_upload_rate_limit() set_download_rate_limit()
  • +
  • set_max_uploads() set_max_connections()
  • +
  • set_max_half_open_connections()
  • +
  • set_ip_filter()
  • +
  • status()
  • +
  • is_listening() listen_port() listen_on()
  • +
  • pop_alert() set_severity_level()
  • +
  • start_dht() stop_dht() set_dht_settings() dht_state()
  • +
  • add_dht_node() add_dht_router()
  • -
  • entry