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

Commit 2454e40

Browse files
committed
Initial 1.6.0 commit
Increased required 86Box version to 2.00 final (build 2000) Updated 86Box download link in README
1 parent 38fafd3 commit 2454e40

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

86BoxManager/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[assembly: AssemblyConfiguration("")]
1010
[assembly: AssemblyCompany("David Simunič and others")]
1111
[assembly: AssemblyProduct("86Box Manager")]
12-
[assembly: AssemblyCopyright("Copyright © 2018-2019 David Simunič")]
12+
[assembly: AssemblyCopyright("Copyright © 2018-2019 David Simunič and others")]
1313
[assembly: AssemblyTrademark("")]
1414
[assembly: AssemblyCulture("")]
1515

@@ -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.5.4.0")]
35-
[assembly: AssemblyFileVersion("1.5.4.0")]
34+
[assembly: AssemblyVersion("1.6.0.0")]
35+
[assembly: AssemblyFileVersion("1.6.0.0")]

86BoxManager/dlgSettings.cs

Lines changed: 2 additions & 2 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 >= 1799) //Officially supported builds
88+
if (vi.FilePrivatePart >= 2000) //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 < 1799) //Should mostly work
93+
else if (vi.FilePrivatePart >= 1763 && vi.FilePrivatePart < 2000) //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;

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ It's written in C# with Windows Forms using Visual Studio 2017. Please see the [
1414
## System requirements
1515
System requirements are the same as for 86Box. Additionally, the following is required:
1616

17-
* [86Box 2.0](http://ci.86box.net/) build 1799 or later (earlier builds don't support all the features the Manager expects)
17+
* [86Box 2.0](http://https://github.com/86Box/86Box/releases) or later (earlier builds don't support all the features the Manager expects)
1818
* [.NET Framework 4.6](https://dotnet.microsoft.com/download/dotnet-framework/net46)
1919

2020
## Support

0 commit comments

Comments
 (0)