Skip to content

Commit b1773e5

Browse files
committed
Add snap packaging option
Add snap packaging with electron-builder Specified removable-media as additional interface Specified snap confinement as strict Fix unused icon in NotePageToolbar
1 parent 5271232 commit b1773e5

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

package.json

+10-1
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,21 @@
188188
"mac": {
189189
"icon": "static/icon.icns"
190190
},
191+
"snap": {
192+
"confinement": "strict",
193+
"plugs": [
194+
"default",
195+
"removable-media"
196+
]
197+
},
191198
"linux": {
199+
"executableName": "boostnote-next",
192200
"icon": "static/icon.icns",
193201
"target": [
194202
"deb",
195203
"rpm",
196-
"AppImage"
204+
"AppImage",
205+
"snap"
197206
]
198207
},
199208
"win": {

0 commit comments

Comments
 (0)