Skip to content

Commit

Permalink
1.2.8pre7 尝试修复如果4K PreRelease
Browse files Browse the repository at this point in the history
  • Loading branch information
Ginsakura committed Nov 9, 2024
1 parent 0908bb0 commit fa69cad
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
8 changes: 6 additions & 2 deletions Difficulty_ScoreAnalyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ def Analyze():
axR.yaxis.set_major_locator(MultipleLocator(1))
ax.xaxis.set_major_locator(MultipleLocator(1))
ax.set_xlim(0,16)
minScore = int(min([min(score[0]),min(score[1])]))
if len(score[0]) == 0:
min0 = 125
if len(score[1]) == 0:
min1 = 125
minScore = int(min([min0,min1]))
ax.set_ylim(minScore-1,125)
axR.set_ylim(minScore-1,125)

Expand Down Expand Up @@ -96,7 +100,7 @@ def Analyze():

ax.scatter(diff[0],score[0],alpha=0.7,color='#8A68D0',s=5)
ax.scatter(diff[1],score[1],alpha=0.7,color='#F83535',s=5)
ax.text(18.2,123,"\n".join(labels),ha="left",va="top",alpha=1,
ax.text(18,123,"\n".join(labels),ha="left",va="top",alpha=1,
fontdict={'family':'LXGW WenKai Mono','weight':'normal','size':10})
ax.legend(prop={'family':'LXGW WenKai Mono','weight':'normal','size':10},framealpha=0.4) #show label
ax.set_xlabel('Difficulty') #x_label
Expand Down
4 changes: 2 additions & 2 deletions Launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

version = '1.2.8rc2'
isPreRelease = True
preVersion = "1.2.8pre6"
isPreRelease = False
preVersion = "1.2.8pre7"
# isPreRelease = False

def launcher():
root = Tk()
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,9 @@ HitDelay模块用法:启用DLL注入后,在本次游戏进行首次谱面游玩
1. xxx
2. 修复
1. 修复能够获取版本号时出现Json解析错误的bug
2. 尝试修复如果4K/6K模式没有一次游玩记录时`Difficulty_ScoreAnalyze`无法加载的bug
3. 优化
1. xxx
1. 微调难度分布曲线中文本的位置
#### Release 2
2. 修复
1. ***修复新用户释放资源时,图标文件名称错误的bug***
Expand Down
7 changes: 5 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@
9. 1.2.7 环境更新:`matplotlib 3.7.2->3.9.2`,`numpy 1.25.2->2.0.1`

### Version 1.2.8
#### PreRelease
1. 修复
#### PreRelease
2. 修复
1. 修复能够获取版本号时出现Json解析错误的bug
2. 尝试修复如果4K/6K模式没有一次游玩记录时`Difficulty_ScoreAnalyze`无法加载的bug
3. 优化
1. 微调难度分布曲线中文本的位置
#### Release 2
2. 修复
1. ***修复新用户释放资源时,图标文件名称错误的bug***
Expand Down

0 comments on commit fa69cad

Please sign in to comment.