karin-plugin-kkk 2.21.0 → 2.22.0
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 +19 -0
- package/config/default_config/app.yaml +0 -3
- package/config/default_config/upload.yaml +6 -0
- package/lib/apps/admin.js +3 -3
- package/lib/apps/help.js +3 -3
- package/lib/apps/push.js +3 -3
- package/lib/apps/qrlogin.js +3 -3
- package/lib/apps/tools.js +3 -3
- package/lib/apps/update.js +3 -3
- package/lib/build-metadata.json +5 -5
- package/lib/core_chunk/{main-eqK3KHoJ.js → main-DgimuYt0.js} +324 -88
- package/lib/core_chunk/{template-n3eb7E79.js → template-B9tgdrVz.js} +1385 -453
- package/lib/core_chunk/template.d.mts +126 -4
- package/lib/core_chunk/template.js +2 -2
- package/lib/core_chunk/{vendor-CYCcUtqE.js → vendor-BcMLByns.js} +2653 -2972
- package/lib/index.js +3 -3
- package/lib/karin-plugin-kkk.css +4 -0
- package/lib/root.js +1 -1
- package/lib/web.config.js +3 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
## [2.22.0](https://github.com/ikenxuan/karin-plugin-kkk/compare/v2.21.1...v2.22.0) (2026-03-07)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ✨ 新功能
|
|
9
|
+
|
|
10
|
+
* **douyin:** 初步支持解析文章作品 ([d8b9243](https://github.com/ikenxuan/karin-plugin-kkk/commit/d8b92435d35e56693ceb37f18c451ef51ef86bee))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### 💯 细节优化
|
|
14
|
+
|
|
15
|
+
* **bilibili:** 解析图文动态时添加标题 close [#260](https://github.com/ikenxuan/karin-plugin-kkk/issues/260) ([2d61705](https://github.com/ikenxuan/karin-plugin-kkk/commit/2d617051aab57c92c9f06d81b5e45b338555fa5b))
|
|
16
|
+
|
|
17
|
+
## [2.21.1](https://github.com/ikenxuan/karin-plugin-kkk/compare/v2.21.0...v2.21.1) (2026-03-02)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### 🐛 错误修复
|
|
21
|
+
|
|
22
|
+
* 在线图片的上传方式配置 ([5d80aa5](https://github.com/ikenxuan/karin-plugin-kkk/commit/5d80aa571095e3851daa7120c724b75b38df83e7))
|
|
23
|
+
|
|
5
24
|
## [2.21.0](https://github.com/ikenxuan/karin-plugin-kkk/compare/v2.20.3...v2.21.0) (2026-03-02)
|
|
6
25
|
|
|
7
26
|
|
|
@@ -22,6 +22,12 @@ usegroupfile: false
|
|
|
22
22
|
# 群文件上传阈值,当文件大小超过该值时将使用群文件上传,单位:MB,「使用群文件上传」开启后才会生效
|
|
23
23
|
groupfilevalue: 100
|
|
24
24
|
|
|
25
|
+
# 网络图片发送方式,可选值:url / file / base64
|
|
26
|
+
# url: 直接传递 HTTP 链接给上游下载(可能因上游网络问题导致下载超时)
|
|
27
|
+
# file: 下载到本地使用 file 协议发送(需 Karin 与协议端在同一系统)
|
|
28
|
+
# base64: 下载后转换为 base64 发送(传输数据增大约 1/3,不在同一网络环境可能导致额外带宽成本)
|
|
29
|
+
imageSendMode: url
|
|
30
|
+
|
|
25
31
|
# 下载限速开关,开启后会限制下载速度,避免触发服务器风控导致连接被重置(ECONNRESET)
|
|
26
32
|
# 如果你的网络带宽很大且下载时经常报错"连接被重置",建议开启此选项
|
|
27
33
|
downloadThrottle: false
|
package/lib/apps/admin.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "../core_chunk/rolldown-runtime-BMXAG3ag.js";
|
|
2
|
-
import { C as removeOldFiles, S as dylogin, w as task, x as biLogin } from "../core_chunk/main-
|
|
3
|
-
import "../core_chunk/vendor-
|
|
4
|
-
import "../core_chunk/template-
|
|
2
|
+
import { C as removeOldFiles, S as dylogin, w as task, x as biLogin } from "../core_chunk/main-DgimuYt0.js";
|
|
3
|
+
import "../core_chunk/vendor-BcMLByns.js";
|
|
4
|
+
import "../core_chunk/template-B9tgdrVz.js";
|
|
5
5
|
export { biLogin, dylogin, removeOldFiles, task };
|
package/lib/apps/help.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "../core_chunk/rolldown-runtime-BMXAG3ag.js";
|
|
2
|
-
import { b as version, y as help } from "../core_chunk/main-
|
|
3
|
-
import "../core_chunk/vendor-
|
|
4
|
-
import "../core_chunk/template-
|
|
2
|
+
import { b as version, y as help } from "../core_chunk/main-DgimuYt0.js";
|
|
3
|
+
import "../core_chunk/vendor-BcMLByns.js";
|
|
4
|
+
import "../core_chunk/template-B9tgdrVz.js";
|
|
5
5
|
export { help, version };
|
package/lib/apps/push.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "../core_chunk/rolldown-runtime-BMXAG3ag.js";
|
|
2
|
-
import { _ as setdyPush, d as bilibiliPushList, f as changeBotID, g as setbiliPush, h as forcePush, m as douyinPushList, p as douyinPush, u as bilibiliPush, v as testDouyinPush } from "../core_chunk/main-
|
|
3
|
-
import "../core_chunk/vendor-
|
|
4
|
-
import "../core_chunk/template-
|
|
2
|
+
import { _ as setdyPush, d as bilibiliPushList, f as changeBotID, g as setbiliPush, h as forcePush, m as douyinPushList, p as douyinPush, u as bilibiliPush, v as testDouyinPush } from "../core_chunk/main-DgimuYt0.js";
|
|
3
|
+
import "../core_chunk/vendor-BcMLByns.js";
|
|
4
|
+
import "../core_chunk/template-B9tgdrVz.js";
|
|
5
5
|
export { bilibiliPush, bilibiliPushList, changeBotID, douyinPush, douyinPushList, forcePush, setbiliPush, setdyPush, testDouyinPush };
|
package/lib/apps/qrlogin.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "../core_chunk/rolldown-runtime-BMXAG3ag.js";
|
|
2
|
-
import { l as qrLogin } from "../core_chunk/main-
|
|
3
|
-
import "../core_chunk/vendor-
|
|
4
|
-
import "../core_chunk/template-
|
|
2
|
+
import { l as qrLogin } from "../core_chunk/main-DgimuYt0.js";
|
|
3
|
+
import "../core_chunk/vendor-BcMLByns.js";
|
|
4
|
+
import "../core_chunk/template-B9tgdrVz.js";
|
|
5
5
|
export { qrLogin };
|
package/lib/apps/tools.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "../core_chunk/rolldown-runtime-BMXAG3ag.js";
|
|
2
|
-
import { a as douyinAPP, c as xiaohongshuAPP, i as bilibiliAPP, o as kuaishouAPP, s as prefix } from "../core_chunk/main-
|
|
3
|
-
import "../core_chunk/vendor-
|
|
4
|
-
import "../core_chunk/template-
|
|
2
|
+
import { a as douyinAPP, c as xiaohongshuAPP, i as bilibiliAPP, o as kuaishouAPP, s as prefix } from "../core_chunk/main-DgimuYt0.js";
|
|
3
|
+
import "../core_chunk/vendor-BcMLByns.js";
|
|
4
|
+
import "../core_chunk/template-B9tgdrVz.js";
|
|
5
5
|
export { bilibiliAPP, douyinAPP, kuaishouAPP, prefix, xiaohongshuAPP };
|
package/lib/apps/update.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "../core_chunk/rolldown-runtime-BMXAG3ag.js";
|
|
2
|
-
import { n as kkkUpdateCommand, r as update, t as kkkUpdate } from "../core_chunk/main-
|
|
3
|
-
import "../core_chunk/vendor-
|
|
4
|
-
import "../core_chunk/template-
|
|
2
|
+
import { n as kkkUpdateCommand, r as update, t as kkkUpdate } from "../core_chunk/main-DgimuYt0.js";
|
|
3
|
+
import "../core_chunk/vendor-BcMLByns.js";
|
|
4
|
+
import "../core_chunk/template-B9tgdrVz.js";
|
|
5
5
|
export { kkkUpdate, kkkUpdateCommand, update };
|
package/lib/build-metadata.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "2.
|
|
3
|
-
"buildTime": "2026-03-
|
|
4
|
-
"buildTimestamp":
|
|
2
|
+
"version": "2.22.0",
|
|
3
|
+
"buildTime": "2026-03-07T00:12:10.720Z",
|
|
4
|
+
"buildTimestamp": 1772842330720,
|
|
5
5
|
"name": "karin-plugin-kkk",
|
|
6
6
|
"description": "Karin 的「抖音」「B 站」视频解析/动态推送插件",
|
|
7
7
|
"homepage": "https://github.com/ikenxuan/karin-plugin-kkk",
|
|
8
|
-
"commitHash": "
|
|
9
|
-
"shortCommitHash": "
|
|
8
|
+
"commitHash": "ce16c435af4230a3e270c42addc04391849b58a2",
|
|
9
|
+
"shortCommitHash": "ce16c435"
|
|
10
10
|
}
|