Skip to content

Commit

Permalink
v9.8
Browse files Browse the repository at this point in the history
- DietPi-Software | NoMachine: Our install option will now always download the latest NoMachine version, instead of a hardcoded one depending on the DietPi version. Many thanks to @tzvi208 for for figuring it out to version-agnostic download URLs: #7198
  • Loading branch information
MichaIng committed Sep 1, 2024
1 parent a01ce3a commit 3942854
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ v9.8
(2024-09-XX)

Enhancements:
- DietPi-Software | NoMachine: Our install option will now always download the latest NoMachine version, instead of a hardcoded one depending on the DietPi version. Many thanks to @tzvi208 for for figuring it out to version-agnostic download URLs: https://github.com/MichaIng/DietPi/issues/7198

Bug fixes:
- NanoPi M3/T3 | Resolved an issue where our recent image did not boot because the bootloader did not define a default device tree path anymore. Many thanks to @rozcietrzewiacz for reporting this issue: https://github.com/MichaIng/DietPi/issues/2630#issuecomment-2322085507
Expand Down
11 changes: 5 additions & 6 deletions dietpi/dietpi-software
Original file line number Diff line number Diff line change
Expand Up @@ -3258,14 +3258,13 @@ _EOF_

if To_Install 30 # NoMachine
then
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";;
*) local url="Linux/nomachine_${version}_amd64";;
1) local url='raspberry/v6/deb/nomachine_latest_armv6hf';;
2) local url='arm/v7/deb/nomachine_latest_armhf';;
3) local url='arm/v8/deb/nomachine_latest_arm64';;
*) local url='linux/64/deb/nomachine_latest_amd64';;
esac
Download_Install "https://download.nomachine.com/download/${version%.*}/$url.deb"
Download_Install "https://www.nomachine.com/free/$url.deb"
aSTART_SERVICES+=('nxserver')
fi

Expand Down

0 comments on commit 3942854

Please sign in to comment.