Skip to content

Commit

Permalink
Merge branch 'rel_394' into pinn2
Browse files Browse the repository at this point in the history
  • Loading branch information
procount committed Jan 7, 2025
2 parents a11aacc + cea722f commit fc924cc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion buildroot/package/rpi-firmware/rpi-firmware.mk
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#RPI_FIRMWARE_VERSION = 1eb8921ae7158249894f89e8bb6c4bfb04ec7377
#RPI_FIRMWARE_VERSION = cfdbadea5f74c16b7ed5d3b4866092a054e3c3bf
#RPI_FIRMWARE_VERSION = 191360eaf2e5933eaa0ed76ac0d62722b6f9a58f
RPI_FIRMWARE_VERSION = 191360eaf2e5933eaa0ed76ac0d62722b6f9a58f
RPI_FIRMWARE_VERSION = b9dbcb006701e55e660656204afd4ebd6adecdf8
RPI_FIRMWARE_SITE = $(call github,raspberrypi,firmware,$(RPI_FIRMWARE_VERSION))
RPI_FIRMWARE_LICENSE = BSD-3c
RPI_FIRMWARE_LICENSE_FILES = boot/LICENCE.broadcom
Expand Down
5 changes: 5 additions & 0 deletions history.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ PINN is a version of the NOOBS Operating System Installer for the Raspberry Pi w

## Change History

### V3.9.4

- **Firmware** - Updated firmware to allow [pi5] condition
- **Translation** - Fixed translation of group tab names

### V3.9.3

- **Translation** - Updated Chinese translation
Expand Down
2 changes: 1 addition & 1 deletion recovery/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


/* Version number displayed in the title bar */
#define VERSION_NUMBER "3.9.3"
#define VERSION_NUMBER "3.9.4"

/* Color of the background */
// #define BACKGROUND_COLOR Qt::white
Expand Down
3 changes: 2 additions & 1 deletion recovery/osgroup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ void OsGroup::newTab(const QString &tabName)
connect(list, SIGNAL(itemChanged(QListWidgetItem *)), _mw, SLOT(on_list_itemChanged(QListWidgetItem *)));

//Add the new tab to TW
tabs->addTab(list,tabName);
QString title(tabName);
tabs->addTab(list,qApp->translate("OsGroup", qPrintable(title)));
tabMap[tabName] = list;
}
}
Expand Down

0 comments on commit fc924cc

Please sign in to comment.