@maudecode/cove 1.0.2 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -7
- package/dist/assets/index-BRt49EAf.css +1 -0
- package/dist/assets/index-BcEHisla.js +421 -0
- package/dist/index.html +9 -6
- package/dist/manifest.json +24 -0
- package/package.json +1 -1
- package/dist/assets/index-Bn8aUAq0.js +0 -417
- package/dist/assets/index-NMo4OSLa.css +0 -1
package/dist/index.html
CHANGED
|
@@ -11,21 +11,24 @@
|
|
|
11
11
|
style-src 'self' 'unsafe-inline';
|
|
12
12
|
img-src 'self' data: blob: https:;
|
|
13
13
|
font-src 'self' data:;
|
|
14
|
-
connect-src 'self' ws
|
|
15
|
-
|
|
14
|
+
connect-src 'self' ws://* wss://* https:;
|
|
15
|
+
worker-src 'self' blob:;
|
|
16
16
|
form-action 'self';
|
|
17
17
|
base-uri 'self';
|
|
18
18
|
" />
|
|
19
19
|
<meta http-equiv="X-Content-Type-Options" content="nosniff" />
|
|
20
|
-
<meta http-equiv="X-Frame-Options" content="DENY" />
|
|
21
20
|
<meta http-equiv="Referrer-Policy" content="strict-origin-when-cross-origin" />
|
|
22
21
|
|
|
23
22
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
|
24
23
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
|
25
24
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
26
|
-
<
|
|
25
|
+
<link rel="manifest" href="/manifest.json" />
|
|
26
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
27
27
|
<meta name="description" content="A cozy WebUI for OpenClaw chat" />
|
|
28
28
|
<meta name="theme-color" content="#0a0a0b" />
|
|
29
|
+
<meta name="mobile-web-app-capable" content="yes" />
|
|
30
|
+
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
|
31
|
+
<meta name="apple-mobile-web-app-title" content="Cove" />
|
|
29
32
|
<title>Cove - OpenClaw WebUI</title>
|
|
30
33
|
|
|
31
34
|
<!-- Theme initialization - runs before anything else -->
|
|
@@ -81,8 +84,8 @@
|
|
|
81
84
|
}
|
|
82
85
|
})();
|
|
83
86
|
</script>
|
|
84
|
-
<script type="module" crossorigin src="/assets/index-
|
|
85
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
87
|
+
<script type="module" crossorigin src="/assets/index-BcEHisla.js"></script>
|
|
88
|
+
<link rel="stylesheet" crossorigin href="/assets/index-BRt49EAf.css">
|
|
86
89
|
</head>
|
|
87
90
|
<body>
|
|
88
91
|
<div id="app"></div>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Cove",
|
|
3
|
+
"short_name": "Cove",
|
|
4
|
+
"description": "OpenClaw WebUI",
|
|
5
|
+
"start_url": "/",
|
|
6
|
+
"display": "standalone",
|
|
7
|
+
"background_color": "#0a0a0b",
|
|
8
|
+
"theme_color": "#0a0a0b",
|
|
9
|
+
"orientation": "any",
|
|
10
|
+
"icons": [
|
|
11
|
+
{
|
|
12
|
+
"src": "/apple-touch-icon.png",
|
|
13
|
+
"sizes": "180x180",
|
|
14
|
+
"type": "image/png",
|
|
15
|
+
"purpose": "any"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"src": "/cove-icon.png",
|
|
19
|
+
"sizes": "512x512",
|
|
20
|
+
"type": "image/png",
|
|
21
|
+
"purpose": "any maskable"
|
|
22
|
+
}
|
|
23
|
+
]
|
|
24
|
+
}
|