-
Notifications
You must be signed in to change notification settings - Fork 1
/
linux_flatpak.json
46 lines (46 loc) · 1.35 KB
/
linux_flatpak.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"appId": "cn.cnoctave.marked_reader",
"productName": "marked_reader",
"buildNumber": "2.0.0",
"icon": "logo.png",
"directories": {
"output": "dist"
},
"publish": [
{
"provider": "github",
"owner": "CNOCTAVE",
"repo": "marked_reader",
"releaseType": "release"
}
],
"linux": {
"artifactName": "${name}-${version}-${os}-${arch}.${ext}",
"target": [
{
"target": "flatpak",
"arch": [
"x64",
"armv7l",
"arm64"
],
"options": {
"bundle": "your-app-id",
"runtime": "org.freedesktop.Platform/x86_64/20.08",
"sdk": "org.freedesktop.Sdk/x86_64/20.08",
"metadata": {
"name": "marked_reader",
"description": "marked_reader is an open source Markdown reader packed by Electron",
"version": "2.0.0",
"com.github.app.url": "http://cnoctave.cn",
"com.github.app.license": "AGPL-3.0-only"
},
"finishArgs": [
"--socket=x11",
"--share=network"
]
}
}
]
}
}