Skip to content

Commit 424ba3c

Browse files
authored
Init v9.11 (#7407)
1 parent 962d296 commit 424ba3c

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

.meta/dietpi-survey_report

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -755,8 +755,14 @@ shopt -s extglob
755755
unset -v 'aSOFTWARE_NAME9_10[21]' # Vim-Tiny
756756
unset -v 'aSOFTWARE_NAME9_10[127]' # NeoVim
757757

758+
aSOFTWARE_NAME9_11=()
759+
for i in "${!aSOFTWARE_NAME9_10[@]}"
760+
do
761+
aSOFTWARE_NAME9_11[i]=${aSOFTWARE_NAME9_10[i]}
762+
done
763+
758764
# Pre-create software counter array so that we can see also software (available in newest version) with 0 installs
759-
for i in "${aSOFTWARE_NAME9_10[@]}"
765+
for i in "${aSOFTWARE_NAME9_11[@]}"
760766
do
761767
aSOFTWARE[$i]=0
762768
done

.update/version

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# shellcheck disable=SC2034
33
# Available DietPi version
44
G_REMOTE_VERSION_CORE=9
5-
G_REMOTE_VERSION_SUB=10
6-
G_REMOTE_VERSION_RC=0
5+
G_REMOTE_VERSION_SUB=11
6+
G_REMOTE_VERSION_RC=-1
77
# Minimum DietPi version to allow update
88
G_MIN_VERSION_CORE=7
99
G_MIN_VERSION_SUB=0

CHANGELOG.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
v9.11
2+
(2025-03-08)
3+
4+
Enhancements:
5+
6+
Removed software:
7+
8+
Bug fixes:
9+
10+
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
11+
12+
-----------------------------------------------------------------------------------------------------------
13+
114
v9.10
215
(2025-02-09)
316

dietpi/func/dietpi-globals

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
[[ -f '/boot/dietpi/.version' ]] && . /boot/dietpi/.version
5555
# - Assign defaults/code version as fallback
5656
[[ $G_DIETPI_VERSION_CORE ]] || G_DIETPI_VERSION_CORE=9
57-
[[ $G_DIETPI_VERSION_SUB ]] || G_DIETPI_VERSION_SUB=10
58-
[[ $G_DIETPI_VERSION_RC ]] || G_DIETPI_VERSION_RC=0
57+
[[ $G_DIETPI_VERSION_SUB ]] || G_DIETPI_VERSION_SUB=11
58+
[[ $G_DIETPI_VERSION_RC ]] || G_DIETPI_VERSION_RC=-1
5959
[[ $G_GITBRANCH ]] || G_GITBRANCH='master'
6060
[[ $G_GITOWNER ]] || G_GITOWNER='MichaIng'
6161
# - Save current version and Git branch

0 commit comments

Comments
 (0)