Skip to content

Commit

Permalink
#1 更新安装器说明
Browse files Browse the repository at this point in the history
  • Loading branch information
DoctorReid committed Jul 20, 2024
1 parent 4f707c0 commit 2360cf4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
13 changes: 12 additions & 1 deletion .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ __绝区零 - 一条龙__

## 学习方式

### 使用自己的Python环境
以下二选一

### 1.1.使用自己的Python环境

不懂代码的可以跳过使用下一种

1. 创建你自己的虚拟环境
2. `git clone [email protected]:DoctorReid/ZenlessZoneZero-OneDragon.git`
Expand All @@ -25,6 +29,13 @@ __绝区零 - 一条龙__
- 复制 `env.sample.bat`,重命名为 `env.bat`,并修改内容为你的虚拟环境的python路径,使用 `app.bat` 运行。
-`src`文件夹加入环境变量`PYTHONPATH`,执行 `python src/zzz_od/gui/app.py`

### 1.2.使用安装器

1.[最新Release](https://github.com/DoctorReid/ZenlessZoneZero-OneDragon/releases/tag/latest) 中下载 `ZZZ-OD-X.Y.Z.zip` (X.Y.Z为版本号)
2. 选择一个完整的英文目录,右键解压 `提取到当前位置`
3. 运行 `installer.exe`,选择 `一键安装`。如果无法同步代码,请在【设置】中填入你的网络代理。安装过程可能需要5~10分钟,请耐心等待。
4. 在安装器上点击`启动一条龙`,或手动运行 `app.bat`


### 常见报错

Expand Down
4 changes: 1 addition & 3 deletions src/one_dragon/gui/install_card/all_install_card.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,4 @@ def _on_run_clicked(self) -> None:
:return:
"""
log.info('启动中...大约需要10+秒')
result = app_utils.start_one_dragon(restart=True)
if not result:
log.error('启动失败')
app_utils.start_one_dragon(restart=True)
2 changes: 1 addition & 1 deletion src/one_dragon/gui/install_card/code_install_card.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def get_display_content(self) -> Tuple[QIcon, str]:
msg = f"{gt('已同步代码', 'ui')}" + ' ' + current_branch

if self._updated:
msg += ' ' + gt('更新后需重启脚本生效。如不能运行,尝试使用安装器更新运行依赖', 'ui')
msg += ' ' + gt('更新后需重启脚本生效。如不能运行,尝试使用安装器更新运行依赖,或更新安装器', 'ui')
else:
icon = FluentIcon.INFO.icon(color=FluentThemeColor.GOLD.value)

Expand Down

0 comments on commit 2360cf4

Please sign in to comment.