Browse Source

- BUGFIX: Fixed "Automatically start seeding" feature in torrent creation tool

adaptive-webui-19844
Christophe Dumez 17 years ago
parent
commit
1fbbee794c
  1. 4
      TODO
  2. 1
      src/createtorrent_imp.cpp

4
TODO

@ -57,7 +57,6 @@ @@ -57,7 +57,6 @@
- add qt4-qtconfig as package dependency
RC5
- wait for Ticket #182 Fix
- BUGFIX: Fixed "Automatically start seeding" feature in torrent creation tool
rc4->rc5 changelog:
- BUGFIX: Now filtered don't appear on hard drive anymore (libtorrent >= r1659)
@ -65,4 +64,5 @@ rc4->rc5 changelog: @@ -65,4 +64,5 @@ rc4->rc5 changelog:
- BUGFIX: Fixed an ETA calculation problem when the torrent has filtered files
- BUGFIX: Fixed possible overflow in ETA calculation
- BUGFIX: Fixed "Missing Input path" error when creating a torrent
- BUGFIX: Fixed some notification messages for torrent addition dialog
- BUGFIX: Fixed some notification messages for torrent addition dialog
- BUGFIX: Fixed "Automatically start seeding" feature in torrent creation tool

1
src/createtorrent_imp.cpp

@ -199,6 +199,7 @@ void createtorrent::on_createButton_clicked(){ @@ -199,6 +199,7 @@ void createtorrent::on_createButton_clicked(){
// create the torrent and print it to out
entry e = t->create_torrent();
libtorrent::bencode(std::ostream_iterator<char>(out), e);
out.flush();
if(checkStartSeeding->isChecked())
emit torrent_to_seed(destination);
}

Loading…
Cancel
Save