merged changes from RC_1_0

This commit is contained in:
Arvid Norberg 2015-03-22 04:34:11 +00:00
parent 9af3066b56
commit a516bf46e5
5 changed files with 9 additions and 9 deletions

View File

@ -56,6 +56,8 @@
* almost completely changed the storage interface (for custom storage)
* added support for hashing pieces in multiple threads
1.0.4 release
* fix bug in python binding for file_progress on torrents with no metadata
* fix assert when removing a connected web seed
* fix bug in tracker timeout logic

View File

@ -21,7 +21,6 @@
* `report bugs`_
* `sourceforge page`_
* `blog`_
* `wiki`_
--------
@ -83,8 +82,7 @@ libtorrent
.. _archive: http://dir.gmane.org/gmane.network.bit-torrent.libtorrent
.. _`who's using libtorrent?`: projects.html
.. _`report bugs`: http://code.google.com/p/libtorrent/issues/entry
.. _sourceforge page: http://www.sourceforge.net/projects/libtorrent
.. _wiki: http://code.google.com/p/libtorrent/wiki/index
.. _sourceforge page: http://sourceforge.net/projects/libtorrent
.. _blog: http://blog.libtorrent.org
.. _`ruby bindings`: http://libtorrent-ruby.rubyforge.org/
@ -115,7 +113,7 @@ Support the development of libtorrent
.. raw:: html
<a class="FlattrButton" style="display:none;" href="http://libtorrent.org"></a>
<noscript><a href="http://flattr.com/thing/95662/libtorrent" target="_blank">
<noscript><a href="https://flattr.com/thing/95662/libtorrent" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a></noscript>
@ -133,7 +131,7 @@ license
libtorrent is released under the BSD-license_.
.. _BSD-license: http://www.opensource.org/licenses/bsd-license.php
.. _BSD-license: http://opensource.org/licenses/bsd-license.php
This means that you can use the library in your project without having to
release its source code. The only requirement is that you give credit

View File

@ -61,6 +61,6 @@
</tr>
</table>
</div>
<div id="filler"></div></div>
<div id="filler"></div>
%(body_suffix)s

View File

@ -26,7 +26,7 @@
</table>
<div id="main">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" type="text/javascript"></script>
<!-- libtorrent, 728x90, created 11/12/08 -->
<ins class="adsbygoogle"
style="display:inline-block;width:728px;height:90px"
@ -72,7 +72,7 @@
</tr>
</table>
</div>
<div id="filler"></div></div>
<div id="filler"></div>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>

View File

@ -217,7 +217,7 @@ void traversal_algorithm::start()
{
// in case the routing table is empty, use the
// router nodes in the table
if (m_results.size() < 8) add_router_entries();
if (m_results.size() < 3) add_router_entries();
init();
bool is_done = add_requests();
if (is_done) done();