Skip to content
This repository has been archived by the owner on Sep 17, 2020. It is now read-only.

Commit

Permalink
package.json: expand file associations array to fix appimage build (s…
Browse files Browse the repository at this point in the history
  • Loading branch information
ikreymer committed Dec 12, 2018
1 parent 7c5f938 commit af0154f
Showing 1 changed file with 31 additions and 9 deletions.
40 changes: 31 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,37 @@
},
"fileAssociations": [
{
"ext": [
"warc",
"arc",
"har",
"warc.gz",
"arc.gz"
],
"name": "Web Archives",
"description": "Web Archives",
"ext": "warc",
"name": "WARC File",
"description": "WARC File",
"role": "Viewer"
},

{
"ext": "warc.gz",
"name": "WARC File",
"description": "WARC File",
"role": "Viewer"
},

{
"ext": "arc",
"name": "ARC File",
"description": "ARC File",
"role": "Viewer"
},

{
"ext": "arc.gz",
"name": "ARC File",
"description": "ARC File",
"role": "Viewer"
},

{
"ext": "har",
"name": "HAR File",
"description": "HAR File",
"role": "Viewer"
}
]
Expand Down

0 comments on commit af0154f

Please sign in to comment.