Skip to content

Commit

Permalink
[RELEASE] release v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LittleNyima committed May 22, 2023
1 parent 6e718a3 commit e504997
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 12 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

| 主分支版本 | 开发分支版本 | PyPI 版本 | 发行版版本 |
| :--------: | :----------: | :-------: | :--------: |
| 0.5.8 | 0.6.0 | 0.5.8 | 0.5.8 |
| 0.6.0 | 0.6.0 | 0.6.0 | 0.6.0 |

目前第一阶段开发已完成,历史开发计划见[该页面](docs/history-dev-plan.md)

Expand All @@ -20,7 +20,7 @@
- [ ] 支持手动设置 API URL
- [x] 支持夜间模式
- [ ] 支持多用户切换
- [ ] 美化抽卡导出页面
- [ ] 美化程序界面

## 常见问题解答

Expand All @@ -30,11 +30,13 @@

### 下载可执行程序

目前提供两种分发途径:[GitHub Release](https://github.com/LittleNyima/honkai-starrail-toolkit/releases)[蓝奏云](https://wwmg.lanzouy.com/ikFwo0wjorxg),两种途径的内容相同,可以自行选择下载方式。
目前提供两种分发途径:[GitHub Release](https://github.com/LittleNyima/honkai-starrail-toolkit/releases)[蓝奏云](https://wwmg.lanzouy.com/iwDYF0x00q0f),两种途径的内容相同,可以自行选择下载方式。

***BREAKING:目前用户界面的第一个版本已经实现完成,界面预览:***

![gui_preview](https://s1.ax1x.com/2023/05/08/p90QWex.png)
![gui preview gacha](https://s1.ax1x.com/2023/05/23/p9o7y3d.png)

![gui preview unlock](https://s1.ax1x.com/2023/05/23/p9o76gA.png)

### 命令行安装

Expand Down
10 changes: 6 additions & 4 deletions releases/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
Release v0.5.8
* 重新绘制了用户管理界面的svg logo
* 支持夜间模式主题
* 优化了部分逻辑,修复已知问题
Release v0.6.0
* 支持设置程序显示语言
* 支持禁用自动检查更新
* 支持解锁120帧
* 美化程序界面
* 修复了已知问题
6 changes: 3 additions & 3 deletions releases/dist.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"version": "0.5.8",
"version": "0.6.0",
"dist": {
"GitHub_dist": "https://github.com/LittleNyima/honkai-starrail-toolkit/releases",
"netdisk_dist": "https://wwmg.lanzouy.com/ikFwo0wjorxg"
"netdisk_dist": "https://wwmg.lanzouy.com/iwDYF0x00q0f"
},
"changelog": "Release v0.5.8\n * 重新绘制了用户管理界面的svg logo\n * 支持夜间模式主题\n * 优化了部分逻辑,修复已知问题"
"changelog": "Release v0.6.0\n * 支持设置程序显示语言\n * 支持禁用自动检查更新\n * 支持解锁120帧\n * 美化程序界面\n * 修复了已知问题"
}
3 changes: 2 additions & 1 deletion starrail/gui/interfaces/unlock_fps.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,11 @@ def __initWidget(self):
self.statusCard.addStretch(1)

def __initStatus(self):
self.currFpsfps = safe_get_fps()
self.currFps = safe_get_fps()
self.__setCurrFPS(self.currFps)

def __setCurrFPS(self, fps: int):
self.currFps = fps
self.currFpsLabel.setText(babelfish.ui_curr_fps(fps))

def __setFps(self, value):
Expand Down

0 comments on commit e504997

Please sign in to comment.