mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-09 05:14:23 +00:00
Merge pull request #9008 from Chocobo1/changelog
Add changelog URL link in updater
This commit is contained in:
commit
731865427e
@ -1835,9 +1835,11 @@ void MainWindow::handleUpdateCheckFinished(bool updateAvailable, QString newVers
|
|||||||
{
|
{
|
||||||
QMessageBox::StandardButton answer = QMessageBox::Yes;
|
QMessageBox::StandardButton answer = QMessageBox::Yes;
|
||||||
if (updateAvailable) {
|
if (updateAvailable) {
|
||||||
answer = QMessageBox::question(this, tr("qBittorrent Update Available"),
|
answer = QMessageBox::question(this, tr("qBittorrent Update Available")
|
||||||
tr("A new version is available.\nDo you want to download %1?").arg(newVersion),
|
, tr("A new version is available.") + "<br/>"
|
||||||
QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes);
|
+ tr("Do you want to download %1?").arg(newVersion) + "<br/><br/>"
|
||||||
|
+ QString("<a href=\"https://www.qbittorrent.org/news.php\">%1</a>").arg(tr("Open changelog..."))
|
||||||
|
, QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes);
|
||||||
if (answer == QMessageBox::Yes) {
|
if (answer == QMessageBox::Yes) {
|
||||||
// The user want to update, let's download the update
|
// The user want to update, let's download the update
|
||||||
ProgramUpdater *updater = dynamic_cast<ProgramUpdater * >(sender());
|
ProgramUpdater *updater = dynamic_cast<ProgramUpdater * >(sender());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user