mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-31 17:04:34 +00:00
- Updated Changelog / Todo
- Fixed a title boldness in torrent properties
This commit is contained in:
parent
95bc8e513a
commit
ab1d664f07
@ -8,7 +8,7 @@
|
|||||||
- COSMETIC: Redesigned options a little
|
- COSMETIC: Redesigned options a little
|
||||||
- COSMETIC: Display more logs messages concerning features
|
- 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 libtorrent v0.12
|
||||||
- FEATURE: Based on Qt4.2
|
- FEATURE: Based on Qt4.2
|
||||||
- FEATURE: Brand new trayicon from Qt4.2
|
- FEATURE: Brand new trayicon from Qt4.2
|
||||||
@ -37,6 +37,7 @@
|
|||||||
- BUGFIX: Let libtorrent store the torrent handles (save memory)
|
- BUGFIX: Let libtorrent store the torrent handles (save memory)
|
||||||
- BUGFIX: Set DHT Port only when DHT is enabled
|
- BUGFIX: Set DHT Port only when DHT is enabled
|
||||||
- BUGFIX: Made ipfilter.dat parser less sensitive to errors
|
- 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: Added Danish translation
|
||||||
- I18N: Better internationalization thanks to dynamic text support
|
- I18N: Better internationalization thanks to dynamic text support
|
||||||
- COSMETIC: Replaced OSD messages by Qt4.2 systray messages
|
- COSMETIC: Replaced OSD messages by Qt4.2 systray messages
|
||||||
|
5
TODO
5
TODO
@ -37,12 +37,11 @@
|
|||||||
- Possibility to add url seeds
|
- 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)
|
- 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!
|
- 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
|
- 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)
|
- Improve Ipfilter.dat parser (move to a thread ? - too slow to load qBT and more importantly options)
|
||||||
- Use tooltips to explain options
|
- Use tooltips to explain options
|
||||||
- Exit confirmation only if there are active downloads (display number of downloads) - SMARTER
|
- 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)
|
- Update to libtorrent SVN (0.13)
|
||||||
- Use its UPnP/NAT-PMP built-in support instead of ours
|
- 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
|
||||||
|
@ -198,7 +198,7 @@ class misc : public QObject{
|
|||||||
// Take a number of seconds and return an user-friendly
|
// Take a number of seconds and return an user-friendly
|
||||||
// time duration like "1d 2h 10m".
|
// time duration like "1d 2h 10m".
|
||||||
static QString userFriendlyDuration(const long int seconds){
|
static QString userFriendlyDuration(const long int seconds){
|
||||||
if(seconds < 0){
|
if(seconds <= 0){
|
||||||
return QString::QString(tr("Unknown"));
|
return QString::QString(tr("Unknown"));
|
||||||
}
|
}
|
||||||
if(seconds < 60){
|
if(seconds < 60){
|
||||||
|
@ -71,6 +71,12 @@
|
|||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QGroupBox" name="groupTorrentInfos" >
|
<widget class="QGroupBox" name="groupTorrentInfos" >
|
||||||
|
<property name="font" >
|
||||||
|
<font>
|
||||||
|
<weight>75</weight>
|
||||||
|
<bold>true</bold>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
<property name="title" >
|
<property name="title" >
|
||||||
<string>Torrent infos</string>
|
<string>Torrent infos</string>
|
||||||
</property>
|
</property>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user