Skip to content

Commit

Permalink
1.2.6pre10 修复少量bug PreRelease
Browse files Browse the repository at this point in the history
  • Loading branch information
Ginsakura committed May 15, 2024
1 parent 27dab27 commit 6beafb6
Show file tree
Hide file tree
Showing 5 changed files with 298 additions and 6 deletions.
4 changes: 2 additions & 2 deletions HitDelay.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ def __init__(self,subroot):
self.historyAccValueLabel = Label(self.historyFrame, text='000.000000ms ',font=self.font, relief="groove", anchor="e")
self.historyAccValueLabel.place(relx=0.4,y=180,height=30,relwidth=0.6)
self.style.configure("update.TButton",font=self.font, relief="raised", background='#A6E22B')
self.historyDeleteButton = ttk.Button(self.historyFrame, text='更新记录', style="update.TButton",command=self.UpdateCursorHistory)
self.historyDeleteButton.place(x=0,y=210,height=30,relwidth=0.5)
self.historyUpdateButton = ttk.Button(self.historyFrame, text='更新记录', style="update.TButton",command=self.UpdateCursorHistory)
self.historyUpdateButton.place(x=0,y=210,height=30,relwidth=0.5)
self.style.configure("delete.TButton",font=self.font, relief="raised", foreground='#FF4040', background='#FF2020')
self.historyDeleteButton = ttk.Button(self.historyFrame, text='删除记录', style="delete.TButton",command=self.DeleteCursorHistory)
self.historyDeleteButton.place(relx=0.5,y=210,height=30,relwidth=0.5)
Expand Down
4 changes: 2 additions & 2 deletions MusyncSavDecodeGUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
from HitDelay import HitDelayCheck,HitDelayText
import MusyncSavDecode

version = '1.2.6rc3'
version = '1.2.6rc4'
isPreRelease = True
preVersion = "1.2.6pre9"
preVersion = "1.2.6pre10"
# isPreRelease = False

class MusyncSavDecodeGUI(object):
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ HitDelay模块用法:启用DLL注入后,在本次游戏进行首次谱面游玩
|--------------------|--------------|
| Spooky Mummy Party | 难度标记错误 |
3. 修复`综合同步率`数值小数部分长度未被限制的bug
4. 修复`HitDelay`中按钮命名重复的bug
3. 优化
1. 简化变量存储与读取流程
#### Release 3
Expand Down
6 changes: 6 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@
1. xxx
2. 修复
1. 修复综合同步率小数位数未被限制的bug
2. `Songname.json`中错误的记录

| 曲名 | 错误原因 |
|--------------------|--------------|
| Spooky Mummy Party | 难度标记错误 |
3. 修复`综合同步率`数值小数部分长度未被限制的bug
3. 优化
1. 简化变量存储与读取流程
#### Release 3
Expand Down
Loading

0 comments on commit 6beafb6

Please sign in to comment.