Skip to content

Commit 07c79a5

Browse files
committed
Version 1.1
1 parent d95af2a commit 07c79a5

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ Application for updating Pine64's Pinecil soldering iron.
44
# Supported platforms
55

66
- [X] Windows 7 - 10 (64-bit)
7-
- [ ] MacOS
7+
- [X] MacOS
88
- [ ] Linux
99

1010
# Screenshots
1111

1212
![Screenshot 1](https://i.imgur.com/WYzyAUE.png)
13+
![Screenshot 2](https://i.imgur.com/BmVQINS.png)

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.0 by gamiee</string>
42+
<string>Pinecil Firmware Updater v1.1 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
@@ -106,7 +106,7 @@ MainWindow::MainWindow(QWidget *parent)
106106
, ui(new Ui::MainWindow)
107107
{
108108
ui->setupUi(this);
109-
this->ConsolePrintInfo("<span style='color: blue;'>Pinecil Firmware Updater v1.0</span>");
109+
this->ConsolePrintInfo("<span style='color: blue;'>Pinecil Firmware Updater v1.1</span>");
110110
this->ConsolePrint("Looking for firmwares and latest version...");
111111

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

0 commit comments

Comments
 (0)