diff --git a/dist/mac/Info.plist b/dist/mac/Info.plist index 38723134a..7394b9f84 100644 --- a/dist/mac/Info.plist +++ b/dist/mac/Info.plist @@ -67,7 +67,7 @@ NSAppleScriptEnabled YES NSHumanReadableCopyright - Copyright © 2006-2019 The qBittorrent project + Copyright © 2006-2020 The qBittorrent project UTExportedTypeDeclarations diff --git a/dist/windows/options.nsi b/dist/windows/options.nsi index f94811988..0afb6dbaa 100644 --- a/dist/windows/options.nsi +++ b/dist/windows/options.nsi @@ -51,7 +51,7 @@ XPStyle on ;Installer Version Information VIAddVersionKey "ProductName" "qBittorrent" VIAddVersionKey "CompanyName" "The qBittorrent project" -VIAddVersionKey "LegalCopyright" "Copyright ©2006-2019 The qBittorrent project" +VIAddVersionKey "LegalCopyright" "Copyright ©2006-2020 The qBittorrent project" VIAddVersionKey "FileDescription" "qBittorrent - A Bittorrent Client" VIAddVersionKey "FileVersion" "${PROG_VERSION}" @@ -67,7 +67,7 @@ VIProductVersion "${PROG_VERSION}.0" InstallDir $PROGRAMFILES64\qBittorrent !endif -; Registry key to check for directory (so if you install again, it will +; Registry key to check for directory (so if you install again, it will ; overwrite the old one automatically) InstallDirRegKey HKLM Software\qbittorrent InstallLocation @@ -85,8 +85,8 @@ RequestExecutionLevel user ;-------------------------------- ;Remember the unistaller/installer language -!define MUI_LANGDLL_REGISTRY_ROOT "HKLM" -!define MUI_LANGDLL_REGISTRY_KEY "Software\qbittorrent" +!define MUI_LANGDLL_REGISTRY_ROOT "HKLM" +!define MUI_LANGDLL_REGISTRY_KEY "Software\qbittorrent" !define MUI_LANGDLL_REGISTRY_VALUENAME "Installer Language" ;-------------------------------- diff --git a/src/gui/aboutdialog.cpp b/src/gui/aboutdialog.cpp index 5d1c3b7eb..d070abef2 100644 --- a/src/gui/aboutdialog.cpp +++ b/src/gui/aboutdialog.cpp @@ -59,7 +59,7 @@ AboutDialog::AboutDialog(QWidget *parent) "" "

") .arg(tr("An advanced BitTorrent client programmed in C++, based on Qt toolkit and libtorrent-rasterbar.") - , tr("Copyright %1 2006-2019 The qBittorrent project").arg(QString::fromUtf8(C_COPYRIGHT)) + , tr("Copyright %1 2006-2020 The qBittorrent project").arg(QString::fromUtf8(C_COPYRIGHT)) , tr("Home Page:") , tr("Forum:") , tr("Bug Tracker:")); diff --git a/src/gui/mainwindow.cpp b/src/gui/mainwindow.cpp index 68bf54e35..e2e3cbe3e 100644 --- a/src/gui/mainwindow.cpp +++ b/src/gui/mainwindow.cpp @@ -1775,6 +1775,7 @@ void MainWindow::on_actionSearchWidget_triggered() #ifdef Q_OS_WIN const QMessageBox::StandardButton buttonPressed = QMessageBox::question(this, tr("Old Python Runtime") , tr("Your Python version (%1) is outdated. Minimum requirement: 2.7.9 / 3.3.0.\nDo you want to install a newer version now?") + .arg(pyInfo.version) , (QMessageBox::Yes | QMessageBox::No), QMessageBox::Yes); if (buttonPressed == QMessageBox::Yes) installPython(); @@ -2011,9 +2012,9 @@ void MainWindow::installPython() setCursor(QCursor(Qt::WaitCursor)); // Download python #ifdef QBT_APP_64BIT - const QString installerURL = "https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe"; + const QString installerURL = "https://www.python.org/ftp/python/3.8.1/python-3.8.1-amd64.exe"; #else - const QString installerURL = "https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe"; + const QString installerURL = "https://www.python.org/ftp/python/3.8.1/python-3.8.1.exe"; #endif Net::DownloadManager::instance()->download( Net::DownloadRequest(installerURL).saveToFile(true) diff --git a/src/qbittorrent.rc b/src/qbittorrent.rc index 6fecfc7c3..a28d0bc8b 100644 Binary files a/src/qbittorrent.rc and b/src/qbittorrent.rc differ diff --git a/src/webui/www/private/views/about.html b/src/webui/www/private/views/about.html index 873b64af0..b7455b6b7 100644 --- a/src/webui/www/private/views/about.html +++ b/src/webui/www/private/views/about.html @@ -2,7 +2,7 @@ qBittorrent Mascot

QBT_TR(An advanced BitTorrent client programmed in C++, based on Qt toolkit and libtorrent-rasterbar.)QBT_TR[CONTEXT=AboutDialog]

-

Copyright (c) 2011-2019 The qBittorrent project

+

Copyright (c) 2011-2020 The qBittorrent project

QBT_TR(Home Page:)QBT_TR[CONTEXT=AboutDialog] https://www.qbittorrent.org

QBT_TR(Bug Tracker:)QBT_TR[CONTEXT=AboutDialog] http://bugs.qbittorrent.org

QBT_TR(Forum:)QBT_TR[CONTEXT=AboutDialog] http://forum.qbittorrent.org