Skip to content

Commit 00c1c69

Browse files
Version 0.3.22
Includes a simple PWA sample. Will also be available here: www.innovateasterisk.com/phone/
1 parent 4b3db32 commit 00c1c69

14 files changed

Lines changed: 132 additions & 13 deletions

.DS_Store

0 Bytes
Binary file not shown.

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@
66
.Spotlight-V100
77
.Trashes
88
ehthumbs.db
9-
Thumbs.db
9+
Thumbs.db
10+
.vscode/settings.json
11+
.DS_Store

.vscode/settings.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"appversion",
55
"autoanswer",
66
"Billsec",
7+
"browserphone",
78
"calldirection",
89
"callrecording",
910
"callstart",
@@ -60,6 +61,7 @@
6061
"Voceimail",
6162
"voicemessages",
6263
"Voicemial",
64+
"webp",
6365
"webrtc",
6466
"withvideo",
6567
"WXYZ",

Phone/.DS_Store

2 KB
Binary file not shown.

Phone/icons/512.png

53 KB
Loading

Phone/icons/any_192.png

13.4 KB
Loading

Phone/icons/maskable_192.png

11.1 KB
Loading

Phone/icons/screenshot1.webp

286 KB
Loading

Phone/icons/screenshot2.webp

357 KB
Loading

Phone/index.html

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,27 @@
88
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
99

1010
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
11-
<meta name="HandheldFriendly" content="true">
1211

12+
<!-- Progressive Web App (PWA) -->
13+
<meta name="HandheldFriendly" content="true">
1314
<meta name="format-detection" content="telephone=no"/>
14-
<meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE"/>
15-
16-
<meta name="apple-mobile-web-app-capable" content="no"/>
17-
<meta name="mobile-web-app-capable" content="no">
15+
<meta name="mobile-web-app-capable" content="yes">
16+
<meta name="apple-mobile-web-app-capable" content="yes"/>
17+
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#f6f6f6">
18+
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#292929">
19+
<link rel="apple-touch-icon" href="icons/512.png">
20+
<link rel="manifest" href="manifest.json">
21+
<script type="text/javascript">
22+
if ('serviceWorker' in navigator) {
23+
navigator.serviceWorker.register("sw.js").catch(function(error) {
24+
console.error('Service Worker Error', error);
25+
});
26+
} else {
27+
console.warn("Cannot make use of ServiceWorker");
28+
}
29+
</script>
1830

31+
<!-- Cache -->
1932
<meta http-equiv="Pragma" content="no-cache"/>
2033
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"/>
2134
<meta http-equiv="Expires" content="0"/>

0 commit comments

Comments
 (0)