This commit is contained in:
DavidXanatos 2021-07-22 10:16:26 +02:00
parent 3bde1b45ae
commit e87fc95fde
6 changed files with 15 additions and 12 deletions

View File

@ -43,6 +43,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
-- code signature is no longer required to change config, to protect presets use the the existing "EditAdminOnly=y" option
-- code signature validation of user mode components is disabled when windows is booted in test signing mode
- reworked process creation code to use PsSetCreateProcessNotifyRoutineEx and improved process termination
- improved full tray icon to be more distringuishable from the empty one
### Fixed
- added missing hook for ConnectEx

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 417 B

After

Width:  |  Height:  |  Size: 373 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 536 B

After

Width:  |  Height:  |  Size: 503 B

View File

@ -193,11 +193,11 @@ CSandMan::CSandMan(QWidget *parent)
m_pTrayIcon = new QSystemTrayIcon(Icon, this);
m_pTrayIcon->setToolTip("Sandboxie-Plus");
connect(m_pTrayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)), this, SLOT(OnSysTray(QSystemTrayIcon::ActivationReason)));
m_bIconEmpty = false;
m_bIconEmpty = true;
m_bIconDisabled = false;
m_pTrayMenu = new QMenu();
QAction* pShowHide = m_pTrayMenu->addAction(QIcon(":/SandMan.png"), tr("Show/Hide"), this, SLOT(OnShowHide()));
QAction* pShowHide = m_pTrayMenu->addAction(QIcon(":/IconFull.png"), tr("Show/Hide"), this, SLOT(OnShowHide()));
QFont f = pShowHide->font();
f.setBold(true);
pShowHide->setFont(f);
@ -429,7 +429,7 @@ void CSandMan::CreateMenus()
m_pUpdate = m_pMenuHelp->addAction(tr("Check for Updates"), this, SLOT(CheckForUpdates()));
m_pMenuHelp->addSeparator();
m_pAboutQt = m_pMenuHelp->addAction(tr("About the Qt Framework"), this, SLOT(OnAbout()));
m_pAbout = m_pMenuHelp->addAction(QIcon(":/SandMan.png"), tr("About Sandboxie-Plus"), this, SLOT(OnAbout()));
m_pAbout = m_pMenuHelp->addAction(QIcon(":/IconFull.png"), tr("About Sandboxie-Plus"), this, SLOT(OnAbout()));
}
void CSandMan::CreateToolBar()
@ -2091,13 +2091,15 @@ void CSandMan::LoadLanguage()
}
// Make sure that QPlatformTheme strings won't be marked as vanished in all .ts files, even after running lupdate
@
QT_TRANSLATE_NOOP("QPlatformTheme", "OK");
QT_TRANSLATE_NOOP("QPlatformTheme", "Apply");
QT_TRANSLATE_NOOP("QPlatformTheme", "Cancel");
QT_TRANSLATE_NOOP("QPlatformTheme", "&Yes");
QT_TRANSLATE_NOOP("QPlatformTheme", "&No");
@
static const char* platform_strings[] = {
QT_TRANSLATE_NOOP("QPlatformTheme", "OK"),
QT_TRANSLATE_NOOP("QPlatformTheme", "Apply"),
QT_TRANSLATE_NOOP("QPlatformTheme", "Cancel"),
QT_TRANSLATE_NOOP("QPlatformTheme", "&Yes"),
QT_TRANSLATE_NOOP("QPlatformTheme", "&No"),
};
//////////////////////////////////////////////////////////////////////////////////////////
// WinSpy based window finder

View File

@ -1,8 +1,8 @@
#pragma once
#define VERSION_MJR 0
#define VERSION_MIN 8
#define VERSION_REV 9
#define VERSION_MIN 9
#define VERSION_REV 0
#define VERSION_UPD 0
#ifndef STR