- Updated Changelog / Todo

- Fixed a title boldness in torrent properties
This commit is contained in:
Christophe Dumez 2007-04-02 13:22:48 +00:00
parent 95bc8e513a
commit ab1d664f07
4 changed files with 11 additions and 5 deletions

View file

@ -8,7 +8,7 @@
- COSMETIC: Redesigned options a little
- COSMETIC: Display more logs messages concerning features
* Unknown - Christophe Dumez <chris@qbittorrent.org> - v0.9.0
* Sun Apr 01 2007 - Christophe Dumez <chris@qbittorrent.org> - v0.9.0
- FEATURE: Based on libtorrent v0.12
- FEATURE: Based on Qt4.2
- FEATURE: Brand new trayicon from Qt4.2
@ -37,6 +37,7 @@
- BUGFIX: Let libtorrent store the torrent handles (save memory)
- BUGFIX: Set DHT Port only when DHT is enabled
- BUGFIX: Made ipfilter.dat parser less sensitive to errors
- BUGFIX: Bring main window to foreground when asking for exit confirmation
- I18N: Added Danish translation
- I18N: Better internationalization thanks to dynamic text support
- COSMETIC: Replaced OSD messages by Qt4.2 systray messages

5
TODO
View file

@ -37,12 +37,11 @@
- Possibility to add url seeds
- Add IPv6 support (at least start working on it, libtorrent seems to support it, we should limit our code to IPv4 anymore)
- UPnP support (debug, sync with next aMule release, move to a thread?) : seems to be working!
- Update v0.9.0 changelog after its release
- Display Url seeds in torrent properties and allow to edit them
- Improve Ipfilter.dat parser (move to a thread ? - too slow to load qBT and more importantly options)
- Use tooltips to explain options
- Exit confirmation only if there are active downloads (display number of downloads) - SMARTER
- Display more info in log (UPnP successful)
- Display more info in log (UPnP)
- Update to libtorrent SVN (0.13)
- Use its UPnP/NAT-PMP built-in support instead of ours
- Use some Qt4.3 features if detected (optional, only Qt4.2 should be required)
- Use its piece prioritization support

View file

@ -198,7 +198,7 @@ class misc : public QObject{
// Take a number of seconds and return an user-friendly
// time duration like "1d 2h 10m".
static QString userFriendlyDuration(const long int seconds){
if(seconds < 0){
if(seconds <= 0){
return QString::QString(tr("Unknown"));
}
if(seconds < 60){

View file

@ -71,6 +71,12 @@
</item>
<item>
<widget class="QGroupBox" name="groupTorrentInfos" >
<property name="font" >
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="title" >
<string>Torrent infos</string>
</property>