Skip to content

Commit

Permalink
1.2.6pre9 修复综合同步率数值小数部分长度未被限制的bug PreRelease
Browse files Browse the repository at this point in the history
  • Loading branch information
Ginsakura committed May 11, 2024
1 parent 190348f commit 27dab27
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 14 deletions.
4 changes: 2 additions & 2 deletions MainWindowOldStyle.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def fixed_map(option):
self.totalSyncFrameLabel.place(x=868,y=48,width=124,height=74)
self.totalSyncTextLabel = Label(self.root, text='综合同步率', anchor="center", font=self.font, relief="flat")
self.totalSyncTextLabel.place(x=870,y=50,width=120,height=30)
self.avgSyncLabel = Label(self.root, text=f'{(self.totalSync / (1 if self.saveCount==0 else self.saveCount))}%', anchor="w", font=self.font, relief="flat")
self.avgSyncLabel = Label(self.root, text=f'{(self.totalSync / (1 if self.saveCount==0 else self.saveCount)):.6f}%', anchor="w", font=self.font, relief="flat")
self.avgSyncLabel.place(x=870,y=90,width=120,height=30)

#筛选控件
Expand Down Expand Up @@ -575,7 +575,7 @@ def UpdateWindowInfo(self):
self.VScroll1.place(x=self.windowInfo[2]-22, y=1, width=20, height=self.windowInfo[3]-162)
# self.saveCountVar.set()
self.saveCountLabel.configure(text=str(self.saveCount+self.excludeCount))
self.avgSyncLabel.configure(text=f'{(self.totalSync / (1 if self.saveCount==0 else self.saveCount))}%')
self.avgSyncLabel.configure(text=f'{(self.totalSync / (1 if self.saveCount==0 else self.saveCount)):.6f}%')
self.developer.place(x=0,y=self.windowInfo[3]-30,width=420,height=30)
self.gitHubLink.place(x=420,y=self.windowInfo[3]-30,width=self.windowInfo[2]-420,height=30)

Expand Down
2 changes: 1 addition & 1 deletion MusyncSavDecodeGUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

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

class MusyncSavDecodeGUI(object):
Expand Down
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ WithConsole版本为带命令提示符界面,适合出现bug时快速定位错
<summary>控制参数详解</summary>

`./musync_data/ExtraFunction.cfg`文件中启用/禁用对应功能

| 配置项 | 默认值 | 值类型 | 配置说明 |
|-----------------------------------|---------------|--------|------------------------------------------------------------------------|
| `EnableAcc-Sync` |false |boolean |是否启用Acc-Synx图表 |
Expand Down Expand Up @@ -108,7 +109,7 @@ HitDelay模块用法:启用DLL注入后,在本次游戏进行首次谱面游玩
## 更新日志
<!--
### Version
#### Release
#### PreRelease
1. 更新
1. xxx
2. 修复
Expand All @@ -117,11 +118,17 @@ HitDelay模块用法:启用DLL注入后,在本次游戏进行首次谱面游玩
1. xxx
-->
### Version 1.2.6
#### Release 4
#### PreRelease
1. 更新
1. xxx
2. 修复
1. xxx
1. 修复综合同步率小数位数未被限制的bug
2. `Songname.json`中错误的记录

| 曲名 | 错误原因 |
|--------------------|--------------|
| Spooky Mummy Party | 难度标记错误 |
3. 修复`综合同步率`数值小数部分长度未被限制的bug
3. 优化
1. 简化变量存储与读取流程
#### Release 3
Expand All @@ -133,6 +140,7 @@ HitDelay模块用法:启用DLL注入后,在本次游戏进行首次谱面游玩
- Invisible Chaos (EZ HD)
3. 更新`songname.json`的内容 (20240220 -> 20240330)
4.`IsFav`字段改为`Status`字段,并扩充状态列表

| Status | 中文释义 | English |
|----------|----------|----------------------|
| ' ' | 无状态 | No Status |
Expand All @@ -143,7 +151,6 @@ HitDelay模块用法:启用DLL注入后,在本次游戏进行首次谱面游玩
2. 修复
1. 修复未启用谱面数据同步的bug
- 因为仓库使用GitHub,所以在国内环境中可能出现无法连接的问题
2.
3. 优化
1.`刷新``解码`合并为`解码并刷新`按钮
2. 优化字体判定流程
Expand Down Expand Up @@ -174,7 +181,7 @@ HitDelay模块用法:启用DLL注入后,在本次游戏进行首次谱面游玩
2. 优化`songname.json`的格式 (20231229 -> 20240118)
3. 优化ci执行流程

## 旧版本更新日志 (1.0.0 - 1.2.6rc6)
## 旧版本更新日志 (1.0.0 - 1.2.5rc6)
<details>
<summary>旧版本更新日志</summary>

Expand Down
4 changes: 2 additions & 2 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
8. 1.2.6 更新ci

### Version 1.2.6
#### Release 4
#### PreRelease
1. 更新
1. xxx
2. 修复
1. xxx
1. 修复综合同步率小数位数未被限制的bug
3. 优化
1. 简化变量存储与读取流程
#### Release 3
Expand Down
1 change: 1 addition & 0 deletions musync_data/Acc-Sync.json
Original file line number Diff line number Diff line change
Expand Up @@ -401,3 +401,4 @@
14.5917,121.67
14.1169,121.78
14.5613,121.70
17.1702,121.02
8 changes: 4 additions & 4 deletions musync_data/songname.json
Original file line number Diff line number Diff line change
Expand Up @@ -1418,10 +1418,10 @@
"00021B12": ["夜月花", 4, 1, 8],
"00021B1B": ["夜月花", 6, 0, 3],
"00021B1C": ["夜月花", 6, 1, 8],
"00021B75": ["spooky mummy party", 4, 0, 5],
"00021B76": ["spooky mummy party", 4, 1, 5],
"00021B7F": ["spooky mummy party", 6, 0, 8],
"00021B80": ["spooky mummy party", 6, 1, 9],
"00021B75": ["Spooky Mummy Party", 4, 0, 5],
"00021B76": ["Spooky Mummy Party", 4, 1, 8],
"00021B7F": ["Spooky Mummy Party", 6, 0, 5],
"00021B80": ["Spooky Mummy Party", 6, 1, 9],
"00021BD9": ["Don't Never Around", 4, 0, 5],
"00021BDA": ["Don't Never Around", 4, 1, 10],
"00021BDB": ["Don't Never Around", 4, 2, 13],
Expand Down

0 comments on commit 27dab27

Please sign in to comment.