We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63060b8 commit 3e0762fCopy full SHA for 3e0762f
ZXBStudio/BuildSystem/ZXProjectBuilder.cs
@@ -123,7 +123,11 @@ public class ZXProjectBuilder
123
}
124
125
126
- byte[] binary = File.ReadAllBytes(binFile);
+ byte[] binary = new byte[0];
127
+ if (File.Exists(binFile))
128
+ {
129
+ binary = File.ReadAllBytes(binFile);
130
+ }
131
132
Cleanup(project.ProjectPath, binFile);
133
ZXBStudio/Dialogs/ZXAboutDialog.axaml.cs
@@ -12,8 +12,8 @@ public ZXAboutDialog()
12
{
13
InitializeComponent();
14
15
- txtBuild.Text = "1.6.0-beta4";
16
- txtDate.Text = "2025-05-21";
+ txtBuild.Text = "1.6.0-beta5";
+ txtDate.Text = "2025-10-05";
17
18
btnClose.Click += BtnClose_Click;
19
0 commit comments