Skip to content

Commit b3762d0

Browse files
committed
Version v1.2
1 parent ec14bf5 commit b3762d0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

aboutdialog.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
</rect>
4040
</property>
4141
<property name="text">
42-
<string>Pinecil Firmware Updater v1.1 by gamiee</string>
42+
<string>Pinecil Firmware Updater v1.2 by gamiee</string>
4343
</property>
4444
</widget>
4545
<widget class="QLabel" name="label_2">

mainwindow.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ MainWindow::MainWindow(QWidget *parent)
107107
, ui(new Ui::MainWindow)
108108
{
109109
ui->setupUi(this);
110-
this->ConsolePrintInfo("<span style='color: blue;'>Pinecil Firmware Updater v1.1</span>");
110+
this->ConsolePrintInfo("<span style='color: blue;'>Pinecil Firmware Updater v1.2</span>");
111111
this->ConsolePrint("Looking for firmwares and latest version...");
112112

113113
this->networkMgr = new QNetworkAccessManager(this);
@@ -120,7 +120,7 @@ MainWindow::MainWindow(QWidget *parent)
120120
QJsonObject firmware = firmwareValue.toObject();
121121
ui->firmwareComboBox->addItem(firmware["name"].toString(), firmware["file"].toString());
122122
}
123-
if (json["latest_version"].toString() != "1.1") {
123+
if (json["latest_version"].toString() != "1.2") {
124124
QMessageBox msgBox;
125125
msgBox.setText("New version of Pinecil Firmware Updater was found.");
126126
msgBox.setInformativeText("Do you want to download it?");

0 commit comments

Comments
 (0)