This commit is contained in:
Wengier
2021-08-02 19:28:38 -04:00
parent dcc7c9891c
commit bd8287cd67
2 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
0.83.17
- INT 29h routes output through ANSI.SYS driver in
both IBM PC and PC-98 mode, unless dosbox.conf
setting says ansi.sys=false (joncampbell123)
both IBM PC and PC-98 mode, unless ansi.sys=false
is set in the config setting. (joncampbell123)
0.83.16
- Release notes for this version:
https://dosbox-x.com/release-0.83.16.html

View File

@@ -1,5 +1,5 @@
#define MyAppName "DOSBox-X"
#define MyAppVersion "0.83.16"
#define MyAppVersion "0.83.17"
#define MyAppBit "(32-bit)"
#define MyAppPublisher "joncampbell123 [DOSBox-X Team]"
#define MyAppURL "https://dosbox-x.com/"
@@ -198,7 +198,7 @@ begin
end;
procedure HelpButtonOnClick(Sender: TObject);
begin
MsgBox('The Setup pre-selects a Windows build for you according to your platform automatically, but you can change the default build to run if you encounter specific problem(s) with the pre-selected one.' #13#13 'For example, while the SDL1 version is the default version to run, the SDL2 version may be preferred over the SDL1 version for certain features such as touchscreen input support. Also, MinGW builds may work better with certain features than Visual Studio builds and also be used for lower-end systems.' #13#13 'If you are not sure about which build to use, then you can just leave it unmodified and use the pre-selected one as the default build.', mbConfirmation, MB_OK);
MsgBox('The Setup pre-selects a Windows build for you according to your platform automatically, but you can change the default build to run if you encounter specific problem(s) with the pre-selected one.' #13#13 'For example, while the SDL1 version is the default version to run, the SDL2 version may be preferred over the SDL1 version for certain features such as touchscreen input support. Also, MinGW builds may work better with certain features (such as the Slirp backend for the NE2000 networking) than Visual Studio builds even though they do not come with the debugger.' #13#13 'If you are not sure about which build to use, then you can just leave it unmodified and use the pre-selected one as the default build.', mbConfirmation, MB_OK);
end;
procedure CreateHelpButton(X: integer; Y: integer; W: integer; H: integer);
begin