@wisdomgarden/mobile-assets 0.0.77 → 0.0.79
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 +8 -2
- package/app-legal/children-privacy-policy-info.json +29 -0
- package/app-legal/children-privacy-policy-zh-CN.md +92 -0
- package/app-legal/children-privacy-policy.html +31 -0
- package/app-legal/marked-4.0.1.min.js +6 -0
- package/app-legal/policy-common.js +144 -0
- package/app-legal/policy-jump.html +1 -0
- package/app-legal/privacy-policy-en.md +84 -0
- package/app-legal/privacy-policy-info.json +29 -0
- package/app-legal/privacy-policy-zh-CN.md +165 -0
- package/app-legal/privacy-policy-zh-TW.md +61 -0
- package/app-legal/privacy-policy.html +31 -0
- package/app-legal/privacy_policy_google_play.html +32 -0
- package/app-legal/summary-privacy-policy-zh-CN.md +33 -0
- package/app-legal/summary-privacy-policy.html +120 -0
- package/app-legal/user-agreement-en.md +128 -0
- package/app-legal/user-agreement-info.json +29 -0
- package/app-legal/user-agreement-zh-CN.md +110 -0
- package/app-legal/user-agreement-zh-TW.md +113 -0
- package/app-legal/user-agreement.html +64 -0
- package/assets-list.md +44 -0
- package/package.json +5 -1
- package/tools.html +4 -4
- package/version_aligner.json +4 -40
- package/version_update_android.json +2 -2
- package/version_update_ios.json +1 -1
- package/privacy-policy-2022-06-14-huawei.html +0 -111
- package/privacy-policy-2022-09-19.html +0 -114
- package/privacy-policy-2023-01-16.html +0 -119
- package/privacy-policy-2023-04-07.html +0 -156
- package/privacy-policy-2026-07-15.html +0 -176
- package/privacy-policy-qiniu.html +0 -85
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en" mode="ios" class="hydrated">
|
|
3
|
-
|
|
4
|
-
<head>
|
|
5
|
-
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
6
|
-
<meta charset="utf-8" />
|
|
7
|
-
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
8
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, viewport-fit=cover">
|
|
9
|
-
<meta http-equiv="cache-control" content="max-age=0">
|
|
10
|
-
<meta http-equiv="cache-control" content="no-cache">
|
|
11
|
-
<meta http-equiv="expires" content="0">
|
|
12
|
-
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT">
|
|
13
|
-
<meta http-equiv="pragma" content="no-cache">
|
|
14
|
-
<link rel="icon" href="favicon.ico">
|
|
15
|
-
<style>
|
|
16
|
-
.markdown p {
|
|
17
|
-
white-space: pre-line;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.markdown blockquote {
|
|
21
|
-
margin: 0;
|
|
22
|
-
padding-left: 1.4rem;
|
|
23
|
-
border-left: 4px solid #dadada;
|
|
24
|
-
}
|
|
25
|
-
</style>
|
|
26
|
-
<script type="text/javascript" src="marked.min-4.0.1.js"></script>
|
|
27
|
-
<script>
|
|
28
|
-
let content = "";
|
|
29
|
-
let info = null;
|
|
30
|
-
let i18n = null;
|
|
31
|
-
let language = window.navigator.language;
|
|
32
|
-
if (language.startsWith("zh-CN")) {
|
|
33
|
-
language = "zh-CN";
|
|
34
|
-
} else if (language.startsWith("en")) {
|
|
35
|
-
language = "en";
|
|
36
|
-
} else {
|
|
37
|
-
language = "zh-TW";
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
fetch("privacy-policy-info.json?v=" + new Date().getTime()).then(
|
|
41
|
-
function (response) {
|
|
42
|
-
return response.json();
|
|
43
|
-
}).then(function (json) {
|
|
44
|
-
info = json;
|
|
45
|
-
i18n = json["i18n"][language];
|
|
46
|
-
document.title = i18n["title"];
|
|
47
|
-
render();
|
|
48
|
-
});
|
|
49
|
-
|
|
50
|
-
fetch("privacy-policy-" + language + ".md?v=" + new Date().getTime()).then(function (response) {
|
|
51
|
-
return response.text();
|
|
52
|
-
}).then(function (_content) {
|
|
53
|
-
content = _content;
|
|
54
|
-
render();
|
|
55
|
-
});
|
|
56
|
-
|
|
57
|
-
function render() {
|
|
58
|
-
if (info && content) {
|
|
59
|
-
let header = "# " + i18n["title"];
|
|
60
|
-
header += "\n\n";
|
|
61
|
-
|
|
62
|
-
header += i18n["effectiveTime"] + new Date(info["updateInfo"]["effectiveTime"]).toLocaleDateString()
|
|
63
|
-
header += "\n";
|
|
64
|
-
header += i18n["updateTime"] + new Date(info["updateInfo"]["updateTime"]).toLocaleDateString()
|
|
65
|
-
|
|
66
|
-
header += "\n\n\n";
|
|
67
|
-
|
|
68
|
-
let footer = "\n\n\n";
|
|
69
|
-
footer += i18n["developer"] + i18n["developerName"]
|
|
70
|
-
|
|
71
|
-
content = header + content + footer
|
|
72
|
-
|
|
73
|
-
document.getElementById('content').innerHTML = marked.parse(content);
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
</script>
|
|
77
|
-
|
|
78
|
-
<title>畅课(TronClass)隐私政策</title>
|
|
79
|
-
</head>
|
|
80
|
-
|
|
81
|
-
<body>
|
|
82
|
-
<div id="content" class="markdown">Loading ......</div>
|
|
83
|
-
</body>
|
|
84
|
-
|
|
85
|
-
</html>
|