Skip to content

Commit a1827ff

Browse files
authored
Upgrade block info and add anatomy support to question classification (#57)
* Update block info and add anatomy docs * Upgrade docs dependencies * Upgrade dependencies and fix proxy script load error * Add anatomy support to question classification
1 parent b55188d commit a1827ff

File tree

8 files changed

+1167
-1090
lines changed

8 files changed

+1167
-1090
lines changed

docs/docs/extension/question-classification.md

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Alt+5 | 臨床相關知識
2525
Alt+6 | 生理學
2626
Alt+7 | 藥理學
2727
Alt+8 | 病理學
28+
Alt+9 | 解剖學
2829

2930
## 連續新增
3031

docs/docs/past-exam/claim-exam.md

+7-8
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,21 @@ title: 認領考古
1313

1414
以下是考古分配範圍試算表的連結,請用**高醫 gap 帳號**登入填寫。
1515

16-
考古範圍分配試算表:https://docs.google.com/spreadsheets/d/1lR2eK7eaIwhTFIGq0KTsgsOFxpvvwijs1QM7P3iSNXM/edit?usp=sharing#gid=202667871
16+
考古範圍分配試算表:https://docs.google.com/spreadsheets/d/1lR2eK7eaIwhTFIGq0KTsgsOFxpvvwijs1QM7P3iSNXM/edit?usp=sharing#gid=1291710316
1717

18-
:::danger 警告
19-
有鑑於許多課程即便更換老師,試題仍以考古為主,因此從現在起**無論老師是否相同都須整理考古**如該年老師不同則請加註在試卷說明欄位
18+
:::caution 注意
19+
這次因為許多課程為神經解剖學,因此新增題目分類 **「解剖學」**,快捷鍵為 **Alt+9**如無法使用請確認插件已成功[更新](../extension/install.md#更新)
2020
:::
2121

2222
:::info 資訊
23-
Block 8 期末考每人須完成** 4**考古。
23+
Block 9 期中考每人須完成** 3**考古。
2424

25-
6 個除不盡的範圍,依據抽籤結果**呂汶諺****趙子賢****王文晉****鄒棋亘****陳毅
26-
****洪煥鈞**可以少做一次,因此只要做 3 份即可。
25+
2 個除不盡的範圍,依據抽籤結果**張倬禕****林若蓁**可以少做一次,因此只要做 2 份即可。
2726
:::
2827

2928
<iframe
30-
src="https://docs.google.com/spreadsheets/d/e/2PACX-1vQpmESQIzTcft6vQxkBEQCixQyKBD2HsaDbHTbqljTIG5XAh7rpl-bWCsx5_JdHq-GwwR835aBHmzj2/pubhtml?gid=202667871&amp;single=true&amp;widget=true&amp;headers=false"
29+
src="https://docs.google.com/spreadsheets/d/e/2PACX-1vQpmESQIzTcft6vQxkBEQCixQyKBD2HsaDbHTbqljTIG5XAh7rpl-bWCsx5_JdHq-GwwR835aBHmzj2/pubhtml?gid=1291710316&amp;single=true&amp;widget=true&amp;headers=false"
3130
width="100%"
32-
height="700px"
31+
height="620px"
3332
>
3433
</iframe>

docs/static/configuration.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
block: 8
1+
block: 9
22
targets:
33
- 108001020
44
- 108001033

docs/yarn.lock

+283-211
Large diffs are not rendered by default.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wm-downloader",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "KMU E-Learning file downloader.",
55
"main": "src/index.js",
66
"repository": "https://github.com/KMU-Dev/wm-downloader",

src/teach/exam/ExamItemCreateFrame.ts

+4
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ export default class ExamItemCreateFrame extends Frame {
5959
console.log('設定病理學');
6060
this.setCategory(version, volume, '4', 10, section);
6161
break;
62+
case 'Digit9':
63+
console.log('設定解剖學');
64+
this.setCategory(version, volume, '4', 0, section);
65+
break;
6266
}
6367
}
6468
}

webpack.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ module.exports = {
5454
supportURL: "https://github.com/KMU-Dev/wm-toolkit/issues",
5555
},
5656
proxyScript: {
57-
baseUrl: "http://127.0.0.1:8080",
57+
baseUrl: "http://localhost:8080",
5858
filename: "[basename].proxy.user.js",
5959
enable: dev,
6060
},

yarn.lock

+869-868
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)