diff --git a/TODO b/TODO index 488a6d8d8..61b576553 100644 --- a/TODO +++ b/TODO @@ -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 \ No newline at end of file +- Update v0.9.0 changelog after its release +- Display Url seeds in torrent properties and allow to edit them \ No newline at end of file diff --git a/src/createtorrent_imp.cpp b/src/createtorrent_imp.cpp index 55103f609..d1c892be2 100644 --- a/src/createtorrent_imp.cpp +++ b/src/createtorrent_imp.cpp @@ -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);