mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-11 07:46:17 -07:00
- Updated TODO
- Added a message box to display errors for torrent creation
This commit is contained in:
parent
d2d3968b8b
commit
1502bcb5d4
2 changed files with 9 additions and 2 deletions
8
TODO
8
TODO
|
@ -31,8 +31,12 @@
|
||||||
// in v0.10 (partial)
|
// in v0.10 (partial)
|
||||||
- Download from RSS feeds (WIP by gtsoul in RSS_SUPPORT branch)
|
- 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
|
- 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)
|
- Add IPv6 support (at least start working on it)
|
||||||
- UPnP support (debug, sync with aMule CVS, option entry)
|
- UPnP support (debug, sync with aMule CVS, option entry)
|
||||||
- Allow user to change application style? (WinXP, MacOS, CleanLooks...) : app.setStyle(new QCleanlooksStyle());
|
- 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
|
|
@ -132,6 +132,9 @@ 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 creation was successfully, reason: %1").arg(QString(e.what())));
|
||||||
|
hide();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
hide();
|
hide();
|
||||||
QMessageBox::information(0, tr("Torrent creation"), tr("Torrent was created successfully:")+" "+destination);
|
QMessageBox::information(0, tr("Torrent creation"), tr("Torrent was created successfully:")+" "+destination);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue