Skip to content

Commit 1f4419f

Browse files
committed
Init v10.2
1 parent bafc5da commit 1f4419f

File tree

4 files changed

+26
-5
lines changed

4 files changed

+26
-5
lines changed

.meta/dietpi-survey_report

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,8 +600,14 @@ shopt -s extglob # +(expr) syntax
600600
done
601601
aSOFTWARE_NAME10_1[214]='WhoDB'
602602

603+
aSOFTWARE_NAME10_2=()
604+
for i in "${!aSOFTWARE_NAME10_1[@]}"
605+
do
606+
aSOFTWARE_NAME10_2[i]=${aSOFTWARE_NAME10_1[i]}
607+
done
608+
603609
# Pre-create software counter array so that we can see also software (available in newest version) with 0 installs
604-
for i in "${aSOFTWARE_NAME10_1[@]}"
610+
for i in "${aSOFTWARE_NAME10_2[@]}"
605611
do
606612
aSOFTWARE[$i]=0
607613
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=10
5-
G_REMOTE_VERSION_SUB=1
6-
G_REMOTE_VERSION_RC=2
5+
G_REMOTE_VERSION_SUB=2
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: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
v10.2
2+
(2026-03-21)
3+
4+
New images:
5+
6+
New software:
7+
8+
Enhancements:
9+
10+
Bug fixes:
11+
12+
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
13+
14+
-----------------------------------------------------------------------------------------------------------
15+
116
v10.1
217
(2026-02-21)
318

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=1
58-
[[ $G_DIETPI_VERSION_RC ]] || G_DIETPI_VERSION_RC=2
57+
[[ $G_DIETPI_VERSION_SUB ]] || G_DIETPI_VERSION_SUB=2
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)