simple-robot / simbot-component-mirai

simple-robot下的mirai组件
https://component-mirai.simbot.forte.love/
GNU Affero General Public License v3.0
20 stars 0 forks source link

配置文件使用 `disableAccountSecretes` 替代 `accountSecrets`; 变更配置属性 `cacheDir` 的默认行为 #120

Closed ForliyScarlet closed 1 year ago

ForliyScarlet commented 1 year ago

配置属性 config.accountSecrets 使用 config.disableAccountSecretes 代替:

{
  "config": { "accountSecrets": false }
}

调整为

{
  "config": { "disableAccountSecretes": false }
}

调整前后含义不变,旧属性暂做保留以兼容旧配置(会输出警告)。

变更配置属性 cacheDir 的默认行为

config.cacheDir 现在默认会使用 cache/$CODE$ 作为默认目录。参考 https://github.com/mamoe/mirai/issues/2475

注: 此变更会导致默认行为与变更前不一致。如果希望保持兼容,请考虑手动调整 cache 目录到指定位置或主动指定具体的 config.cacheDir 值。

如果希望变更为原本的行为,请在bot配置文件中追加配置属性:

{
  "config": {
    "cacheDir": "cache"
  }
}