update timestamp and conf ref

This commit is contained in:
Wengier
2021-02-21 18:37:22 -05:00
parent ea8c6f506a
commit 0f1a4f6222
6 changed files with 11 additions and 11 deletions

View File

@@ -10,7 +10,7 @@
<category>Emulation</category>
</categories>
<releases>
<release version="@PACKAGE_VERSION@" date="2021-2-19"/>
<release version="@PACKAGE_VERSION@" date="2021-2-21"/>
</releases>
<screenshots>
<screenshot type="default">

View File

@@ -1918,11 +1918,11 @@ timeout = 0
#DOSBOX-X-ADV:# related to uninitialized variables in the data or stack segment. If you intend to run a
#DOSBOX-X-ADV:# game or demo known to have this problem (Second Unreal, for example), set to true, else
#DOSBOX-X-ADV:# set to false. When enabled this option may incur a slight to moderate performance penalty.
# dos clipboard device enable: If enabled, a DOS device will be added for bidirectional communications with the Windows clipboard.
# dos clipboard device enable: If enabled, a DOS device will be added for bidirectional communications with the shared clipboard.
# Setting to "read" will only allow read access, and setting to "write" will only allow write access.
# Setting to "full" or "true" enables both; setting to "false" or "disabled" disables the access or device.
# The default device name is CLIP$, but can be changed with the "dos clipboard device name" setting below.
# dos clipboard device name: Set DOS device name (up to 8 characters) for bidirectional communications with the Windows clipboard.
# dos clipboard device name: Set DOS device name (up to 8 characters) for bidirectional communications with the shared clipboard.
# If unset or invalid, the default name CLIP$ will be used (e.g. "TYPE CLIP$" shows the clipboard contents).
# It has no effect if "dos clipboard device enable" is disabled, and it is deactivated if the secure mode is enabled.
# dos clipboard api: If set, DOS APIs for communications with the Windows clipboard will be enabled.

View File

@@ -766,11 +766,11 @@ timeout = 0
# startquiet: If set, before launching Windows applications to run on the host DOSBox-X will not show messages like "Now run it as a Windows application".
# int33: Enable INT 33H for mouse support.
# keyboardlayout: Language code of the keyboard layout (or none).
# dos clipboard device enable: If enabled, a DOS device will be added for bidirectional communications with the Windows clipboard.
# dos clipboard device enable: If enabled, a DOS device will be added for bidirectional communications with the shared clipboard.
# Setting to "read" will only allow read access, and setting to "write" will only allow write access.
# Setting to "full" or "true" enables both; setting to "false" or "disabled" disables the access or device.
# The default device name is CLIP$, but can be changed with the "dos clipboard device name" setting below.
# dos clipboard device name: Set DOS device name (up to 8 characters) for bidirectional communications with the Windows clipboard.
# dos clipboard device name: Set DOS device name (up to 8 characters) for bidirectional communications with the shared clipboard.
# If unset or invalid, the default name CLIP$ will be used (e.g. "TYPE CLIP$" shows the clipboard contents).
# It has no effect if "dos clipboard device enable" is disabled, and it is deactivated if the secure mode is enabled.
# dos clipboard api: If set, DOS APIs for communications with the Windows clipboard will be enabled.

View File

@@ -1918,11 +1918,11 @@ timeout = 0
# related to uninitialized variables in the data or stack segment. If you intend to run a
# game or demo known to have this problem (Second Unreal, for example), set to true, else
# set to false. When enabled this option may incur a slight to moderate performance penalty.
# dos clipboard device enable: If enabled, a DOS device will be added for bidirectional communications with the Windows clipboard.
# dos clipboard device enable: If enabled, a DOS device will be added for bidirectional communications with the shared clipboard.
# Setting to "read" will only allow read access, and setting to "write" will only allow write access.
# Setting to "full" or "true" enables both; setting to "false" or "disabled" disables the access or device.
# The default device name is CLIP$, but can be changed with the "dos clipboard device name" setting below.
# dos clipboard device name: Set DOS device name (up to 8 characters) for bidirectional communications with the Windows clipboard.
# dos clipboard device name: Set DOS device name (up to 8 characters) for bidirectional communications with the shared clipboard.
# If unset or invalid, the default name CLIP$ will be used (e.g. "TYPE CLIP$" shows the clipboard contents).
# It has no effect if "dos clipboard device enable" is disabled, and it is deactivated if the secure mode is enabled.
# dos clipboard api: If set, DOS APIs for communications with the Windows clipboard will be enabled.

View File

@@ -1,4 +1,4 @@
/*auto-generated*/
#define UPDATED_STR "Feb 19, 2021 3:28:35pm"
#define GIT_COMMIT_HASH "f562256"
#define UPDATED_STR "Feb 21, 2021 6:36:34pm"
#define GIT_COMMIT_HASH "ea8c6f5"
#define COPYRIGHT_END_YEAR "2021"

View File

@@ -3869,14 +3869,14 @@ void DOSBOX_SetupConfigSections(void) {
"set to false. When enabled this option may incur a slight to moderate performance penalty.");
Pstring = secprop->Add_string("dos clipboard device enable",Property::Changeable::WhenIdle, "false");
Pstring->Set_help("If enabled, a DOS device will be added for bidirectional communications with the Windows clipboard.\n"
Pstring->Set_help("If enabled, a DOS device will be added for bidirectional communications with the shared clipboard.\n"
"Setting to \"read\" will only allow read access, and setting to \"write\" will only allow write access.\n"
"Setting to \"full\" or \"true\" enables both; setting to \"false\" or \"disabled\" disables the access or device.\n"
"The default device name is CLIP$, but can be changed with the \"dos clipboard device name\" setting below.");
Pstring->SetBasic(true);
Pstring = secprop->Add_string("dos clipboard device name",Property::Changeable::WhenIdle, "CLIP$");
Pstring->Set_help("Set DOS device name (up to 8 characters) for bidirectional communications with the Windows clipboard.\n"
Pstring->Set_help("Set DOS device name (up to 8 characters) for bidirectional communications with the shared clipboard.\n"
"If unset or invalid, the default name CLIP$ will be used (e.g. \"TYPE CLIP$\" shows the clipboard contents).\n"
"It has no effect if \"dos clipboard device enable\" is disabled, and it is deactivated if the secure mode is enabled.");
Pstring->SetBasic(true);