Skip to content

Commit

Permalink
fix: 修复潜在的引用加载速度问题 #12
Browse files Browse the repository at this point in the history
tag: v0.3.5.3
  • Loading branch information
FoliageOwO committed Nov 11, 2024
1 parent 5a521d0 commit a70da70
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#### v0.3.5.3
- [!] 使用 `fastly` 提供的 `jsdelivr`

#### v0.3.5.2
- [!] 修复题库匹配过程中标点导致的匹配问题
- [.] 降低模糊查询阈值
Expand Down
2 changes: 1 addition & 1 deletion README.userscript.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@

图示教程:

![](https://cdn.jsdelivr.net/gh/FoliageOwO/QingJiaoHelper@0.3.5.2/resources/clearcache.png)
![](https://fastly.jsdelivr.net/gh/FoliageOwO/QingJiaoHelper@0.3.5.2/resources/clearcache.png)

- **脚本出问题不工作了怎么办**

Expand Down
10 changes: 5 additions & 5 deletions metadata.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "QingJiaoHelper",
"namespace": "http://tampermonkey.net/",
"version": "0.3.5.2",
"version": "0.3.5.3",
"description": "青骄第二课堂小助手: 2024 知识竞赛 | 跳过视频 | 自动完成所有课程 | 领取每日学分 | 课程自动填充答案",
"author": "FoliageOwO",
"match": ["*://www.2-class.com/*", "*://2-class.com/*"],
Expand All @@ -15,12 +15,12 @@
"license": "GPL-3.0",
"supportURL": "https://github.com/FoliageOwO/QingJiaoHelper",
"require": [
"https://cdn.jsdelivr.net/npm/toastify-js@1.12.0/src/toastify.min.js",
"https://fastly.jsdelivr.net/npm/toastify-js@1.12.0/src/toastify.min.js",
"https://update.greasyfork.org/scripts/453791/lib2class.js",
"https://cdn.jsdelivr.net/npm/axios@1.3.6/dist/axios.min.js"
"https://fastly.jsdelivr.net/npm/axios@1.3.6/dist/axios.min.js"
],
"resource": {
"toastifycss": "https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.css",
"spectrecss": "https://cdn.jsdelivr.net/gh/FoliageOwO/QingJiaoHelper/spectre.css"
"toastifycss": "https://fastly.jsdelivr.net/npm/toastify-js/src/toastify.css",
"spectrecss": "https://fastly.jsdelivr.net/gh/FoliageOwO/QingJiaoHelper/spectre.css"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qingjiaohelper",
"version": "0.3.5.2",
"version": "0.3.5.3",
"description": "青骄第二课堂小助手: 2024 知识竞赛 | 跳过视频 | 自动完成所有课程 | 领取每日学分 | 课程自动填充答案",
"main": "./src/main.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { getAvailableGradeLevels } from "./api";

/* ------------ 脚本定义 ------------ */
export const scriptName = "QingJiaoHelper";
export const scriptVersion = "v0.3.5.2";
export const scriptVersion = "v0.3.5.3";
export const toastifyDuration = 3 * 1000;
export const toastifyGravity = "top";
export const toastifyPosition = "left";
Expand Down

0 comments on commit a70da70

Please sign in to comment.