Skip to content
Snippets Groups Projects
Commit 7a4fd0ac authored by Albert Gräf's avatar Albert Gräf Committed by Albert Gräf
Browse files

Downgrade nw.js to 0.28 for now to deal with Linux regressions. macOS stays on 0.71.0.

parent 31896b79
No related branches found
No related tags found
1 merge request!842Apple Silicon support
...@@ -197,6 +197,12 @@ if [ ! -d "../pd/nw/nw" ]; then ...@@ -197,6 +197,12 @@ if [ ! -d "../pd/nw/nw" ]; then
if [[ $osx_version == "10.8" ]]; then if [[ $osx_version == "10.8" ]]; then
# We need the lts version to be able to run on legacy systems. # We need the lts version to be able to run on legacy systems.
nwjs_version="v0.14.7" nwjs_version="v0.14.7"
elif [ $os == "osx" ]; then
# ag: We need a recent version here to make the latest macOS
# versions work. Tested with Mojave (Intel), Monterey and
# Ventura (M1). NB: The Intel build also works on Apple
# Silicon using Rosetta 2.
nwjs_version="v0.71.0"
else else
# temporary kluge for rpi-- only 0.27.6 is available atm # temporary kluge for rpi-- only 0.27.6 is available atm
if [ $arch == "arm" ]; then if [ $arch == "arm" ]; then
...@@ -204,7 +210,10 @@ if [ ! -d "../pd/nw/nw" ]; then ...@@ -204,7 +210,10 @@ if [ ! -d "../pd/nw/nw" ]; then
elif [ $arch == "arm64" ]; then elif [ $arch == "arm64" ]; then
nwjs_version="v0.23.7" nwjs_version="v0.23.7"
else else
nwjs_version="v0.71.0" # ag: Unfortunately, Linux exhibits a bunch of regressions
# with 0.71.0, so we keep the tried and true 0.28 version for
# now. 0.28.3 is the final point release in this series.
nwjs_version="v0.28.3"
fi fi
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment