@sjtdev/koishi-plugin-dota2tracker 1.2.13 → 1.2.14

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,3 +1,7 @@
1
+ # 1.2.14
2
+ **修复**:
3
+ - 修复插件配置中`周报功能`与`日报功能`错误地成为必须项的问题,感谢[issue](../../issues/1)捉虫!
4
+
1
5
  # 1.2.13
2
6
  **新增&改进**:
3
7
  - 战报模板`match_1`追加显示命石名,并调整了其他信息的显示效果以适配此改动。
package/lib/index.js CHANGED
@@ -1248,7 +1248,8 @@ var Config = import_koishi.Schema.intersect([
1248
1248
  dailyReportSwitch: import_koishi.Schema.const(true).required(),
1249
1249
  dailyReportHours: import_koishi.Schema.number().min(0).max(23).default(6).description("日报时间小时"),
1250
1250
  dailyReportShowCombi: import_koishi.Schema.boolean().default(true).description("日报是否显示组合")
1251
- })
1251
+ }),
1252
+ import_koishi.Schema.object({})
1252
1253
  ]),
1253
1254
  import_koishi.Schema.object({
1254
1255
  weeklyReportSwitch: import_koishi.Schema.boolean().default(false).description("周报功能")
@@ -1258,7 +1259,8 @@ var Config = import_koishi.Schema.intersect([
1258
1259
  weeklyReportSwitch: import_koishi.Schema.const(true).required(),
1259
1260
  weeklyReportDayHours: import_koishi.Schema.tuple([import_koishi.Schema.number().min(1).max(7), import_koishi.Schema.number().min(0).max(23)]).default([1, 10]).description("周报发布于周(几)的(几)点"),
1260
1261
  weeklyReportShowCombi: import_koishi.Schema.boolean().default(true).description("周报是否显示组合")
1261
- })
1262
+ }),
1263
+ import_koishi.Schema.object({})
1262
1264
  ])
1263
1265
  ]),
1264
1266
  import_koishi.Schema.object({
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sjtdev/koishi-plugin-dota2tracker",
3
3
  "description": "koishi插件-追踪群友的DOTA2对局",
4
- "version": "1.2.13",
4
+ "version": "1.2.14",
5
5
  "main": "lib/index.js",
6
6
  "typings": "lib/index.d.ts",
7
7
  "files": [