fix
This commit is contained in:
parent
d11d55bd27
commit
44f74a61a7
|
@ -30,6 +30,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
|
||||
### Fixed
|
||||
- fixed uninstall issue in the Sandboxie Classic installer [d1863ff](https://github.com/sandboxie-plus/Sandboxie/commit/d1863ffadfe105c695de71c9e841c2fd568116fe)
|
||||
- added workaround fot chrome not starting on windows 11 with KB5027231 [3040](https://github.com/sandboxie-plus/Sandboxie/issues/3040)
|
||||
|
||||
### Removed
|
||||
- cleaned up duplicate code (thanks lmou523) [#3067](https://github.com/sandboxie-plus/Sandboxie/pull/3067)
|
||||
|
|
|
@ -320,7 +320,7 @@
|
|||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Sandboxie may be issue <a href= "sbie://docs/ sbiemessages">SBIE Messages</a> to the Message Log and shown them as Popups. Some messages are informational and notify of a common, or in some cases, special event that has occurred, other messages indicate an error condition.<br />You can hide selected SBIE messages from being popped up, using the below list:</string>
|
||||
<string>Sandboxie may be issue <a href="sbie://docs/sbiemessages">SBIE Messages</a> to the Message Log and shown them as Popups. Some messages are informational and notify of a common, or in some cases special, event that has occurred, other messages indicate an error condition.<br />You can hide selected SBIE messages from being popped up, using the below list:</string>
|
||||
</property>
|
||||
<property name="wordWrap">
|
||||
<bool>true</bool>
|
||||
|
@ -333,7 +333,7 @@
|
|||
<item row="5" column="1" colspan="3">
|
||||
<widget class="QCheckBox" name="chkNoMessages">
|
||||
<property name="text">
|
||||
<string>Disable SBIE messages popups (SBIE will still be logged to the log tab)</string>
|
||||
<string>Disable SBIE messages popups (they will still be logged to the Messages tab)</string>
|
||||
</property>
|
||||
<property name="checked">
|
||||
<bool>false</bool>
|
||||
|
@ -1283,7 +1283,7 @@
|
|||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Keeping Sandboxie up to date with the rolling releases of Windows and compatible with all web browsers is a never-ending endeavor. You can support the development by <a href="https://sandboxie-plus.com/go.php?to=sbie-contribute">directly contributing to the project</a>, showing your support by <a href="https://sandboxie-plus.com/go.php?to=sbie-obtain-cert">purchasing a supporter certificate</a>, becomeing a patron by <a href="https://sandboxie-plus.com/go.php?to=patreon">subscribing on Patreon</a>, or through a <a href="https://sandboxie-plus.com/go.php?to=dontate">PayPal donation</a>.<br />Your support plays a vital role in the advancement and maintenance of Sandboxie.</string>
|
||||
<string>Keeping Sandboxie up to date with the rolling releases of Windows and compatible with all web browsers is a never-ending endeavor. You can support the development by <a href="https://sandboxie-plus.com/go.php?to=sbie-contribute">directly contributing to the project</a>, showing your support by <a href="https://sandboxie-plus.com/go.php?to=sbie-obtain-cert">purchasing a supporter certificate</a>, becoming a patron by <a href="https://sandboxie-plus.com/go.php?to=patreon">subscribing on Patreon</a>, or through a <a href="https://sandboxie-plus.com/go.php?to=donate">PayPal donation</a>.<br />Your support plays a vital role in the advancement and maintenance of Sandboxie.</string>
|
||||
</property>
|
||||
<property name="textFormat">
|
||||
<enum>Qt::RichText</enum>
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.9 KiB |
|
@ -2057,7 +2057,11 @@ void CSandMan::OnStatusChanged()
|
|||
QString appTitle = tr("Sandboxie-Plus v%1").arg(GetVersion());
|
||||
#endif
|
||||
|
||||
if (theAPI->IsConnected())
|
||||
bool bConnected = theAPI->IsConnected();
|
||||
m_pConnect->setEnabled(!bConnected);
|
||||
m_pDisconnect->setEnabled(bConnected);
|
||||
|
||||
if (bConnected)
|
||||
{
|
||||
bool bPortable = IsFullyPortable();
|
||||
|
||||
|
@ -2293,11 +2297,7 @@ void CSandMan::OnMenuHover(QAction* action)
|
|||
|
||||
if (m_pMenuBar->actions().at(0) == action && m_pMaintenance)
|
||||
{
|
||||
bool bConnected = theAPI->IsConnected();
|
||||
m_pConnect->setEnabled(!bConnected);
|
||||
m_pDisconnect->setEnabled(bConnected);
|
||||
|
||||
m_pMaintenanceItems->setEnabled(!bConnected);
|
||||
m_pMaintenanceItems->setEnabled(!theAPI->IsConnected());
|
||||
|
||||
bool DrvInstalled = CSbieUtils::IsInstalled(CSbieUtils::eDriver);
|
||||
bool DrvLoaded = CSbieUtils::IsRunning(CSbieUtils::eDriver);
|
||||
|
|
Loading…
Reference in New Issue