Skip to content

Commit

Permalink
Add snap packaging option
Browse files Browse the repository at this point in the history
Add snap packaging with electron-builder
Specified removable-media as additional interface
Specified snap confinement as strict
Fix unused icon in NotePageToolbar
  • Loading branch information
Komediruzecki committed Nov 21, 2020
1 parent b9d8e38 commit 9e3374c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
11 changes: 10 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -179,12 +179,21 @@
"mac": {
"icon": "static/icon.icns"
},
"snap": {
"confinement": "strict",
"plugs": [
"default",
"removable-media"
]
},
"linux": {
"executableName": "boostnote-next",
"icon": "static/icon.icns",
"target": [
"deb",
"rpm",
"AppImage"
"AppImage",
"snap"
]
},
"win": {
Expand Down
1 change: 0 additions & 1 deletion src/components/organisms/NotePageToolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import {
mdiViewSplitVertical,
mdiTrashCan,
mdiRestore,
mdiDotsVertical,
mdiStarOutline,
mdiStar,
mdiExportVariant,
Expand Down

0 comments on commit 9e3374c

Please sign in to comment.