1
mirror of https://github.com/qbittorrent/qBittorrent synced 2025-10-21 13:52:16 +02:00

Compare commits

..

5 Commits

Author SHA1 Message Date
Christophe Dumez
8b53028828 Fix DHT wrongly reported as disabled for magnet links (closes #987340) 2012-07-14 17:41:15 +03:00
Christophe Dumez
17b7ff3fd2 Fix possible model update problem when setting the priority of a folder in torrent content 2012-07-02 22:52:55 +03:00
Christophe Dumez
9ca171c96f Update Changelog 2012-07-02 20:57:39 +03:00
Christophe Dumez
cfd2576002 Fix issue when "minimize to systray" and "start minimized" are both enabled.
Window could not be restored.
2012-07-02 20:56:27 +03:00
Christophe Dumez
ca0af8c858 Update Python version for Windows 2012-07-01 16:07:02 +03:00
5 changed files with 14 additions and 7 deletions

View File

@@ -1,4 +1,7 @@
* Sun Jul 1 2012 - Christophe Dumez <chris@qbittorrent.org> - v2.9.11
* Unreleased - Christophe Dumez <chris@qbittorrent.org> - v2.9.12
- BUGFIX: Fix issue when "Minimize to tray" and "Start minimized" are both enabled
* Sun Jul 1 2012 - Christophe Dumez <chris@qbittorrent.org> - v2.9.11
- BUGFIX: Fix unreversible "Minimize to tray" on some window managers
- BUGFIX: Fix torrent availability computation (closes #988869)
- BUGFIX: Bring window to front after restoring from systray

View File

@@ -255,9 +255,13 @@ MainWindow::MainWindow(QWidget *parent, QStringList torrentCmdLine) : QMainWindo
readSettings();
if(!ui_locked) {
if(pref.startMinimized() && systrayIcon)
showMinimized();
else {
if(pref.startMinimized() && systrayIcon) {
show();
minimizeWindow();
// XXX: Using showMinimized() makes it impossible to restore
// the window if "Minimize to systray" is enabled.
//showMinimized();
} else {
show();
activateWindow();
raise();

View File

@@ -202,7 +202,7 @@ void TrackerList::loadStickyItems(const QTorrentHandle &h) {
++nb_pex;
}
// load DHT information
if(QBtSession::instance()->isDHTEnabled() && h.has_metadata() && !h.priv()) {
if (QBtSession::instance()->isDHTEnabled() && !h.priv()) {
dht_item->setText(COL_STATUS, tr("Working"));
} else {
dht_item->setText(COL_STATUS, tr("Disabled"));

View File

@@ -143,7 +143,7 @@ void SearchEngine::installPython() {
DownloadThread *pydownloader = new DownloadThread(this);
connect(pydownloader, SIGNAL(downloadFinished(QString,QString)), this, SLOT(pythonDownloadSuccess(QString,QString)));
connect(pydownloader, SIGNAL(downloadFailure(QString,QString)), this, SLOT(pythonDownloadFailure(QString,QString)));
pydownloader->downloadUrl("http://python.org/ftp/python/2.7.2/python-2.7.2.msi");
pydownloader->downloadUrl("http://python.org/ftp/python/2.7.3/python-2.7.3.msi");
}
void SearchEngine::pythonDownloadSuccess(QString url, QString file_path) {

View File

@@ -415,7 +415,7 @@ public:
item->setPriority(prio::IGNORED);
else
item->setPriority(prio::NORMAL);
emit dataChanged(this->index(0,0), this->index(rowCount(), columnCount()));
emit dataChanged(this->index(0,0), this->index(rowCount()-1, columnCount()-1));
emit filteredFilesChanged();
}
return true;