Skip to content

Commit

Permalink
更新 readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Zzaphkiel committed Oct 19, 2023
1 parent 66de25d commit a7634de
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
6 changes: 4 additions & 2 deletions app/view/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,8 @@ def __initWindow(self):

def __onShowLcuConnectError(self, api, obj):
if type(obj) is SummonerGamesNotFound:
msg = self.tr("The server returned abnormal content, which may be under maintenance.")
msg = self.tr(
"The server returned abnormal content, which may be under maintenance.")
elif type(obj) is RetryMaximumAttempts:
msg = self.tr("Exceeded maximum retry attempts.")
else:
Expand Down Expand Up @@ -251,7 +252,8 @@ def __onShowUpdateMessageBox(self, info):
def pollingConnectTimeout(self):
while True:
if connector.exceptApi:
self.showLcuConnectError.emit(connector.exceptApi, connector.exceptObj)
self.showLcuConnectError.emit(
connector.exceptApi, connector.exceptObj)
connector.exceptApi = None
connector.exceptObj = None

Expand Down
17 changes: 14 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

## 快速上手 🤗
### 直接使用打包好的程序
[release](https://github.com/Zzaphkiel/Seraphine/releases/latest) 中下载最新版本的压缩包后解压至本地,运行 `Seraphine.exe` 开始使用。
[release](https://github.com/Zzaphkiel/Seraphine/releases/latest) 中下载最新版本的压缩包后解压,运行文件夹内 `Seraphine.exe` 开始使用。

### 或通过本地构建
下载项目 `zip` 压缩包解压至文件夹或通过 `git`
Expand Down Expand Up @@ -71,10 +71,21 @@ python main.py
- 一键卸下勋章 ✅


## 我会因为使用 Seraphine 而被封号吗 😨?

## 常见问题 FAQ 🧐
### Q:我会因为使用 Seraphine 而被封号吗 😨?
由于本程序的功能**完全**基于英雄联盟客户端 API 实现,**不含任何**对客户端以及游戏文件本体、代码以及内存的读取或破坏其完整性的行为。因此仅使用 Seraphine 时极大概率(99.99%)不会被封号,但**并不保证**一定不会封号。

在当前 Release 版本的使用过程中,发现了存在封号现象(见 [#104](https://github.com/Zzaphkiel/Seraphine/issues/104)),具体原因不明。请您尽量避免在游戏过程中打开 Seraphine 🥹。

### Q:为什么客户端无法连接 / 功能无法使用 / 生涯界面无线转圈 / 最新战绩更新有延迟?
Seraphine 提供的战绩查询相关功能的数据均是由英雄联盟客户端接口所提供的,程序只是负责将它们显示出来。所以如果遇到功能无法使用或数据更新由延迟的情况,原因基本出在英雄联盟服务器本身,与 Seraphine 大概率没啥关系~

### Q:从本地直接运行代码报错怎么办?
换 Python `3.8` 试试。

### Q:为什么不提供具体某模式 / 某英雄总场次以及总胜率?
英雄联盟客户端没有提供相关数据接口,我们做不到哇~


## 帮助我们改进 Seraphine 😘
个人开发能力有限,在您的使用过程中,如果遇到程序的任何 BUG 或不符合预期的行为,欢迎提出 [issue](https://github.com/Zzaphkiel/Seraphine/issues)。发布 issue 时请务必带上**环境信息**(如 Python 版本等),最好能提供问题的**复现过程**;若程序报错请带上**错误信息**
Expand Down

0 comments on commit a7634de

Please sign in to comment.