Skip to content

Commit

Permalink
v9.8
Browse files Browse the repository at this point in the history
- DietPi-Software | NoMachine: Resolved an issue where the installation failed due to an outdated download URL. Many thanks to @tzvi208 for reporting this issue: #7198
  • Loading branch information
MichaIng committed Aug 26, 2024
1 parent fe82d8a commit 40050a2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
v9.8
(2024-09-XX)

Enhancements:

Bug fixes:
- DietPi-Software | NoMachine: Resolved an issue where the installation failed due to an outdated download URL. Many thanks to @tzvi208 for reporting this issue: https://github.com/MichaIng/DietPi/issues/7198

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.7
(2024-08-25)

Expand Down
4 changes: 2 additions & 2 deletions dietpi/dietpi-software
Original file line number Diff line number Diff line change
Expand Up @@ -3258,12 +3258,12 @@ _EOF_

if To_Install 30 # NoMachine
then
local version='8.11.3_3' # https://downloads.nomachine.com/
local version='8.13.1_1' # https://downloads.nomachine.com/
case $G_HW_ARCH in
1) local url="Raspberry/nomachine_${version}_armv6hf";;
2) local url="Arm/nomachine_${version}_armhf";;
3) local url="Arm/nomachine_${version}_arm64";;
*) version='8.11.3_4'; local url="Linux/nomachine_${version}_amd64";;
*) local url="Linux/nomachine_${version}_amd64";;
esac
Download_Install "https://download.nomachine.com/download/${version%.*}/$url.deb"
aSTART_SERVICES+=('nxserver')
Expand Down

0 comments on commit 40050a2

Please sign in to comment.