Skip to content

Commit 3e0762f

Browse files
author
Juan Segura
committed
v1.6.0-beta5
1 parent 63060b8 commit 3e0762f

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

ZXBStudio/BuildSystem/ZXProjectBuilder.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,11 @@ public class ZXProjectBuilder
123123
}
124124
}
125125

126-
byte[] binary = File.ReadAllBytes(binFile);
126+
byte[] binary = new byte[0];
127+
if (File.Exists(binFile))
128+
{
129+
binary = File.ReadAllBytes(binFile);
130+
}
127131

128132
Cleanup(project.ProjectPath, binFile);
129133

ZXBStudio/Dialogs/ZXAboutDialog.axaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ public ZXAboutDialog()
1212
{
1313
InitializeComponent();
1414

15-
txtBuild.Text = "1.6.0-beta4";
16-
txtDate.Text = "2025-05-21";
15+
txtBuild.Text = "1.6.0-beta5";
16+
txtDate.Text = "2025-10-05";
1717

1818
btnClose.Click += BtnClose_Click;
1919

0 commit comments

Comments
 (0)