Skip to content

Commit

Permalink
1.12.0a
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidXanatos committed Oct 26, 2023
1 parent d33c4d4 commit 342d7ae
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).





## [1.12.1 / 5.67.1] - 2023-10-


## [1.12.0 / 5.67.0] - 2023-10-25

### Added
Expand Down
2 changes: 1 addition & 1 deletion SandboxiePlus/SandMan/SandMan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1896,7 +1896,7 @@ void CSandMan::UpdateDrives()

void CSandMan::UpdateForceUSB()
{
if (!theAPI->GetGlobalSettings()->GetBool("ForceUsbDrives", false))
if (!theAPI->GetGlobalSettings()->GetBool("ForceUsbDrives", false) || !g_CertInfo.active)
return;

QString UsbSandbox = theAPI->GetGlobalSettings()->GetText("UsbSandbox", "USB_Box");
Expand Down
6 changes: 6 additions & 0 deletions SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,7 @@ CSettingsWindow::CSettingsWindow(QWidget* parent)
//COptionsWindow__AddCertIcon(ui.chkUpdateTemplates);
COptionsWindow__AddCertIcon(ui.chkUpdateIssues);
COptionsWindow__AddCertIcon(ui.chkRamDisk);
COptionsWindow__AddCertIcon(ui.chkSandboxUsb);
}

this->installEventFilter(this); // prevent enter from closing the dialog
Expand Down Expand Up @@ -1130,6 +1131,11 @@ void CSettingsWindow::OnRamDiskChange()

void CSettingsWindow::OnVolumeChanged()
{
if (sender() == ui.chkSandboxUsb) {
if (ui.chkSandboxUsb->isChecked())
theGUI->CheckCertificate(this);
}

ui.cmbUsbSandbox->setEnabled(ui.chkSandboxUsb->isChecked());
ui.treeVolumes->setEnabled(ui.chkSandboxUsb->isChecked());

Expand Down
2 changes: 1 addition & 1 deletion SandboxiePlus/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#define VERSION_MJR 1
#define VERSION_MIN 12
#define VERSION_REV 0
#define VERSION_UPD 0
#define VERSION_UPD 1

#ifndef STR
#define STR2(X) #X
Expand Down

0 comments on commit 342d7ae

Please sign in to comment.