mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-22 20:44:15 +00:00
- UpdateRatio only when it is displayed
- Resample favicon to 16x16 before displaying it for better quality - Updated TODO
This commit is contained in:
parent
ea3a635d49
commit
17b8f76dda
2
TODO
2
TODO
@ -47,8 +47,8 @@
|
|||||||
- Windows port (Chris - Peerkoel)
|
- Windows port (Chris - Peerkoel)
|
||||||
- write a patch for file_priority(int index), actual_size();
|
- write a patch for file_priority(int index), actual_size();
|
||||||
- valgrind --tool=memcheck --leak-check=full src/qbittorrent (Looks ok)
|
- valgrind --tool=memcheck --leak-check=full src/qbittorrent (Looks ok)
|
||||||
|
- 134m 35m 16m S 0.3 3.5 4:04.77 qbittorrent
|
||||||
* beta 6
|
* beta 6
|
||||||
- clean rss icons on exit
|
|
||||||
- Translations update (IN PROGRESS)
|
- Translations update (IN PROGRESS)
|
||||||
- Wait for some bug fixes in libtorrent :
|
- Wait for some bug fixes in libtorrent :
|
||||||
- Number of seeds non null for finished torrent (Ticket #122)
|
- Number of seeds non null for finished torrent (Ticket #122)
|
||||||
|
@ -1062,7 +1062,8 @@ void GUI::trackerAuthenticationRequired(QTorrentHandle& h) {
|
|||||||
void GUI::checkConnectionStatus() {
|
void GUI::checkConnectionStatus() {
|
||||||
// qDebug("Checking connection status");
|
// qDebug("Checking connection status");
|
||||||
// Update Ratio
|
// Update Ratio
|
||||||
downloadingTorrentTab->updateRatio();
|
if(getCurrentTabIndex() == 0)
|
||||||
|
downloadingTorrentTab->updateRatio();
|
||||||
// update global informations
|
// update global informations
|
||||||
if(systrayIntegration) {
|
if(systrayIntegration) {
|
||||||
myTrayIcon->setToolTip(QString::fromUtf8("<b>")+tr("qBittorrent")+QString::fromUtf8("</b><br>")+tr("DL speed: %1 KiB/s", "e.g: Download speed: 10 KiB/s").arg(QString(QByteArray::number(BTSession->getPayloadDownloadRate()/1024., 'f', 1)))+QString::fromUtf8("<br>")+tr("UP speed: %1 KiB/s", "e.g: Upload speed: 10 KiB/s").arg(QString(QByteArray::number(BTSession->getPayloadUploadRate()/1024., 'f', 1)))); // tray icon
|
myTrayIcon->setToolTip(QString::fromUtf8("<b>")+tr("qBittorrent")+QString::fromUtf8("</b><br>")+tr("DL speed: %1 KiB/s", "e.g: Download speed: 10 KiB/s").arg(QString(QByteArray::number(BTSession->getPayloadDownloadRate()/1024., 'f', 1)))+QString::fromUtf8("<br>")+tr("UP speed: %1 KiB/s", "e.g: Upload speed: 10 KiB/s").arg(QString(QByteArray::number(BTSession->getPayloadUploadRate()/1024., 'f', 1)))); // tray icon
|
||||||
|
@ -395,6 +395,8 @@ class RssManager : public QObject{
|
|||||||
Image image(QDir::cleanPath(path+".ico").toUtf8().data());
|
Image image(QDir::cleanPath(path+".ico").toUtf8().data());
|
||||||
// Convert to PNG since we can't read ICO format
|
// Convert to PNG since we can't read ICO format
|
||||||
image.magick("PNG");
|
image.magick("PNG");
|
||||||
|
// Resize to 16x16px
|
||||||
|
image.sample(Geometry(16, 16));
|
||||||
image.write(path.toUtf8().data());
|
image.write(path.toUtf8().data());
|
||||||
QFile::remove(path+".ico");
|
QFile::remove(path+".ico");
|
||||||
}catch(Magick::Exception &error_){
|
}catch(Magick::Exception &error_){
|
||||||
|
Loading…
x
Reference in New Issue
Block a user