Build 0.9.3
This commit is contained in:
parent
db35fbb6e5
commit
187221d254
|
@ -18,7 +18,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
- fixed multiple program grouping issues with the sandman ui [#1054](https://github.com/sandboxie-plus/Sandboxie/issues/1054)
|
- fixed multiple program grouping issues with the sandman ui [#1054](https://github.com/sandboxie-plus/Sandboxie/issues/1054)
|
||||||
- fixed no disk error [#966](https://github.com/sandboxie-plus/Sandboxie/issues/966)
|
- fixed no disk error [#966](https://github.com/sandboxie-plus/Sandboxie/issues/966)
|
||||||
- fixed issue with 32bit build using qMake, the /O2 option resulted in a crash in teh QSbieDll.dll [#995](https://github.com/sandboxie-plus/Sandboxie/issues/995)
|
- fixed issue with 32bit build using qMake, the /O2 option resulted in a crash in teh QSbieDll.dll [#995](https://github.com/sandboxie-plus/Sandboxie/issues/995)
|
||||||
|
- fixed issue with UserSettings introduced in a recent build [#1054](https://github.com/sandboxie-plus/Sandboxie/issues/1054)
|
||||||
|
|
||||||
|
|
||||||
## [0.9.2 / 5.51.2] - 2021-08-07
|
## [0.9.2 / 5.51.2] - 2021-08-07
|
||||||
|
|
|
@ -307,8 +307,7 @@ SB_STATUS CSbieAPI::Connect(bool withQueue)
|
||||||
m_IniPath = GetIniPath(&bHome);
|
m_IniPath = GetIniPath(&bHome);
|
||||||
qDebug() << "Config file:" << m_IniPath << (bHome ? "(home)" : "(system)");
|
qDebug() << "Config file:" << m_IniPath << (bHome ? "(home)" : "(system)");
|
||||||
|
|
||||||
if (m_pUserSection == NULL)
|
if (m_UserName.isEmpty()) {
|
||||||
{
|
|
||||||
QString UserSection = GetUserSection(&m_UserName);
|
QString UserSection = GetUserSection(&m_UserName);
|
||||||
if(!UserSection.isEmpty())
|
if(!UserSection.isEmpty())
|
||||||
m_pUserSection = new CSbieIni(UserSection, this, this);
|
m_pUserSection = new CSbieIni(UserSection, this, this);
|
||||||
|
|
Loading…
Reference in New Issue