From 424ba3cfe81e27740025149fe696de0e1c404eb8 Mon Sep 17 00:00:00 2001 From: StephanStS Date: Wed, 12 Feb 2025 22:00:23 +0100 Subject: [PATCH] Init v9.11 (#7407) --- .meta/dietpi-survey_report | 8 +++++++- .update/version | 4 ++-- CHANGELOG.txt | 13 +++++++++++++ dietpi/func/dietpi-globals | 4 ++-- 4 files changed, 24 insertions(+), 5 deletions(-) diff --git a/.meta/dietpi-survey_report b/.meta/dietpi-survey_report index ab4afe172b..4a9d50e780 100755 --- a/.meta/dietpi-survey_report +++ b/.meta/dietpi-survey_report @@ -755,8 +755,14 @@ shopt -s extglob unset -v 'aSOFTWARE_NAME9_10[21]' # Vim-Tiny unset -v 'aSOFTWARE_NAME9_10[127]' # NeoVim + aSOFTWARE_NAME9_11=() + for i in "${!aSOFTWARE_NAME9_10[@]}" + do + aSOFTWARE_NAME9_11[i]=${aSOFTWARE_NAME9_10[i]} + done + # Pre-create software counter array so that we can see also software (available in newest version) with 0 installs - for i in "${aSOFTWARE_NAME9_10[@]}" + for i in "${aSOFTWARE_NAME9_11[@]}" do aSOFTWARE[$i]=0 done diff --git a/.update/version b/.update/version index 694e4a7368..7b29e5dea2 100644 --- a/.update/version +++ b/.update/version @@ -2,8 +2,8 @@ # shellcheck disable=SC2034 # Available DietPi version G_REMOTE_VERSION_CORE=9 -G_REMOTE_VERSION_SUB=10 -G_REMOTE_VERSION_RC=0 +G_REMOTE_VERSION_SUB=11 +G_REMOTE_VERSION_RC=-1 # Minimum DietPi version to allow update G_MIN_VERSION_CORE=7 G_MIN_VERSION_SUB=0 diff --git a/CHANGELOG.txt b/CHANGELOG.txt index b75a2eee6b..3197d47c8d 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,16 @@ +v9.11 +(2025-03-08) + +Enhancements: + +Removed software: + +Bug 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/ADDME + +----------------------------------------------------------------------------------------------------------- + v9.10 (2025-02-09) diff --git a/dietpi/func/dietpi-globals b/dietpi/func/dietpi-globals index be58c97e30..f1c610782f 100644 --- a/dietpi/func/dietpi-globals +++ b/dietpi/func/dietpi-globals @@ -54,8 +54,8 @@ [[ -f '/boot/dietpi/.version' ]] && . /boot/dietpi/.version # - Assign defaults/code version as fallback [[ $G_DIETPI_VERSION_CORE ]] || G_DIETPI_VERSION_CORE=9 - [[ $G_DIETPI_VERSION_SUB ]] || G_DIETPI_VERSION_SUB=10 - [[ $G_DIETPI_VERSION_RC ]] || G_DIETPI_VERSION_RC=0 + [[ $G_DIETPI_VERSION_SUB ]] || G_DIETPI_VERSION_SUB=11 + [[ $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