From 74fab85a0b33e9b0e84c24ed34fbe637f3739256 Mon Sep 17 00:00:00 2001 From: MichaIng Date: Mon, 26 Jul 2021 12:23:42 +0200 Subject: [PATCH 1/4] v7.5 + CHANGELOG | Init v7.5 block + CHANGELOG | Roon Extension Manager: Resolved an issue where the installer failed when dietpi-software was executed with sudo as unprivileged user. --- CHANGELOG.txt | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index eab88e7ef6..affe404e98 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,20 @@ +v7.5 +(2021-08-21) + +Changes: + +Fixes: +- DietPi-Software | Roon Extension Manager: Resolved an issue where the installer failed when dietpi-software was executed with sudo as unprivileged user. The installer internally uses the SUDO_USER variable to perform some tasks, which fails to download the container startup shell script, as only root can write to the download location. Many thanks to @Esad-np for reporting this issue: https://github.com/MichaIng/DietPi/issues/4462 + +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/XXXX + +Known/Outstanding Issues: +- DietPi-Config | Enabling WiFi + Ethernet adapters, both on different subnets, breaks WiFi connection in some cases: https://github.com/MichaIng/DietPi/issues/2103 + +For all additional issues that may appear after release, please see the following link for active tickets: https://github.com/MichaIng/DietPi/issues + +----------------------------------------------------------------------------------------------------------- + v7.4 (2021-07-24) @@ -23,11 +40,6 @@ Fixes: 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/4584 -Known/Outstanding Issues: -- DietPi-Config | Enabling WiFi + Ethernet adapters, both on different subnets, breaks WiFi connection in some cases: https://github.com/MichaIng/DietPi/issues/2103 - -For all additional issues that may appear after release, please see the following link for active tickets: https://github.com/MichaIng/DietPi/issues - ----------------------------------------------------------------------------------------------------------- v7.3 From bc494d74027d3b121c9f6d40d73046e903e9cec6 Mon Sep 17 00:00:00 2001 From: MichaIng Date: Mon, 26 Jul 2021 12:40:26 +0200 Subject: [PATCH 2/4] v7.5 + DietPi-Survey_report | Init v7.5 support --- .meta/dietpi-survey_report | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.meta/dietpi-survey_report b/.meta/dietpi-survey_report index 70ad0240d1..a5caff8763 100644 --- a/.meta/dietpi-survey_report +++ b/.meta/dietpi-survey_report @@ -187,7 +187,7 @@ shopt -s extglob [3]='MC' [4]='ViFM' [5]='ALSA' - [6]='X.Org X server' + [6]='X.Org X Server' [7]='FFmpeg' [8]='Java' [9]='Node.js' @@ -280,7 +280,7 @@ shopt -s extglob [96]='Samba Server' [97]='OpenVPN' [98]='HAProxy' - [99]='EmonPi' + [99]='emonHub' [100]='PiJuice' [101]='Logrotate' [102]='Rsyslog' @@ -304,7 +304,7 @@ shopt -s extglob [120]='RealVNC Server' [121]='Roon Bridge' [122]='Node-RED' - [123]='Mosquitto ' + [123]='Mosquitto' [124]='NAA daemon' [125]='Tomcat 8' [126]='LibSSL1.0.0' @@ -538,9 +538,16 @@ shopt -s extglob done aSOFTWARE_NAME7_4[125]='Synapse Server' aSOFTWARE_NAME7_4[194]='PostgreSQL' - # shellcheck disable=SC2034 aSOFTWARE_NAME7_4[195]='youtube-dl' + # v7.5 + aSOFTWARE_NAME7_5=() + for i in "${!aSOFTWARE_NAME7_4[@]}" + do + # shellcheck disable=SC2034 + aSOFTWARE_NAME7_5[$i]=${aSOFTWARE_NAME7_4[$i]} + done + # $1 = File name Process_File() { From 23cee218977426e8034057af787e631bdf6acee6 Mon Sep 17 00:00:00 2001 From: MichaIng Date: Mon, 26 Jul 2021 12:41:06 +0200 Subject: [PATCH 3/4] v7.5 + DietPi-Globals | Init v7.5 --- dietpi/func/dietpi-globals | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dietpi/func/dietpi-globals b/dietpi/func/dietpi-globals index f9f55fbc2a..90af43bc2d 100644 --- a/dietpi/func/dietpi-globals +++ b/dietpi/func/dietpi-globals @@ -56,8 +56,8 @@ [[ -f '/boot/dietpi/.version' ]] && . /boot/dietpi/.version # - Assign defaults/code version as fallback [[ $G_DIETPI_VERSION_CORE ]] || G_DIETPI_VERSION_CORE=7 - [[ $G_DIETPI_VERSION_SUB ]] || G_DIETPI_VERSION_SUB=4 - [[ $G_DIETPI_VERSION_RC ]] || G_DIETPI_VERSION_RC=2 + [[ $G_DIETPI_VERSION_SUB ]] || G_DIETPI_VERSION_SUB=5 + [[ $G_DIETPI_VERSION_RC ]] || G_DIETPI_VERSION_RC=-1 [[ $G_GITBRANCH ]] || G_GITBRANCH='master' [[ $G_GITOWNER ]] || G_GITOWNER='MichaIng' # - Save current version and Git branch From 17eb6130bc8c40b0d099397ee2a2b04af911cb4a Mon Sep 17 00:00:00 2001 From: MichaIng Date: Mon, 26 Jul 2021 12:42:32 +0200 Subject: [PATCH 4/4] v7.5 + Init v7.5 --- .update/version | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.update/version b/.update/version index 4cfe9969d2..0f43325d36 100644 --- a/.update/version +++ b/.update/version @@ -1,7 +1,7 @@ # Available DietPi version G_REMOTE_VERSION_CORE=7 -G_REMOTE_VERSION_SUB=4 -G_REMOTE_VERSION_RC=2 +G_REMOTE_VERSION_SUB=5 +G_REMOTE_VERSION_RC=-1 # Minimum DietPi version to allow update G_MIN_VERSION_CORE=6 G_MIN_VERSION_SUB=0