This repository was archived by the owner on Aug 23, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 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
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" ) ]
Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ It's written in C# with Windows Forms using Visual Studio 2017. Please see the [
1414## System requirements
1515System 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
You can’t perform that action at this time.
0 commit comments