Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Init v7.5 #4591

Merged
merged 4 commits into from
Jul 26, 2021
Merged
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
15 changes: 11 additions & 4 deletions .meta/dietpi-survey_report
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -280,7 +280,7 @@ shopt -s extglob
[96]='Samba Server'
[97]='OpenVPN'
[98]='HAProxy'
[99]='EmonPi'
[99]='emonHub'
[100]='PiJuice'
[101]='Logrotate'
[102]='Rsyslog'
Expand All @@ -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'
Expand Down Expand Up @@ -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()
{
Expand Down
4 changes: 2 additions & 2 deletions .update/version
Original file line number Diff line number Diff line change
@@ -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
Expand Down
22 changes: 17 additions & 5 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -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)

Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions dietpi/func/dietpi-globals
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down