Skip to content

Commit

Permalink
Upgrade to nw.js 0.67.0 on Linux (fixes #42).
Browse files Browse the repository at this point in the history
This fixes a bug with the menubar being white on white (and hence
invisible) when using a dark theme.

0.67.0 resolves the issue, and while it has some minor regressions, it's
perfectly usable, and is as close as we can get to the 0.67.1 version
we're using on Mac and Windows. (Unfortunately, 0.67.1 itself has a
nasty regression on Linux which breaks Purr Data's file dialogs. But
0.67.0 will do for now.)
  • Loading branch information
agraef committed Aug 15, 2024
1 parent 3ecb1d1 commit a5c794a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion debuild/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ debdist = purr-data-$(debversion)
# nw.js sdk
# NOTE: arm packages need some special-casing, since they are released
# separately, and the version numbers do not always match up.
nwjsver = 0.42.3
nwjsver = 0.67.0
nwjspkg = nwjs-sdk-v$(nwjsver)-linux
nwjsver_arm = 0.27.6
nwjspkg_arm = nwjs-sdk-v$(nwjsver_arm)-linux
Expand Down
2 changes: 1 addition & 1 deletion debuild/debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

nwjsver = 0.42.3
nwjsver = 0.67.0
nwjspkg = nwjs-sdk-v$(nwjsver)-linux
nwjsdir = nwjs-sdk-v$(nwjsver)-linux

Expand Down
6 changes: 3 additions & 3 deletions l2ork_addons/tar_em_up.sh
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,9 @@ if [ ! -d "../pd/nw/nw" ]; then
# dito for rpi arm64-- 0.23.7 version
nwjs_version="v0.23.7"
else
# default for Linux -- we use 0.42.3 there because of a
# regression with nwworkingdir in later versions
nwjs_version="v${nwjsver:-0.42.3}"
# default for Linux -- we use 0.67.0 there because of a
# regression with nwworkingdir in 0.67.1
nwjs_version="v${nwjsver:-0.67.0}"
fi

nwjs="nwjs-sdk"
Expand Down

0 comments on commit a5c794a

Please sign in to comment.