@mo7yw4ng/openape 2.1.1 → 2.1.3
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 +2 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -66,6 +66,7 @@ openape quizzes submit <attempt-id> # 送出目前已儲存的測驗
|
|
|
66
66
|
openape materials list <course-id> # 列出指定課程教材
|
|
67
67
|
openape materials list-all # 列出所有可下載教材
|
|
68
68
|
openape materials download <id> # 下載指定教材 (支援 --output-dir)
|
|
69
|
+
openape materials download-file <course-id> <query> # 依檔名/folder/name/cmid 下載單一教材
|
|
69
70
|
openape materials download-all # 批次下載教材 (支援 --output-dir, --level)
|
|
70
71
|
openape materials complete <id> # 標記教材為已完成
|
|
71
72
|
openape materials complete-all # 批次標記教材為已完成
|
|
@@ -137,4 +138,4 @@ cargo run -- --help
|
|
|
137
138
|
|
|
138
139
|
此專案之版權規範採用 **MIT License** - 至 [LICENSE](LICENSE) 查看更多相關聲明
|
|
139
140
|
|
|
140
|
-
> **免責聲明**:本工具為非官方開放原始碼專案,與中原大學官方無關。請斟酌使用腳本輔助功能,避免不當操作(如短時間發送大量請求修改系統狀態)而違反學術倫理或導致帳號遭封鎖。
|
|
141
|
+
> **免責聲明**:本工具為非官方開放原始碼專案,與中原大學官方無關。請斟酌使用腳本輔助功能,避免不當操作(如短時間發送大量請求修改系統狀態)而違反學術倫理或導致帳號遭封鎖。
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mo7yw4ng/openape",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.3",
|
|
4
4
|
"description": "CLI tool for CYCU i-Learning platform",
|
|
5
5
|
"bin": {
|
|
6
6
|
"openape": "bin/openape.js"
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
"build": "tsc && npx shx mv bin/index.js bin/openape.js"
|
|
10
10
|
},
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"@mo7yw4ng/openape-linux-x64": "2.1.
|
|
13
|
-
"@mo7yw4ng/openape-linux-arm64": "2.1.
|
|
14
|
-
"@mo7yw4ng/openape-darwin-x64": "2.1.
|
|
15
|
-
"@mo7yw4ng/openape-darwin-arm64": "2.1.
|
|
16
|
-
"@mo7yw4ng/openape-win32-x64": "2.1.
|
|
17
|
-
"@mo7yw4ng/openape-win32-arm64": "2.1.
|
|
12
|
+
"@mo7yw4ng/openape-linux-x64": "2.1.3",
|
|
13
|
+
"@mo7yw4ng/openape-linux-arm64": "2.1.3",
|
|
14
|
+
"@mo7yw4ng/openape-darwin-x64": "2.1.3",
|
|
15
|
+
"@mo7yw4ng/openape-darwin-arm64": "2.1.3",
|
|
16
|
+
"@mo7yw4ng/openape-win32-x64": "2.1.3",
|
|
17
|
+
"@mo7yw4ng/openape-win32-arm64": "2.1.3"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"typescript": "^5.0.0",
|