Skip to content

Commit 9e3374c

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 b9d8e38 commit 9e3374c

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

package.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,12 +179,21 @@
179179
"mac": {
180180
"icon": "static/icon.icns"
181181
},
182+
"snap": {
183+
"confinement": "strict",
184+
"plugs": [
185+
"default",
186+
"removable-media"
187+
]
188+
},
182189
"linux": {
190+
"executableName": "boostnote-next",
183191
"icon": "static/icon.icns",
184192
"target": [
185193
"deb",
186194
"rpm",
187-
"AppImage"
195+
"AppImage",
196+
"snap"
188197
]
189198
},
190199
"win": {

src/components/organisms/NotePageToolbar.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import {
77
mdiViewSplitVertical,
88
mdiTrashCan,
99
mdiRestore,
10-
mdiDotsVertical,
1110
mdiStarOutline,
1211
mdiStar,
1312
mdiExportVariant,

0 commit comments

Comments
 (0)