1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-02 09:55:55 +00:00

- Updated TODO

This commit is contained in:
Christophe Dumez 2007-03-12 13:41:02 +00:00
parent 14251dd7b0
commit 2aea91822e
2 changed files with 4 additions and 3 deletions

5
TODO
View File

@ -34,12 +34,13 @@
- Option to shutdown computer when downloads are finished - Option to shutdown computer when downloads are finished
- Add a torrent scheduler - Add a torrent scheduler
// in v1.0.0 (partial) or maybe v0.9.0 depending on next libtorrent release date // in v1.0.0 (partial)
- Download from RSS feeds (IN PROGRESS) - Download from RSS feeds (IN PROGRESS)
- Move finished torrent to another tab and keep on seeding them even after restart - Move finished torrent to another tab and keep on seeding them even after restart
- Allow to edit the trackers for a torrent - Allow to edit the trackers for a torrent
- Improve torrent creation dialog
// In v0.9.0 // In v0.9.0
- Update translations (FR, SV, NB, PL done) - Update translations (FR, SV, NB, PL done)
- Splitting torrent part from GUI (bug squashing + cleanup) - Bug squashing
- Wait for libtorrent v0.12 official release - Wait for libtorrent v0.12 official release

View File

@ -133,6 +133,6 @@ void createtorrent::on_createButton_clicked(){
catch (std::exception& e){ catch (std::exception& e){
std::cerr << e.what() << "\n"; std::cerr << e.what() << "\n";
} }
QMessageBox::information(0, tr("Torrent creation"), tr("Torrent was created successfully:")+" "+destination);
hide(); hide();
QMessageBox::information(0, tr("Torrent creation"), tr("Torrent was created successfully:")+" "+destination);
} }