Skip to content

Commit 4ca6971

Browse files
committed
Init v10.5
1 parent 6136e24 commit 4ca6971

5 files changed

Lines changed: 23 additions & 5 deletions

File tree

.meta/dietpi-survey_report

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,13 +621,15 @@ shopt -s extglob # +(expr) syntax
621621
aSOFTWARE_NAME10_3[218]='Prometheus'
622622

623623
aSOFTWARE_NAME10_4=()
624+
aSOFTWARE_NAME10_5=()
624625
for i in "${!aSOFTWARE_NAME10_3[@]}"
625626
do
626627
aSOFTWARE_NAME10_4[i]=${aSOFTWARE_NAME10_3[i]}
628+
aSOFTWARE_NAME10_5[i]=${aSOFTWARE_NAME10_4[i]}
627629
done
628630

629631
# Pre-create software counter array so that we can see also software (available in newest version) with 0 installs
630-
for i in "${aSOFTWARE_NAME10_4[@]}"
632+
for i in "${aSOFTWARE_NAME10_5[@]}"
631633
do
632634
aSOFTWARE[$i]=0
633635
done

.update/patches

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2484,7 +2484,10 @@ _EOF_
24842484
done
24852485
done
24862486
fi
2487+
}
24872488

2489+
Patch_10_5()
2490+
{
24882491
# Software updates, migrations and patches
24892492
if [[ -f '/boot/dietpi/.installed' ]]
24902493
then

.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=10
5-
G_REMOTE_VERSION_SUB=4
6-
G_REMOTE_VERSION_RC=2
5+
G_REMOTE_VERSION_SUB=5
6+
G_REMOTE_VERSION_RC=-1
77
# Minimum DietPi version to allow update
88
G_MIN_VERSION_CORE=8
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+
v10.5
2+
(2026-06-13)
3+
4+
Enhancements:
5+
-
6+
7+
Bug fixes:
8+
-
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/XXXX
11+
12+
-----------------------------------------------------------------------------------------------------------
13+
114
v10.4
215
(2026-05-16)
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=10
57-
[[ $G_DIETPI_VERSION_SUB ]] || G_DIETPI_VERSION_SUB=4
58-
[[ $G_DIETPI_VERSION_RC ]] || G_DIETPI_VERSION_RC=2
57+
[[ $G_DIETPI_VERSION_SUB ]] || G_DIETPI_VERSION_SUB=5
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)