Skip to content

Commit fc924cc

Browse files
committed
Merge branch 'rel_394' into pinn2
2 parents a11aacc + cea722f commit fc924cc

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

buildroot/package/rpi-firmware/rpi-firmware.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#RPI_FIRMWARE_VERSION = 1eb8921ae7158249894f89e8bb6c4bfb04ec7377
1010
#RPI_FIRMWARE_VERSION = cfdbadea5f74c16b7ed5d3b4866092a054e3c3bf
1111
#RPI_FIRMWARE_VERSION = 191360eaf2e5933eaa0ed76ac0d62722b6f9a58f
12-
RPI_FIRMWARE_VERSION = 191360eaf2e5933eaa0ed76ac0d62722b6f9a58f
12+
RPI_FIRMWARE_VERSION = b9dbcb006701e55e660656204afd4ebd6adecdf8
1313
RPI_FIRMWARE_SITE = $(call github,raspberrypi,firmware,$(RPI_FIRMWARE_VERSION))
1414
RPI_FIRMWARE_LICENSE = BSD-3c
1515
RPI_FIRMWARE_LICENSE_FILES = boot/LICENCE.broadcom

history.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ PINN is a version of the NOOBS Operating System Installer for the Raspberry Pi w
55

66
## Change History
77

8+
### V3.9.4
9+
10+
- **Firmware** - Updated firmware to allow [pi5] condition
11+
- **Translation** - Fixed translation of group tab names
12+
813
### V3.9.3
914

1015
- **Translation** - Updated Chinese translation

recovery/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
/* Version number displayed in the title bar */
6-
#define VERSION_NUMBER "3.9.3"
6+
#define VERSION_NUMBER "3.9.4"
77

88
/* Color of the background */
99
// #define BACKGROUND_COLOR Qt::white

recovery/osgroup.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,8 @@ void OsGroup::newTab(const QString &tabName)
151151
connect(list, SIGNAL(itemChanged(QListWidgetItem *)), _mw, SLOT(on_list_itemChanged(QListWidgetItem *)));
152152

153153
//Add the new tab to TW
154-
tabs->addTab(list,tabName);
154+
QString title(tabName);
155+
tabs->addTab(list,qApp->translate("OsGroup", qPrintable(title)));
155156
tabMap[tabName] = list;
156157
}
157158
}

0 commit comments

Comments
 (0)