Skip to content

Commit 01f8c99

Browse files
committed
Prepare ZenNotes 1.0.3
1 parent fbe8867 commit 01f8c99

20 files changed

Lines changed: 473 additions & 55 deletions

build/after-install.sh

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/bin/sh
2+
3+
set -eu
4+
5+
SANDBOX_PATH="/opt/ZenNotes/chrome-sandbox"
6+
7+
# Debian installs under /opt/ZenNotes, where Electron's helper needs
8+
# root ownership plus the setuid bit on systems that still require the
9+
# chrome-sandbox path. If the layout ever changes, skip cleanly rather
10+
# than failing the whole package install or upgrade.
11+
if [ ! -f "$SANDBOX_PATH" ]; then
12+
exit 0
13+
fi
14+
15+
chown root:root "$SANDBOX_PATH"
16+
chmod 4755 "$SANDBOX_PATH"

build/icons/128x128.png

13.2 KB
Loading

build/icons/16x16.png

1.55 KB
Loading

build/icons/24x24.png

2.08 KB
Loading

build/icons/256x256.png

39.9 KB
Loading

build/icons/32x32.png

2.53 KB
Loading

build/icons/48x48.png

3.68 KB
Loading

build/icons/512x512.png

139 KB
Loading

build/icons/64x64.png

4.99 KB
Loading

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)