Skip to content
This repository has been archived by the owner on Jun 4, 2023. It is now read-only.

Commit

Permalink
Fix file associations
Browse files Browse the repository at this point in the history
Former-commit-id: bafb482 [formerly bafb482 [formerly ec1f4f5]]
Former-commit-id: 87998883e132d7debb8a0be2f6b4da31e2bc2522
Former-commit-id: 85c6c5b
  • Loading branch information
xnerhu committed Oct 27, 2018
1 parent 05afbf8 commit 442e0df
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
13 changes: 8 additions & 5 deletions electron-builder.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@
"mac": {
"category": "public.app-category.navigation"
},
"fileAssociations": {
"ext": [".html"],
"description": "Wexond",
"role": "Viewer"
}
"fileAssociations": [
{
"name": "Document",
"description": "Wexond",
"role": "Viewer",
"ext": "html"
}
]
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"compile-win32": "npm run build && electron-builder -w -p always",
"compile-darwin": "npm run build && electron-builder -m -p always",
"compile-linux": "npm run build && electron-builder -l -p always",
"x": "electron-builder -w -p always",
"lint": "tslint \"src/**/*.ts*\"",
"lint-fix": "prettier --write \"src/**/*.ts*\" && tslint \"src/**/*.ts*\" --fix",
"postinstall": "electron-builder install-app-deps",
Expand Down

0 comments on commit 442e0df

Please sign in to comment.