This commit is contained in:
DavidXanatos 2020-12-23 11:38:21 +01:00
parent e074d1122e
commit 8df1f83e0a
6 changed files with 62 additions and 3 deletions

View File

@ -4,7 +4,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [0.5.2 / 5.45.1] - 2020-12-22
## [0.5.2 / 5.45.1] - 2020-12-23
### Added
- added advanced new box creation dialog to sandman ui
@ -19,6 +19,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- reorganized the advanced box options a bit
- changed icons (thanks Valinwolf for picking the new once)
- updated Template.ini (thanks isaak654)
- increates max value for disable forced process time in sandman ui
### Fixed
- fixed BSOD introduced in 5.45.0 when using windows 10 "Core isolation"

View File

@ -2365,7 +2365,7 @@ void CBoxPage::FileMigrate_OnOK(CBox &box)
int size;
if (size64 < 1)
size = 1;
size = -1;
else if (size64 > 999999999)
size = 999999999;
else

View File

@ -142,6 +142,9 @@
<ClInclude Include="rc4.h" />
<ClInclude Include="stdafx.h" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="resource1.rc" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>

View File

@ -0,0 +1,55 @@
//---------------------------------------------------------------------------
// Command utility
//---------------------------------------------------------------------------
#include <windows.h>
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252)
#include "common/my_version.h"
//---------------------------------------------------------------------------
// Version
//---------------------------------------------------------------------------
VS_VERSION_INFO VERSIONINFO
FILEVERSION MY_VERSION_BINARY
PRODUCTVERSION MY_VERSION_BINARY
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x40004L
FILETYPE 0x2L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "Comments", "\0"
VALUE "CompanyName", MY_COMPANY_NAME_STRING "\0"
VALUE "FileDescription", MY_PRODUCT_NAME_STRING " configuration file utility\0"
VALUE "FileVersion", MY_VERSION_STRING "\0"
OPTIONAL_VALUE("InternalName", "kmdutil\0")
VALUE "LegalCopyright", MY_COPYRIGHT_STRING "\0"
VALUE "LegalTrademarks", "\0"
OPTIONAL_VALUE("OriginalFilename", "kmdutil.exe\0")
VALUE "PrivateBuild", "\0"
VALUE "ProductName", MY_PRODUCT_NAME_STRING "\0"
VALUE "ProductVersion", MY_VERSION_STRING "\0"
VALUE "SpecialBuild", "\0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END

View File

@ -857,7 +857,7 @@ void CSandMan::OnDisableForce()
if (Status)
{
bool bOK = false;
Seconds = QInputDialog::getInt(this, "Sandboxie-Plus", tr("Please enter the duration for disabling forced programs."), 10, 0, 3600, 1, &bOK);
Seconds = QInputDialog::getInt(this, "Sandboxie-Plus", tr("Please enter the duration for disabling forced programs."), 10, 0, INT_MAX, 1, &bOK);
if (!bOK)
return;
}