koishi-plugin-bilibili-notify 2.0.0-alpha.7 → 2.0.0-alpha.8

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/README.md CHANGED
@@ -5,6 +5,7 @@
5
5
  ---
6
6
 
7
7
  - koishi-plugin-bilibili-notify [![npm](https://img.shields.io/npm/v/koishi-plugin-bilibili-notify?style=flat-square)](https://www.npmjs.com/package/koishi-plugin-bilibili-notify)
8
+ - [重新订阅](#重新订阅)
8
9
  - [功能](#功能)
9
10
  - [注意事项](#注意事项)
10
11
  - [安装](#安装)
@@ -14,6 +15,10 @@
14
15
  - [感谢](#感谢)
15
16
  - [License](#License)
16
17
 
18
+ ## 重新订阅
19
+
20
+ 由于版本 `2.0.0-alpha.7` 重构了订阅功能,从 `2.0.0-alpha.7` 以前版本升级到以后版本的需重新订阅
21
+
17
22
  ## 功能
18
23
 
19
24
  订阅B站UP主动态
@@ -184,6 +189,7 @@
184
189
  - ver 2.0.0-alpha.5 移除:选项pushUrl,选项platform 新增:选项customLive,主人账号中platform选项。支持多平台,且可同时推送不同平台,单个UP主只能推送一个平台
185
190
  - ver 2.0.0-alpha.6 修复:直播推送发送失败的bug
186
191
  - ver 2.0.0-alpha.7 重构:现已支持同一UP多平台推送
192
+ - ver 2.0.0-alpha.8 新增:重新订阅提示
187
193
 
188
194
  ## 交流群
189
195
 
package/lib/index.js CHANGED
@@ -358,6 +358,9 @@ function apply(ctx, config) {
358
358
  // 设置config
359
359
  globalConfig = config;
360
360
  // 设置提示
361
+ ctx.notifier.create({
362
+ content: '从2.0.0-alpha.7以前版本更新需重新订阅'
363
+ });
361
364
  ctx.notifier.create({
362
365
  content: '请使用Auth插件创建超级管理员账号,没有权限将无法使用该插件提供的指令。'
363
366
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "koishi-plugin-bilibili-notify",
3
3
  "description": "Koishi bilibili notify plugin",
4
- "version": "2.0.0-alpha.7",
4
+ "version": "2.0.0-alpha.8",
5
5
  "contributors": [
6
6
  "Akokko <admin@akokko.com>"
7
7
  ],