@@ -1,3 +1,16 @@ | |||||
btpd 0.16: | |||||
---------- | |||||
Misc: | |||||
- Added "start all" (start -a) command. | |||||
- Allow adding multiple torrents at once. | |||||
- Custom list formatting options. | |||||
- Man pages for btpd, btcli, and btinfo. | |||||
Bug fixes: | |||||
- Handle .torrent files larger than 2MB. | |||||
- http parsing and addrinfo freeing fixes. | |||||
btpd 0.15: | btpd 0.15: | ||||
---------- | ---------- | ||||
@@ -2,6 +2,8 @@ The btpd software is distributed under the following terms: | |||||
Copyright (c) 2005-2009 | Copyright (c) 2005-2009 | ||||
Richard Nyberg <rnyberg@murmeldjur.se>. All rights reserved. | Richard Nyberg <rnyberg@murmeldjur.se>. All rights reserved. | ||||
Copyright (c) 2010 | |||||
Marq Schneider <queueRAM@gmail.com>. All rights reserved. | |||||
Redistribution and use in source and binary forms, with or without | Redistribution and use in source and binary forms, with or without | ||||
modification, are permitted provided that the following conditions | modification, are permitted provided that the following conditions | ||||
@@ -2,7 +2,7 @@ | |||||
README | README | ||||
btpd version 0.15 | |||||
btpd version 0.16 | |||||
Contents | Contents | ||||
@@ -130,6 +130,9 @@ Contents | |||||
Same as above but only for active torrents. | Same as above but only for active torrents. | ||||
# btcli list -a | # btcli list -a | ||||
Same as above, but print using a custom format | |||||
# btcli list -a -f "btcli list -f "%n\t%#\t%p%s\t%r\n" | |||||
Add foo.torrent, with content dir foo.torrent.d, and start it. | Add foo.torrent, with content dir foo.torrent.d, and start it. | ||||
# btcli add -d foo.torrent.d foo.torrent | # btcli add -d foo.torrent.d foo.torrent | ||||
@@ -1,5 +1,5 @@ | |||||
AC_PREREQ(2.61) | AC_PREREQ(2.61) | ||||
AC_INIT(btpd, 0.15, btpd@murmeldjur.se) | |||||
AC_INIT(btpd, 0.16, btpd-users@googlegroups.com) | |||||
AM_INIT_AUTOMAKE([1.10 foreign subdir-objects]) | AM_INIT_AUTOMAKE([1.10 foreign subdir-objects]) | ||||
@@ -1,4 +1,4 @@ | |||||
.TH BTCLI "1" "2010\-07\-15" "BitTorrent Protocol Daemon 0.15" "User Commands" | |||||
.TH BTCLI "1" "2010\-07\-31" "BitTorrent Protocol Daemon 0.16" "User Commands" | |||||
.\" disable hyphenation | .\" disable hyphenation | ||||
.nh | .nh | ||||
.\" adjust text to left margin only | .\" adjust text to left margin only | ||||
@@ -1,4 +1,4 @@ | |||||
.TH BTINFO "1" "2010\-07\-15" "BitTorrent Protocol Daemon 0.15" "User Commands" | |||||
.TH BTINFO "1" "2010\-07\-31" "BitTorrent Protocol Daemon 0.16" "User Commands" | |||||
.\" disable hyphenation | .\" disable hyphenation | ||||
.nh | .nh | ||||
.\" adjust text to left margin only | .\" adjust text to left margin only | ||||
@@ -1,4 +1,4 @@ | |||||
.TH BTPD "1" "2010\-07\-15" "BitTorrent Protocol Daemon 0.15" "User Commands" | |||||
.TH BTPD "1" "2010\-07\-31" "BitTorrent Protocol Daemon 0.16" "User Commands" | |||||
.\" disable hyphenation | .\" disable hyphenation | ||||
.nh | .nh | ||||
.\" adjust text to left margin only | .\" adjust text to left margin only | ||||