This commit is contained in:
DavidXanatos 2024-12-21 09:06:50 +01:00
parent 04e58ce6e3
commit 6158883152
4 changed files with 15 additions and 5 deletions

View File

@ -4,6 +4,16 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.15.5 / 5.70.5] - 2024-12-??
### Fixed
- fixed crash when pressing run as admin with non advanced view
## [1.15.4 / 5.70.4] - 2024-12-19
### Added

View File

@ -26,7 +26,7 @@
#define VERSION_MJR 5
#define VERSION_MIN 70
#define VERSION_REV 4
#define VERSION_REV 5
#define VERSION_UPD 0
#if VERSION_UPD > 0

View File

@ -452,7 +452,7 @@ void CSandMan::CreateMaintenanceMenu()
m_pImDiskCpl = m_pMaintenance->addAction(LoadWindowsIcon(ImDiskCpl, 0), tr("Virtual Disks"), this, [ImDiskCpl]() {
std::wstring imDiskCpl = ImDiskCpl.toStdWString();
SHELLEXECUTEINFOW si = { 0 };
si.cbSize = sizeof(SHELLEXECUTEINFO);
si.cbSize = sizeof(si);
si.lpVerb = L"runas";
si.lpFile = imDiskCpl.c_str();
si.nShow = SW_SHOW;
@ -2425,8 +2425,8 @@ void CSandMan::OnStatusChanged()
#endif
bool bConnected = theAPI->IsConnected();
m_pConnect->setEnabled(!bConnected);
m_pDisconnect->setEnabled(bConnected);
if (m_pConnect) m_pConnect->setEnabled(!bConnected);
if (m_pDisconnect) m_pDisconnect->setEnabled(bConnected);
if (bConnected)
{

View File

@ -2,7 +2,7 @@
#define VERSION_MJR 1
#define VERSION_MIN 15
#define VERSION_REV 4
#define VERSION_REV 5
#define VERSION_UPD 0
#ifndef STR