Typo fixes

This commit is contained in:
isaak654 2023-01-08 01:24:49 +01:00
parent 1198777efc
commit 34918b722e
No known key found for this signature in database
GPG Key ID: 59D402040437EC44
6 changed files with 15 additions and 10 deletions

View File

@ -56,6 +56,11 @@ jobs:
echo 'issuw->issue' >> dictionary.txt
echo 'compatybility->compatibility' >> dictionary.txt
echo 'incompatybility->incompatibility' >> dictionary.txt
echo 'compatybilities->compatibilities' >> dictionary.txt
echo 'incompatybilities->incompatibilities' >> dictionary.txt
echo 'logn->long' >> dictionary.txt
echo 'postion->position' >> dictionary.txt
echo 'trase->trace' >> dictionary.txt
# Only lowercase letters are allowed in --ignore-words-list
codespell --dictionary=dictionary.txt --dictionary=dictionary_rare.txt --dictionary=dictionary_code.txt \
--ignore-words-list="wil,unknwn,tolen,pevent,doubleclick,parm,parms,etcp,ois,ba,ptd,modell,namesd,stdio,uint,errorstring,ontext,atend,deque,ecounter,nmake,namess,inh,daa,varient,lite,uis,emai,ws,slanguage" \

View File

@ -4,18 +4,18 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.6.5 / 5.61.5] - 2022-12-??
## [1.6.5 / 5.61.5] - 2023-??-??
### Added
- added user mode sys call tracing, now sys calls can be logged also in compartment type boxes as well as all win32k syscall
- added user mode syscall tracing, now system calls can be logged also in compartment type boxes as well as all Win32k syscalls
### Changed
- reworked trase log model, not it can load over 10e6 entries un under 1 second
- reworked trace log model, now it can load over 10e6 entries in under 1 second
### Fixed
- fixed issue with msedge in a security enchanced box [#2571](https://github.com/sandboxie-plus/Sandboxie/issues/2571)
- opened OpenIpcPath=\{BEC19D6F-D7B2-41A8-860C-8787BB964F2D} on ARM64 systems
- fixed incompatybility with windows 11 21h2 ARM64 [#2431](https://github.com/sandboxie-plus/Sandboxie/issues/2431)
- fixed issue with Microsoft Edge in a security enhanced box [#2571](https://github.com/sandboxie-plus/Sandboxie/issues/2571)
- opened OpenIpcPath=\\{BEC19D6F-D7B2-41A8-860C-8787BB964F2D} on ARM64 systems
- fixed incompatibility with Windows 11 21H2 ARM64 [#2431](https://github.com/sandboxie-plus/Sandboxie/issues/2431)

View File

@ -311,7 +311,7 @@ InstrumentationCallbackAsm@0 proc
push eax ; Return value
push ecx ; Return address
call _InstrumentationCallback@8
;add esp, 08h ; Correct stack postion
;add esp, 08h ; Correct stack position
popfd ; Restore stored flags
popad ; Restore stored registers

View File

@ -821,7 +821,7 @@ _FX NTSTATUS Syscall_Api_Invoke(PROCESS *proc, ULONG64 *parms)
if (!traced && ((proc->call_trace & TRACE_ALLOW) || ((status != STATUS_SUCCESS) && (proc->call_trace & TRACE_DENY))))
{
// Supress Sbie's own calls to DeviceIoControlFile
// Suppress Sbie's own calls to DeviceIoControlFile
if ((strcmp(entry->name, "DeviceIoControlFile") != 0) || user_args[5] != API_SBIEDRV_CTLCODE)
{
WCHAR trace_str[128];

View File

@ -295,7 +295,7 @@ void CTreeItemModel::Fill(STreeNode* pParent, /*const QModelIndex &parent,*/ con
//int Count = pParent->Children.count();
//beginInsertRows(parent, Count, Count);
//if(!m_LeafsOnly) // when all non virtual entries are always leafs, dont fill the aux map
//if(!m_LeafsOnly) // when all non virtual entries are always leafs, don't fill the aux map
// pParent->Aux.insert(pNode->ID, pParent->Children.size());
pNode->Row = pParent->Children.size();
pParent->Children.append(pNode);

View File

@ -1370,7 +1370,7 @@ void CSandMan::timerEvent(QTimerEvent* pEvent)
m_pEnableMonitoring->setChecked(bIsMonitoring);
int iTraceCount = theAPI->GetTraceCount();
if (!bIsMonitoring && iTraceCount > 0)
bIsMonitoring = true; // don't disable the view as logn as there are entries shown
bIsMonitoring = true; // don't disable the view as long as there are entries shown
if (bIsMonitoring && m_pTraceView)
m_pTraceInfo->setText(QString::number(iTraceCount));
m_pTraceView->setEnabled(bIsMonitoring);