@wisdomgarden/mobile-assets 0.0.12 → 0.0.16
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -1
- package/package.json +1 -1
- package/privacy-policy-en.md +3 -0
- package/privacy-policy-info.json +1 -1
- package/privacy-policy-qiniu.html +85 -0
- package/privacy-policy-zh-CN.md +3 -0
- package/privacy-policy-zh-TW.md +3 -0
- package/version_update_android.json +5 -5
- package/version_update_ios.json +4 -4
package/README.md
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
### update version info: `version_update_android.json / version_update_ios.json`
|
4
4
|
|
5
5
|
1. [HiPaCloud](https://hipacloud.com/apps/61246bbeb74fa7ca113500cb/tables/61357f137c852d44c4e9248d) Create a new version record and improve the release notes.
|
6
|
-
2. `node scripts/update_app_version_md` update json file with hipa remote data, or edit it manually
|
6
|
+
2. `node scripts/update_app_version_md.js` update json file with hipa remote data, or edit it manually
|
7
7
|
3. check for errors then git commit
|
8
8
|
4. `node scripts/upgrade_version.js` increase current project version number and add new tag
|
9
9
|
5. `git push && git push --tags` push to GitHub, and Github Action publish it to [npm @wisdomgarden/mobile-assets](https://www.npmjs.com/package/@wisdomgarden/mobile-assets)
|
package/package.json
CHANGED
package/privacy-policy-en.md
CHANGED
@@ -67,6 +67,9 @@ Welcome to use TronClass's related services! In order to use TronClass's related
|
|
67
67
|
|
68
68
|
8.7. For more TronClass privacy protection policies, please check the company website.
|
69
69
|
|
70
|
+
9. About the explanation that TronClass cannot provide account cancellation function
|
71
|
+
|
72
|
+
TronClass does not provide account registration service. The accounts used by users in the process of using TronClass are either synchronized with the unified identity authentication system of their schools or added or deleted manually by school system administrators. Therefore, TronClass cannot provide account cancellation function.
|
70
73
|
|
71
74
|
|
72
75
|
Thank you for taking the time to understand our privacy policy! We will do our best to protect your personal information and legal rights, thank you again for your trust!
|
package/privacy-policy-info.json
CHANGED
@@ -0,0 +1,85 @@
|
|
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 src="https://cdn.staticfile.org/marked/4.0.1/marked.min.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").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").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>
|
package/privacy-policy-zh-CN.md
CHANGED
@@ -67,6 +67,9 @@
|
|
67
67
|
|
68
68
|
8.7. 更多畅课(TronClass)隐私权保护政策,请用户查看公司网站。
|
69
69
|
|
70
|
+
9. 关于畅课(TronClass)无法提供账号注销功能的说明
|
71
|
+
|
72
|
+
畅课(TronClass)不提供账号注册服务,用户在使用过程中所使用的账号均来自于与所属学校统一身份认证系统同步对接或经由学校系统管理员进行手动账号添加、删除,畅课(TronClass)在使用过程中并不持有、保存用户数据,故而畅课(TronClass)无法提供账号注销功能。
|
70
73
|
|
71
74
|
|
72
75
|
感谢您花时间了解我们的隐私政策!我们将尽全力保护您的个人信息和合法权益,再次感谢您的信任!
|
package/privacy-policy-zh-TW.md
CHANGED
@@ -43,6 +43,9 @@
|
|
43
43
|
|
44
44
|
8.7. 更多暢課(TronClass)隱私權保護政策,請用戶查看公司網站。
|
45
45
|
|
46
|
+
9. 關於暢課(TronClass)無法提供賬號註銷功能的說明
|
47
|
+
|
48
|
+
暢課(TronClass)不提供賬號註冊服務,用戶在使用過程中所使用的賬號均來自於與所屬學校統一身份認證系統同步對接或經由學校系統管理員進行手動賬號添加、刪除,暢課(TronClass)在使用過程中並不持有、保存用戶數據,故而暢課(TronClass)無法提供賬號註銷功能。
|
46
49
|
|
47
50
|
|
48
51
|
感謝您花時間了解我們的隱私政策!我們將盡全力保護您的個人信息和合法權益,再次感謝您的信任!
|
@@ -1,10 +1,10 @@
|
|
1
1
|
{
|
2
|
-
"version": "2.
|
2
|
+
"version": "2.2.0",
|
3
3
|
"update_type": 1,
|
4
4
|
"allow_lowest_version": "2.1.7",
|
5
5
|
"app_store_url": "https://play.google.com/store/apps/details?id=com.wisdomgarden.trpc",
|
6
|
-
"app_store_url_cn": "https://mobile-download.tronclass.com.cn/mobile-2.0/app/android/app-release-2.
|
7
|
-
"release_note_en_us": "-
|
8
|
-
"release_note_zh_hans": "-
|
9
|
-
"release_note_zh_hant": "-
|
6
|
+
"app_store_url_cn": "https://mobile-download.tronclass.com.cn/mobile-2.0/app/android/app-release-2.2.0.apk",
|
7
|
+
"release_note_en_us": "- Modify info pages style of learning activities.\n- Optimize video transcoding and playback experience.\n- Fix bugs and improve system performance.",
|
8
|
+
"release_note_zh_hans": "- 调整学习活动详情页面样式\n- 优化视频转码及播放体验\n- 已知问题修复和性能优化",
|
9
|
+
"release_note_zh_hant": "- 調整學習活動詳情頁面樣式\n- 優化影片轉碼及播放體驗\n- 已知問題修復和性能優化"
|
10
10
|
}
|
package/version_update_ios.json
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
{
|
2
|
-
"version": "2.
|
2
|
+
"version": "2.2.0",
|
3
3
|
"update_type": 1,
|
4
4
|
"allow_lowest_version": "2.1.7",
|
5
5
|
"app_store_url": "https://apps.apple.com/app/scratch/id973028199",
|
6
|
-
"release_note_en_us": "-
|
7
|
-
"release_note_zh_hans": "-
|
8
|
-
"release_note_zh_hant": "-
|
6
|
+
"release_note_en_us": "- Modify info pages style of learning activities.\n- Optimize video transcoding and playback experience.\n- Fix bugs and improve system performance.",
|
7
|
+
"release_note_zh_hans": "- 调整学习活动详情页面样式\n- 优化视频转码及播放体验\n- 已知问题修复和性能优化",
|
8
|
+
"release_note_zh_hant": "- 調整學習活動詳情頁面樣式\n- 優化影片轉碼及播放體驗\n- 已知問題修復和性能優化"
|
9
9
|
}
|