Skip to content
This repository was archived by the owner on Aug 23, 2025. It is now read-only.

Commit 92e5d0b

Browse files
committed
Minor stuff
Fixed version requirements and some other minor UI changes
1 parent a499cbf commit 92e5d0b

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

86BoxManager/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333

34-
[assembly: AssemblyVersion("1.6.1.0")]
35-
[assembly: AssemblyFileVersion("1.6.1.0")]
34+
[assembly: AssemblyVersion("1.6.2.0")]
35+
[assembly: AssemblyFileVersion("1.6.2.0")]

86BoxManager/dlgSettings.Designer.cs

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

86BoxManager/dlgSettings.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,12 @@ private void Get86BoxVersion()
8585
try
8686
{
8787
FileVersionInfo vi = FileVersionInfo.GetVersionInfo(txtEXEdir.Text + @"\86Box.exe");
88-
if (vi.FilePrivatePart >= 2000) //Officially supported builds
88+
if (vi.FilePrivatePart >= 2008) //Officially supported builds
8989
{
9090
lbl86BoxVer1.Text = vi.FileMajorPart.ToString() + "." + vi.FileMinorPart.ToString() + "." + vi.FileBuildPart.ToString() + "." + vi.FilePrivatePart.ToString() + " - supported";
9191
lbl86BoxVer1.ForeColor = Color.ForestGreen;
9292
}
93-
else if (vi.FilePrivatePart >= 1763 && vi.FilePrivatePart < 2000) //Should mostly work
93+
else if (vi.FilePrivatePart >= 1763 && vi.FilePrivatePart < 2008) //Should mostly work...
9494
{
9595
lbl86BoxVer1.Text = vi.FileMajorPart.ToString() + "." + vi.FileMinorPart.ToString() + "." + vi.FileBuildPart.ToString() + "." + vi.FilePrivatePart.ToString() + " - partially supported";
9696
lbl86BoxVer1.ForeColor = Color.Orange;
@@ -103,8 +103,8 @@ private void Get86BoxVersion()
103103
}
104104
catch(FileNotFoundException ex)
105105
{
106-
lbl86BoxVer1.Text = "N/A";
107-
lbl86BoxVer1.ForeColor = Color.DarkGray;
106+
lbl86BoxVer1.Text = "86Box.exe not found";
107+
lbl86BoxVer1.ForeColor = Color.Gray;
108108
}
109109
}
110110

@@ -409,4 +409,4 @@ private void btnBrowse3_Click(object sender, EventArgs e)
409409
}
410410
}
411411
}
412-
}
412+
}

0 commit comments

Comments
 (0)