1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-10 14:57:52 +00:00

- Updated TODO

- Added a message box to display errors for torrent creation
This commit is contained in:
Christophe Dumez 2007-03-25 23:22:10 +00:00
parent d2d3968b8b
commit 1502bcb5d4
2 changed files with 9 additions and 2 deletions

8
TODO
View File

@ -31,8 +31,12 @@
// in v0.10 (partial)
- Download from RSS feeds (WIP by gtsoul in RSS_SUPPORT branch)
- Move finished torrent to another tab and keep on seeding them even after restart
- Improve torrent creation dialog (look & features)
- Improve torrent creation dialog (look & features) :
- Add Private combobox (allow to share on DHT or not)
- Use a QListWidget to allow multiple input paths
- Possibility to add url seeds
- Add IPv6 support (at least start working on it)
- UPnP support (debug, sync with aMule CVS, option entry)
- Allow user to change application style? (WinXP, MacOS, CleanLooks...) : app.setStyle(new QCleanlooksStyle());
- Update v0.9.0 changelog after its release
- Update v0.9.0 changelog after its release
- Display Url seeds in torrent properties and allow to edit them

View File

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