-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Check on startup (toggleable setting) and manually * Option to check for pre-releases (eg, 2.4.0-beta1) * Only included if WITH_XC_NETWORKING is enabled
- Loading branch information
1 parent
5c9b062
commit 779b529
Showing
17 changed files
with
677 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
* Copyright (C) 2019 KeePassXC Team <team@keepassxc.org> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 or (at your option) | ||
* version 3 of the License. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include "UpdateCheckDialog.h" | ||
#include "ui_UpdateCheckDialog.h" | ||
#include "updatecheck/UpdateChecker.h" | ||
#include "core/FilePath.h" | ||
|
||
UpdateCheckDialog::UpdateCheckDialog(QWidget* parent) | ||
: QDialog(parent) | ||
, m_ui(new Ui::UpdateCheckDialog()) | ||
{ | ||
m_ui->setupUi(this); | ||
setWindowFlags(Qt::Window); | ||
setAttribute(Qt::WA_DeleteOnClose); | ||
|
||
m_ui->iconLabel->setPixmap(filePath()->applicationIcon().pixmap(48)); | ||
|
||
connect(m_ui->buttonBox, SIGNAL(rejected()), SLOT(close())); | ||
connect(UpdateChecker::instance(), SIGNAL(updateCheckFinished(bool, QString, bool)), SLOT(showUpdateCheckResponse(bool, QString))); | ||
} | ||
|
||
void UpdateCheckDialog::showUpdateCheckResponse(bool status, const QString& version) { | ||
m_ui->progressBar->setVisible(false); | ||
m_ui->buttonBox->button(QDialogButtonBox::Cancel)->setText(tr("Close")); | ||
|
||
if (version == QString("error")) { | ||
setWindowTitle(tr("Update Error!")); | ||
|
||
m_ui->statusLabel->setText( | ||
"<strong>" + tr("Update Error!") + "</strong><br><br>" + | ||
tr("An error occurred in retrieving update information.") + "<br>" + | ||
tr("Please try again later.")); | ||
return; | ||
} | ||
|
||
if (status) { | ||
setWindowTitle(tr("Software Update")); | ||
m_ui->statusLabel->setText( | ||
"<strong>" + tr("A new version of KeePassXC is available!") + "</strong><br><br>" + | ||
tr("KeePassXC %1 is now available — you have %2.").arg(version, KEEPASSXC_VERSION) + "<br><br>" + | ||
"<a href='https://keepassxc.org/download/'>" + | ||
tr("Download it at keepassxc.org") + | ||
"</a>"); | ||
} else { | ||
setWindowTitle(tr("You're up-to-date!")); | ||
m_ui->statusLabel->setText(tr( | ||
"KeePassXC %1 is currently the newest version available").arg(KEEPASSXC_VERSION)); | ||
} | ||
} | ||
|
||
UpdateCheckDialog::~UpdateCheckDialog() | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* Copyright (C) 2019 KeePassXC Team <team@keepassxc.org> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 or (at your option) | ||
* version 3 of the License. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#ifndef KEEPASSXC_UPDATECHECKDIALOG_H | ||
#define KEEPASSXC_UPDATECHECKDIALOG_H | ||
|
||
#include <QUrl> | ||
#include <QDialog> | ||
#include <QScopedPointer> | ||
#include "gui/MessageBox.h" | ||
#include "config-keepassx.h" | ||
#include "core/Global.h" | ||
#include "updatecheck/UpdateChecker.h" | ||
|
||
namespace Ui | ||
{ | ||
class UpdateCheckDialog; | ||
} | ||
|
||
class UpdateCheckDialog : public QDialog | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
explicit UpdateCheckDialog(QWidget* parent = nullptr); | ||
~UpdateCheckDialog() override; | ||
|
||
public slots: | ||
void showUpdateCheckResponse(bool status, const QString& version); | ||
|
||
private: | ||
QScopedPointer<Ui::UpdateCheckDialog> m_ui; | ||
}; | ||
|
||
|
||
#endif //KEEPASSXC_UPDATECHECKDIALOG_H |
Oops, something went wrong.