karin-plugin-kkk 2.36.0 → 2.36.1
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 +14 -0
- package/lib/build-metadata.json +5 -5
- package/lib/core_chunk/amagi.d.mts +6 -0
- package/lib/core_chunk/main.js +331 -127
- package/lib/core_chunk/vendor.js +1 -1
- package/lib/karin-plugin-kkk.css +11 -0
- package/lib/web/assets/CronEditor-DLELr4UG.js +1 -0
- package/lib/web/assets/DesktopLayout-DMqLKe0d.js +1 -0
- package/lib/web/assets/{MobileLayout-DfXVuyA-.js → MobileLayout-Dq6Ng8rW.js} +1 -1
- package/lib/web/assets/ThemeSwitch-C9X8kWTm.js +1 -0
- package/lib/web/assets/{index-3mh4kVq1.css → index-2paV9T2e.css} +1 -1
- package/lib/web/assets/{index-zS6iiHmV.js → index-DhbVGvm8.js} +12 -12
- package/lib/web/assets/separator-D6lAHrvZ.js +1 -0
- package/lib/web/index.html +2 -2
- package/package.json +2 -2
- package/lib/web/assets/CronEditor-KiEwYMrF.js +0 -1
- package/lib/web/assets/DesktopLayout-Cdla4l6u.js +0 -1
- package/lib/web/assets/ThemeSwitch-DcAlzu8R.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
## [2.36.1](https://github.com/ikenxuan/karin-plugin-kkk/compare/v2.36.0...v2.36.1) (2026-06-25)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### 🐛 错误修复
|
|
9
|
+
|
|
10
|
+
* 手机展示配置页面时,底部弹窗改为覆盖全屏。 ([#324](https://github.com/ikenxuan/karin-plugin-kkk/issues/324)) ([b080398](https://github.com/ikenxuan/karin-plugin-kkk/commit/b0803985f88cb61b9acf447e38a7b5c87a76eb0b))
|
|
11
|
+
* 配置面板优化部分布局 ([4e01d4d](https://github.com/ikenxuan/karin-plugin-kkk/commit/4e01d4da303167de22a99a69e39d3ae218be9133))
|
|
12
|
+
* 重写配置页面的cron表达式编辑组件,使其配置完全小白化 [#320](https://github.com/ikenxuan/karin-plugin-kkk/issues/320) ([6571491](https://github.com/ikenxuan/karin-plugin-kkk/commit/6571491e3955c75a09674c51afe248345c64043b))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### 💄 UI 优化
|
|
16
|
+
|
|
17
|
+
* 优化B站预约卡片按钮布局 ([2f0e5f2](https://github.com/ikenxuan/karin-plugin-kkk/commit/2f0e5f29f125cec1032592943cdb915949954196))
|
|
18
|
+
|
|
5
19
|
## [2.36.0](https://github.com/ikenxuan/karin-plugin-kkk/compare/v2.35.0...v2.36.0) (2026-06-19)
|
|
6
20
|
|
|
7
21
|
|
package/lib/build-metadata.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "2.36.
|
|
3
|
-
"buildTime": "2026-06-
|
|
4
|
-
"buildTimestamp":
|
|
2
|
+
"version": "2.36.1",
|
|
3
|
+
"buildTime": "2026-06-25T22:17:41.672Z",
|
|
4
|
+
"buildTimestamp": 1782425861672,
|
|
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": "c8e7ff6961b851409daa1f851259ff5c1c7b0a2d",
|
|
9
|
+
"shortCommitHash": "c8e7ff69"
|
|
10
10
|
}
|
|
@@ -28358,6 +28358,12 @@ declare const kuaishouUtils: kuaishouUtilsModel; //#endregion
|
|
|
28358
28358
|
*/
|
|
28359
28359
|
declare class xiaohongshuSign {
|
|
28360
28360
|
private static client;
|
|
28361
|
+
/**
|
|
28362
|
+
* 创建包含 web_session 的小红书 Web 端游客 Cookie。
|
|
28363
|
+
*
|
|
28364
|
+
* `requestConfig` 会透传到游客会话初始化请求,可用于配置代理、超时等传输参数。
|
|
28365
|
+
*/
|
|
28366
|
+
static createGuestCookie(requestConfig?: AxiosRequestConfig): Promise<string>;
|
|
28361
28367
|
/**
|
|
28362
28368
|
* 生成GET请求的X-S签名
|
|
28363
28369
|
* @param path - API路径
|