add 0.16 release to changelog
This commit is contained in:
@@ -1,3 +1,6 @@
|
|||||||
|
|
||||||
|
0.16 release
|
||||||
|
|
||||||
* lower the default tracker retry intervals
|
* lower the default tracker retry intervals
|
||||||
* support banning web seeds sending corrupt data
|
* support banning web seeds sending corrupt data
|
||||||
* don't let hung outgoing connection attempts block incoming connections
|
* don't let hung outgoing connection attempts block incoming connections
|
||||||
|
@@ -14,7 +14,7 @@ def substitute_file(name):
|
|||||||
l = '#define LIBTORRENT_VERSION_MINOR %d\n' % version[1]
|
l = '#define LIBTORRENT_VERSION_MINOR %d\n' % version[1]
|
||||||
elif '#define LIBTORRENT_VERSION_TINY' in l and name.endswith('.hpp'):
|
elif '#define LIBTORRENT_VERSION_TINY' in l and name.endswith('.hpp'):
|
||||||
l = '#define LIBTORRENT_VERSION_TINY %d\n' % version[2]
|
l = '#define LIBTORRENT_VERSION_TINY %d\n' % version[2]
|
||||||
elif '#define LIBTORRENT_VERSION' in l and name.endswith('.hpp'):
|
elif '#define LIBTORRENT_VERSION ' in l and name.endswith('.hpp'):
|
||||||
l = '#define LIBTORRENT_VERSION "%d.%d.%d.%d"\n' % (version[0], version[1], version[2], version[3])
|
l = '#define LIBTORRENT_VERSION "%d.%d.%d.%d"\n' % (version[0], version[1], version[2], version[3])
|
||||||
elif 'AC_INIT([libtorrent-rasterbar]' in l and name.endswith('.ac'):
|
elif 'AC_INIT([libtorrent-rasterbar]' in l and name.endswith('.ac'):
|
||||||
l = 'AC_INIT([libtorrent-rasterbar],[%d.%d.%d],[arvid@cs.umu.se],\n' % (version[0], version[1], version[2])
|
l = 'AC_INIT([libtorrent-rasterbar],[%d.%d.%d],[arvid@cs.umu.se],\n' % (version[0], version[1], version[2])
|
||||||
|
Reference in New Issue
Block a user