forked from OpenGammaProject/Gamma-MCA
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsite.webmanifest
147 lines (147 loc) · 3.56 KB
/
site.webmanifest
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"short_name": "Gamma MCA",
"name": "Gamma MCA",
"icons": [
{
"src": "/assets/logo.svg",
"type": "image/svg+xml",
"sizes": "any",
"purpose": "any"
},
{
"src": "/assets/favicon/android-chrome-192x192.png",
"type": "image/png",
"sizes": "192x192",
"purpose": "any"
},
{
"src": "/assets/favicon/android-chrome-512x512.png",
"type": "image/png",
"sizes": "512x512",
"purpose": "any"
},
{
"src": "/assets/favicon/maskable_icon.png",
"type": "image/png",
"sizes": "1024x1024",
"purpose": "maskable"
},
{
"src": "/assets/favicon/maskable_icon_x512.png",
"type": "image/png",
"sizes": "512x512",
"purpose": "maskable"
}
],
"start_url": "/",
"background_color": "#efebe9",
"lang": "en-US",
"orientation": "landscape",
"display": "standalone",
"scope": "/",
"theme_color": "#f6bd16",
"description": "Progressive web application for gamma-ray spectroscopy including file import/export and live plotting support via the serial interface.",
"categories": ["nuclear physics","radiation","gamma spectroscopy","science","gamma-ray","physics","geiger","spectrometry","education","tool","mca","analyzer"],
"screenshots": [
{
"src": "/assets/screenshots/browser.PNG",
"sizes": "1920x937",
"type": "image/png",
"platform": "wide",
"label": "Start screen of the browser app"
},
{
"src": "/assets/screenshots/pwa.PNG",
"sizes": "1341x897",
"type": "image/png",
"platform": "wide",
"label": "Start screen of the installed PWA"
},
{
"src": "/assets/screenshots/file.PNG",
"sizes": "1177x788",
"type": "image/png",
"platform": "wide",
"label": "CSV spectrum files imported into the PWA and plotted"
},
{
"src": "/assets/screenshots/serial.PNG",
"sizes": "1341x897",
"type": "image/png",
"platform": "wide",
"label": "Recording a spectrum using the serial port"
},
{
"src": "/assets/screenshots/settings.PNG",
"sizes": "1341x897",
"type": "image/png",
"platform": "wide",
"label": "Opened settings panel with three sub-tabs"
},
{
"src": "/assets/screenshots/calibration.PNG",
"sizes": "1341x897",
"type": "image/png",
"platform": "wide",
"label": "Imported calibration from an XML file"
}
],
"file_handlers": [
{
"action": "/",
"accept": {
"text/csv": [".csv"]
},
"icons": [
{
"src": "/assets/files/csv.png",
"sizes": "256x256",
"type": "image/png"
}
],
"launch_type": "multiple-clients"
},
{
"action": "/",
"accept": {
"application/json": [".json"]
},
"icons": [
{
"src": "/assets/files/json.png",
"sizes": "256x256",
"type": "image/png"
}
],
"launch_type": "multiple-clients"
},
{
"action": "/",
"accept": {
"text/plain": [".txt"]
},
"icons": [
{
"src": "/assets/files/txt.png",
"sizes": "256x256",
"type": "image/png"
}
],
"launch_type": "multiple-clients"
},
{
"action": "/",
"accept": {
"application/xml": [".xml"]
},
"icons": [
{
"src": "/assets/files/xml.png",
"sizes": "256x256",
"type": "image/png"
}
],
"launch_type": "multiple-clients"
}
]
}