Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README_PINN.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

The latest version of [PINN](http://downloads.sourceforge.net/projects/pinn/pinn-lite.zip) can be downloaded from [sourceforge](http://www.sourceforge.net/projects/pinn).

This README relates to v3.8
This README relates to v3.9.5

<sup>(PINN-lite does not include any operating systems at all. It is more akin to `NOOBS-lite` rather than `NOOBS`. For that reason, the filename that you download is called `pinn-lite.zip`. More recently, `pinn.zip` has also been made available for download which includes versions of Raspbian and LibreELEC.)</sup>

Expand Down Expand Up @@ -520,6 +520,8 @@ In addition to specifying a list of OS names, some reserved words are also avail

- **showall**: Shows all available installable OSes, whether they are suitable for the current model of Pi or not. Useful for preparing SD cards to be used in other RPis.

- **skipformat**: When a new drive is detected, PINN will prompt to reformat it for use with PINN. If this is not required, add the `skipformat` option, but the drive will not be useable until it has the required format.

- **bootmenutimeout=\<time in secs\>**: Changes the default timeout allowed before an OS is booted without any selection. (If this option is provided with a default sticky OS selected, the menu boot time will be respected, allowing you to choose another OS for this boot only). A value of 0 will wait indefinitely.

- **noobsconfig**: Prevents any noobsconfig customisations from being applied to an OS on installation
Expand Down
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
12 changes: 12 additions & 0 deletions history.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ PINN is a version of the NOOBS Operating System Installer for the Raspberry Pi w

## Change History

### V3.9.5

- **Translation** - Italian updates
- **Translation** - dyanmic updates for wifidialog and virtual keyboard
- **Translation** - Virtual keyboard single keys removed from translation
- **skipformat** - Adding `skipformat` option to cmdline.txt prevents reformatting dialog from showing.

### 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
5 changes: 5 additions & 0 deletions recovery/WidgetKeyboard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -524,10 +524,15 @@ bool WidgetKeyboard::eventFilter(QObject *, QEvent *event)
QWidget::keyPressEvent(keyEvent);
}

if (event && event->type() == QEvent::LanguageChange)
{
retranslateUi(this);
}
return false;
}
#endif


void WidgetKeyboard::keyPressEvent(QKeyEvent *keyEvent)
{
if (keyEvent->key() == Qt::Key_Up)
Expand Down
Loading