Skip to content

Commit

Permalink
v1.3.0 init
Browse files Browse the repository at this point in the history
  • Loading branch information
Hanxven committed Dec 5, 2024
1 parent 29d6af2 commit 66df242
Show file tree
Hide file tree
Showing 17 changed files with 892 additions and 1 deletion.
9 changes: 9 additions & 0 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,15 @@ export default defineConfig({
{
text: '发行版本',
link: '/updates'
},
{
text: '更多参考',
items: [
{
text: '发送模板',
link: '/in-game-send-templates'
}
]
}
],

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/updates/v1.3.0/main-ui_spectate-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/updates/v1.3.0/main-ui_tabs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/updates/v1.3.0/ongoing-game_main.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,3 +139,27 @@ League Akari 的设计哲学是尽可能还原接口数据,保持中性,而
Akari 是《摇曳百合》中的角色名字。

也可以是《邻家索菲》的 Akari。

# 开发问题

## 无法安装依赖

在中国大陆, 访问 GitHub 会受到限制。而 Electron 的安装依赖是从 GitHub 下载的,所以可能会出现安装依赖失败的情况。

尝试使用镜像源或代理,或手动下载文件到依赖目录中。

## PowerShell 中文乱码

Windows 下,需设置其默认编码为 UTF-8。

将下列内容添加到 PowerShell 配置文件中,示例:`C:\Users\{username}\Documents\PowerShell\Microsoft.PowerShell_profile.ps1`

```powershell
$OutputEncoding = [Console]::OutputEncoding = [Text.UTF8Encoding]::UTF8
```

配置文件位置可通过 `$PROFILE` 变量查看。

```powershell
PS C:\Users\example> $Profile
```
Loading

0 comments on commit 66df242

Please sign in to comment.