Skip to content

Commit

Permalink
Releasenotes v9.2 (#985)
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanStS authored Mar 17, 2024
1 parent 8fcdd8d commit 5205812
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Balena
balenaEtcher
baudrate
Bazarr
bcm
BeagleBone
Beelink
binfmt
Expand Down Expand Up @@ -244,6 +245,7 @@ HTPC
HTTPS
IceCast
ICMP
IEC
Imager
Imgur
InfluxData
Expand Down Expand Up @@ -450,6 +452,7 @@ pasja
passwd
passwordless
PCIe
PCM
petitboot
Personalisation
phpBB
Expand Down Expand Up @@ -702,6 +705,7 @@ UTM
UUID
Vae
vaultwarden
VC
VCSM
VHDX
vhost
Expand Down
Binary file added docs/assets/images/dietpi-release-v9_02.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ description: Overview of DietPi releases with applied new software and features,

# DietPi Releases

- [v9.2 March 2024](releases/v9_2.md)
- [v9.1 February 2024](releases/v9_1.md)
- [v9.0 January 2024](releases/v9_0.md)
- [v8.25 December 2023](releases/v8_25.md)
Expand Down
31 changes: 31 additions & 0 deletions docs/releases/v9_2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Release Notes

## March 2024 (version 9.2)

### Overview

The **March 16th, 2024** release of **DietPi v9.2** comes with a enhanced **NanoPi R4S** image. Additionally, enhancements and bug fixes for several `dietpi-software` options are included.

![Raspberry Pi 3A+ on a tree](../assets/images/dietpi-release-v9_02.jpg){: width="800" height="600" loading="lazy"}

!!! cite "*Photo by `StephanStS`, DietPi*"

### Enhancements

- [**DietPi-Tools**](../dietpi_tools.md) | [**DietPi-Banner**](../dietpi_tools/misc_tools.md#dietpi-banner) :octicons-arrow-right-16: Support for showing the current RAM usage was added. Many thanks to @Andr3Carvalh0 for the implementation: <https://github.com/MichaIng/DietPi/pull/6844>
- [**DietPi-Software**](../dietpi_tools/software_installation.md#dietpi-software) :octicons-arrow-right-16: It is now possible to run `dietpi-software list` concurrent to other dietpi-software instances, and as non-root user. This avoids an issue in DietPi-Dashboard, where opening dietpi-software in the Terminal and switching to the Software page, caused an infinite hang.
- [**DietPi-Software**](../dietpi_tools/software_installation.md#dietpi-software) | [**Gogs**](../software/cloud.md#gogs)/[**Gitea**](../software/cloud.md#gitea) :octicons-arrow-right-16: Using repositories via SSH should now work OOTB with new installs and reinstalls. If pull or push operations via SSH fail in your case, try to give the respective user a default shell: `sudo usermod -s /bin/dash gogs` respectively `sudo usermod -s /bin/dash gitea`. This is now included in our default setup. Many thanks to @din14970 for reporting this missing feature: <https://github.com/MichaIng/DietPi/discussions/6964#discussioncomment-8813390>

### Bug fixes

- [**NanoPi R4S**](../hardware.md#nanopi-series-friendlyelec) :octicons-arrow-right-16: Resolved an issue where Ethernet adapter of the "LAN" port could disappear after a soft reboot. Many thanks to @idaanx for reporting this issue: <https://github.com/MichaIng/DietPi/issues/6342>
- **DietPi-Globals** :octicons-arrow-right-16: Resolved an issue where a concurrent DietPi script detection could have prevented the start of a script, if a previous instance was killed via `SIGKILL`.
- [**DietPi-Tools**](../dietpi_tools.md) | [**DietPi-Config**](../dietpi_tools/system_configuration.md#dietpi-config) :octicons-arrow-right-16: Resolved an issue where a WiFi connection, configured for the first time via dietpi-config from a local terminal session, was automatically stopped when exiting or logging out from the terminal session.
- [**DietPi-Tools**](../dietpi_tools.md) | [**DietPi-Config**](../dietpi_tools/system_configuration.md#dietpi-config) :octicons-arrow-right-16: Resolved an issue on RPi systems, where HDMI audio did not work if full KMS was enabled. The firmware/bcm2835 HDMI audio driver conflicts with the full KMS display driver, hence the VC4 HDMI driver needs to be used instead. That one however only supports the IEC958 audio format, which requires a complex ALSA config. This config is shipped with the `libasound2-data` package of the RPi APT repository, but it was overwritten by our `/etc/asound.conf`. For HDMI audio to work with KMS, the `default` or `sysdefault` ALSA PCM needs to be used by players. This is usually the case, but some allow to select a specific sound card, in which case the ALSA config and plugin for IEC958 conversion is bypassed, breaking HDMI audio. Many thanks to [@Lollly2997](https://dietpi.com/forum/u/Lollly2997){: class="nospellcheck"} for reporting this issue. We are working with Amiberry on a solution for Amiberry in particular. This fix is for the underlying system level: <https://dietpi.com/forum/t/19568>
- [**DietPi-Software**](../dietpi_tools/software_installation.md#dietpi-software) | [**PaperMC**](../software/gaming.md#papermc) :octicons-arrow-right-16: Resolved an issue where installing the Geyser and Floodgate plugins failed due to changed download URLs, and a false syntax in the Geyser config file. Many thanks to @boterocamilo for reporting this issue: <https://github.com/MichaIng/DietPi/issues/6898>
- [**DietPi-Software**](../dietpi_tools/software_installation.md#dietpi-software) | [**Nextcloud**](../software/cloud.md#nextcloud) :octicons-arrow-right-16: Resolved an issue with the updated Nginx config where assets were served with the wrong MIME type. This fix was backported to v9.1 and a live patch offered. Many thanks to [@howardroark](https://dietpi.com/forum/u/howardroark){: class="nospellcheck"} for reporting this issue: <https://dietpi.com/forum/t/nextcloud-theme-broken-after-upgrade-v9-1-1/19372>
- [**DietPi-Software**](../dietpi_tools/software_installation.md#dietpi-software) | [**Home Assistant**](../software/home_automation.md#home-assistant) :octicons-arrow-right-16: Resolved an issue on x86_64 and ARMv8 systems where some core integrations did not work if no C++ compiler was installed. If you are affected by this, `apt install g++ && systemctl restart home-assistant` will fix it. Many thanks to @pdsakurai for fixing this issue in our install code: <https://github.com/MichaIng/DietPi/pull/6931>
- [**DietPi-Software**](../dietpi_tools/software_installation.md#dietpi-software) | [**IceCast/DarkIce**](../software/media.md#icecast) :octicons-arrow-right-16: Resolved an issue where the service failed to start due to false config file permissions.
- [**DietPi-Software**](../dietpi_tools/software_installation.md#dietpi-software) | [**LXQt**](../software/desktop.md#lxqt) :octicons-arrow-right-16: Resolved an issue where the installation failed on Trixie and RISC-V systems, since we did not host a config archive for those Debian versions yet. Many thanks to @jtmoon79 for reporting this issue: <https://github.com/MichaIng/DietPi/issues/6939>

As always, many smaller code performance and stability improvements, visual and spelling fixes have been done, too much to list all of them here. Check out all code changes of this release on GitHub: <https://github.com/MichaIng/DietPi/pull/6955>
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ nav:
- Miscellaneous Tools: dietpi_tools/misc_tools.md
- RELEASES:
- Overview: releases.md
- v9.2 March 2024: releases/v9_2.md
- v9.1 February 2024: releases/v9_1.md
- v9.0 January 2024: releases/v9_0.md
- v8.25 December 2023: releases/v8_25.md
Expand Down

0 comments on commit 5205812

Please sign in to comment.