karin-plugin-kkk 1.6.11 → 1.6.12

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # 变更日志
2
2
 
3
+ ## [1.6.12](https://github.com/ikenxuan/karin-plugin-kkk/compare/v1.6.11...v1.6.12) (2025-06-15)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * 更新md-html依赖并优化版本信息展示 ([88115f1](https://github.com/ikenxuan/karin-plugin-kkk/commit/88115f108d09620885491dd990a8306bf586f096))
9
+
3
10
  ## [1.6.11](https://github.com/ikenxuan/karin-plugin-kkk/compare/v1.6.10...v1.6.11) (2025-06-15)
4
11
 
5
12
 
package/README.md CHANGED
@@ -4,7 +4,13 @@
4
4
 
5
5
  ## ⬇️ 安装
6
6
 
7
- - 使用 **`包管理器`** 安装(非常推荐)
7
+ - 插件市场安装(非常推荐)
8
+
9
+ **通过 Karin 的插件市场直接安装本插件。**
10
+
11
+ <br />
12
+
13
+ - 使用 **`包管理器`** 安装(推荐)
8
14
  <details>
9
15
  <summary>点击展开</summary>
10
16
 
@@ -22,13 +28,16 @@
22
28
  <details>
23
29
  <summary>点击展开</summary>
24
30
 
25
- 由于上游框架 Karin 有全面拥抱 `包模块化` 的嫌疑,所以使用 git clone 安装的方法 **不再推荐**<br />
26
- 若实在需使用该安装方法,请自行切换到 `build` 分支,安装教程不多赘述
31
+ 由于上游框架 Karin 有全面拥抱 `包模块化` 的嫌疑,所以使用 git clone 安装的方法 **不再推荐**
27
32
 
28
33
  </details>
29
34
 
30
35
  <br />
31
36
 
37
+ ## ⚙️ 配置
38
+
39
+ 请在 WebUI 中查看并配置插件参数。
40
+
32
41
  ## 📖 功能
33
42
 
34
43
  **更多信息可打开 [文档主页](https://ikenxuan.github.io/karin-plugin-kkk/) 阅读。**<br>
package/lib/apps/help.js CHANGED
@@ -16,9 +16,14 @@ const help = karin.command(/^#?kkk帮助$/, async (e) => {
16
16
  }, { name: "kkk-帮助" });
17
17
  const version = karin.command(/^#?kkk(版本|更新日志)$/, async (e) => {
18
18
  const changelogContent = fs.readFileSync(Root.pluginPath + "/CHANGELOG.md", "utf8");
19
- const forwardLogs = logs(Root.pluginVersion, changelogContent, 8, false);
19
+ const forwardLogs = logs(Root.pluginVersion, changelogContent, 10, false);
20
20
  const html = markdown(forwardLogs, {
21
- gitcss: Common.useDarkTheme() ? "github-markdown-dark.css" : "github-markdown-light.css"
21
+ gitcss: Common.useDarkTheme() ? "github-markdown-dark.css" : "github-markdown-light.css",
22
+ scale: 5,
23
+ customCSSFiles: [
24
+ Root.pluginPath + "/resources/font/font.css"
25
+ ],
26
+ fontFamily: "HarmonyOSHans-Regular"
22
27
  });
23
28
  mkdirSync(`${karinPathTemp}/html/${Root.pluginName}/version`);
24
29
  const htmlPath = `${karinPathTemp}/html/${Root.pluginName}/version/version.html`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "karin-plugin-kkk",
3
- "version": "1.6.11",
3
+ "version": "1.6.12",
4
4
  "description": "Karin 的「抖音」「B 站」视频解析/动态推送插件",
5
5
  "keywords": [
6
6
  "karin-plugin",
@@ -40,7 +40,7 @@
40
40
  "watch": "cross-env EBV_FILE=\"development.env\" tsx watch --include \"src/**/*.ts\" src/app.ts"
41
41
  },
42
42
  "dependencies": {
43
- "@karinjs/md-html": "^1.2.2",
43
+ "@karinjs/md-html": "^1.3.0",
44
44
  "playwright": "^1.51.1",
45
45
  "sequelize": "6.37.3"
46
46
  },