Misaka

Results 5 issues of Misaka

First of all, thank you for the tool you provided. Is there a way to change the color of the toast?

## 问题描述 在局部导入的情况下,地图标注失败 ### 代码 ```vue import { BaiduMap, BMapGLConstant } from "baidu-map-vue3"; import { ref } from "vue"; const point = ref({ lng: 116.403963, lat: 39.915119, }); const isShowMaker...

## RVC model load error Hi, I have added a RVC model trained by myself but got this error, what happened please? It told me that the model is not...

### 背景 or 问题 ## 背景 - 使用Authelia等外部验证彻底代理帐户验证,无需AutoBangumi本身的第二次验证。 ## 功能请求 - 目前AutoBangumi只有一个帐户,因此建议增加「可选关闭帐户验证」功能。 - 如果「可选关闭帐户验证」功能与现有帐户验证系统冲突,建议增加「BasicAuth」登录功能。 - 如果AutoBangumi此后有增加多帐户系统的计划,建议在设计时考虑添加OpenID登录功能。 ### 目标 & 方案简述 - 可选关闭帐户验证 - 可选使用BasicAuth帐户验证 - 可选使用OpenID、OAuth2等帐户验证 ### 方案设计 & 实现步骤...

RFC

# 添加docker部署方式 ## 包含内容 - docker-compose部署 - docker部署 - readme更新 ## 存在的潜在问题 - 在config.yml中,mongodb的host配置十分难以定位,因此为了可以正常运行,Dockerfile中粗暴地将所有的`host: 127.0.0.1`替换,可能会存在潜在问题 - 可能的解决方式:config.yml中,mongodb配置节下的`host: 127.0.0.1`替换为`host: 127.0.0.1 #mongo host`或者其他存在唯一行的特征的内容方便Dockerfile中使用sed替换,redis配置节同理。 - 在`src/install/install.js`中,有些地方使用例如`fs.existsSync('./install.lock')`的方式定位文件,有的地方使用`path.join(__dirname, '../config/config.yml')`的方式定位文件。后一种定位文件的方式存在`__dirname`路径是`src/install`的问题,例如config.yml会定位到`src/config/config.yml`,实际上这个路径并不存在。暂时没有好的办法,先在Dockerfile中粗暴地将它替换掉了。