Skip to content

Commit 89cc944

Browse files
committed
bump version
1 parent 31d7441 commit 89cc944

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

MaiChartManager/AppMain.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace MaiChartManager;
1111

1212
public class AppMain : ISingleInstance
1313
{
14-
public const string Version = "1.5.2";
14+
public const string Version = "1.5.3";
1515
public static Browser? BrowserWin { get; set; }
1616

1717
private Launcher _launcher;

MaiChartManager/Utils/CriUtils.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,7 @@ public static async Task<byte[]> CreateAcbWithPreview(string wavPath, byte[] awb
6565
var headSize = 16 + awbBytes[5] * count + awbBytes[6] * count + awbBytes[7] * count;
6666
var header = new byte[headSize];
6767
Array.Copy(awbBytes, header, headSize);
68-
var streamAwbAfs2Header = new CriTable();
69-
streamAwbAfs2Header.Load(criTable.Rows[0]["StreamAwbAfs2Header"] as byte[]);
68+
var streamAwbAfs2Header = criTable.Rows[0].GetTable("StreamAwbAfs2Header");
7069
streamAwbAfs2Header.Rows[0]["Header"] = header;
7170
criTable.Rows[0]["StreamAwbAfs2Header"] = streamAwbAfs2Header.Save();
7271

Packaging/Base/AppxManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
99
IgnorableNamespaces="win32dependencies"
1010
>
11-
<Identity Name="22369479C5405.MaiChartManager" Publisher="CN=86A51452-7790-46C3-9A4B-1207C2C97940" Version="1.5.2.0"
11+
<Identity Name="22369479C5405.MaiChartManager" Publisher="CN=86A51452-7790-46C3-9A4B-1207C2C97940" Version="1.5.3.0"
1212
ProcessorArchitecture="x64" />
1313
<Properties>
1414
<DisplayName>MaiChartManager</DisplayName>

Packaging/make.cmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ del .\*.appx
33
rmdir /s /q Pack
44

55
pushd ..\AquaMai
6+
taskkill /f /im dotnet.exe
67
dotnet cake
78
copy /y Output\AquaMai.dll ..\MaiChartManager\Resources
89
popd

0 commit comments

Comments
 (0)