Skip to content

Commit

Permalink
Init v8.18
Browse files Browse the repository at this point in the history
- DietPi-Software | Restic: Resolved an issue where Restic was installed without executable flag. Many thanks to @ for reporting this issue: #6350
  • Loading branch information
MichaIng committed May 10, 2023
1 parent 3ca3189 commit 6ba1d61
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 6 deletions.
10 changes: 8 additions & 2 deletions .meta/dietpi-survey_report
Original file line number Diff line number Diff line change
Expand Up @@ -663,10 +663,16 @@ shopt -s extglob
aSOFTWARE_NAME8_17[208]='Moonlight (GUI)'
aSOFTWARE_NAME8_17[209]='Restic'

aSOFTWARE_NAME8_18=()
for i in "${!aSOFTWARE_NAME8_17[@]}"
do
aSOFTWARE_NAME8_18[$i]=${aSOFTWARE_NAME8_16[$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_NAME8_17[@]}"
for i in "${aSOFTWARE_NAME8_18[@]}"
do
aSOFTWARE["$i"]=0
aSOFTWARE[i]=0
done

# $1 = File name
Expand Down
4 changes: 2 additions & 2 deletions .update/version
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# shellcheck disable=SC2034
# Available DietPi version
G_REMOTE_VERSION_CORE=8
G_REMOTE_VERSION_SUB=17
G_REMOTE_VERSION_RC=2
G_REMOTE_VERSION_SUB=18
G_REMOTE_VERSION_RC=-1
# Minimum DietPi version to allow update
G_MIN_VERSION_CORE=6
G_MIN_VERSION_SUB=14
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
v8.18
(2023-06-03)

New software:
-

Enhancements:
-

Bug fixes:
- DietPi-Software | Restic: Resolved an issue where Restic was installed without executable flag. Many thanks to @ for reporting this issue: https://github.com/MichaIng/DietPi/pull/6350#issuecomment-1537656560

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

-----------------------------------------------------------------------------------------------------------

v8.17
(2023-05-06)

Expand Down
1 change: 1 addition & 0 deletions dietpi/dietpi-software
Original file line number Diff line number Diff line change
Expand Up @@ -11701,6 +11701,7 @@ _EOF_

local fallback_url="https://github.com/restic/restic/releases/download/v0.15.2/restic_0.15.2_linux_$arch.bz2"
Download_Install "$(curl -sSfL 'https://api.github.com/repos/restic/restic/releases/latest' | mawk -F\" "/^ * \"browser_download_url\": \".*\/restic_[^\"\/]*_linux_$arch\.bz2\"$/{print \$4}")" /usr/local/bin/restic
G_EXEC chmod +x /usr/local/bin/restic
fi

if To_Install 205 # Homer
Expand Down
4 changes: 2 additions & 2 deletions dietpi/func/dietpi-globals
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
[[ -f '/boot/dietpi/.version' ]] && . /boot/dietpi/.version
# - Assign defaults/code version as fallback
[[ $G_DIETPI_VERSION_CORE ]] || G_DIETPI_VERSION_CORE=8
[[ $G_DIETPI_VERSION_SUB ]] || G_DIETPI_VERSION_SUB=17
[[ $G_DIETPI_VERSION_RC ]] || G_DIETPI_VERSION_RC=2
[[ $G_DIETPI_VERSION_SUB ]] || G_DIETPI_VERSION_SUB=18
[[ $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

0 comments on commit 6ba1d61

Please sign in to comment.