Browse Source

- Updated TODO

- Added a message box to display errors for torrent creation
adaptive-webui-19844
Christophe Dumez 18 years ago
parent
commit
1502bcb5d4
  1. 8
      TODO
  2. 3
      src/createtorrent_imp.cpp

8
TODO

@ -31,8 +31,12 @@ @@ -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

3
src/createtorrent_imp.cpp

@ -132,6 +132,9 @@ void createtorrent::on_createButton_clicked(){ @@ -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);

Loading…
Cancel
Save