Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidXanatos committed Oct 20, 2023
1 parent 48c349d commit 9dc5219
Show file tree
Hide file tree
Showing 370 changed files with 199,383 additions and 43,134 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).




## [1.5.3] - 2023-10-20

### Changed
- updated PHlib to version 3.0.7270



## [1.5.2] - 2023-05-02

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions MiscHelpers/Common/Finder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@

bool CFinder::m_DarkMode = false;

QWidget* CFinder::AddFinder(QWidget* pList, QObject* pFilterTarget, bool HighLightOption, CFinder** ppFinder)
QWidget* CFinder::AddFinder(QTreeView* pTree, QObject* pFilterTarget, bool HighLightOption, CFinder** ppFinder)
{
QWidget* pWidget = new QWidget();
QVBoxLayout* pLayout = new QVBoxLayout();
pLayout->setContentsMargins(0,0,0,0);
pWidget->setLayout(pLayout);

pLayout->addWidget(pList);
pLayout->addWidget(pTree);
CFinder* pFinder = new CFinder(pFilterTarget, pWidget, HighLightOption);
pLayout->addWidget(pFinder);

Expand Down
2 changes: 1 addition & 1 deletion MiscHelpers/Common/Finder.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class MISCHELPERS_EXPORT CFinder: public QWidget
static void SetDarkMode(bool bDarkMode) { m_DarkMode = bDarkMode; }
static bool GetDarkMode() { return m_DarkMode; }

static QWidget* AddFinder(QWidget* pList, QObject* pFilterTarget, bool HighLightOption = true, CFinder** ppFinder = NULL);
static QWidget* AddFinder(QTreeView* pTree, QObject* pFilterTarget, bool HighLightOption = true, CFinder** ppFinder = NULL);

QRegularExpression GetRegExp() const;
bool GetHighLight() const { return m_pHighLight ? m_pHighLight->isChecked() : false; }
Expand Down
16 changes: 8 additions & 8 deletions ProcessHacker/.editorconfig
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
root=true
root = true

[*]
charset=utf-8
end_of_line=crlf
indent_style=space
indent_size=4
trim_trailing_whitespace=true
insert_final_newline=true
[*.{c,c++,cc,cpp,cppm,cxx,h,h++,hh,hpp,hxx,inl,ipp,ixx,tlh,tli}]
charset = utf-8
end_of_line = crlf
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true
39 changes: 24 additions & 15 deletions ProcessHacker/KSystemInformer/KSystemInformer.inf
Original file line number Diff line number Diff line change
Expand Up @@ -15,30 +15,19 @@ ClassGuid = {b86dff51-a31e-4bac-b3cf-e8cfe75c9fc2}
Provider = SystemInformer
DriverVer = 09/01/2022,3.0.0000.0000
CatalogFile = KSystemInformer.cat
PnpLockdown = 1

[DestinationDirs]
DefaultDestDir = 12

[DefaultInstall.nt]
CopyFiles = SystemInformer.DriverFiles

[DefaultInstall.nt.Services]
AddService = KSystemInformer,,SystemInformer.Service

[DefaultUninstall.nt]
DelFiles = SystemInformer.DriverFiles

[DefaultUninstall.nt.Services]
DelService = KSystemInformer,0x200
DefaultDestDir = 13

[SystemInformer.Service]
DisplayName = KSystemInformer
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
StartType = 3 ; SERVICE_DEMAND_START
ErrorControl = 1 ; SERVICE_ERROR_NORMAL
ServiceBinary = %12%\systeminformer.sys
ServiceBinary = %13%\systeminformer.sys

[SystemInformer.DriverFiles]
[SystemInformer.CopyFiles]
systeminformer.sys
ksi.dll

Expand All @@ -51,3 +40,23 @@ ksi.dll = 1,,

[Strings]
DiskId1 = "KSystemInformer Disk #1"

;
; AMD64 Section
;

[DefaultInstall.NTamd64]
CopyFiles = SystemInformer.CopyFiles

[DefaultInstall.NTamd64.Services]
AddService = KSystemInformer,,SystemInformer.Service

;
; ARM64 Section
;

[DefaultInstall.NTarm64]
CopyFiles = SystemInformer.CopyFiles

[DefaultInstall.NTarm64.Services]
AddService = KSystemInformer,,SystemInformer.Service
20 changes: 0 additions & 20 deletions ProcessHacker/KSystemInformer/KSystemInformer.sln
Original file line number Diff line number Diff line change
Expand Up @@ -16,64 +16,44 @@ EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|ARM64 = Debug|ARM64
Debug|Win32 = Debug|Win32
Debug|x64 = Debug|x64
Release|ARM64 = Release|ARM64
Release|Win32 = Release|Win32
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F4853009-C5D2-4A25-BE4D-BB0D9F84E2FF}.Debug|ARM64.ActiveCfg = Debug|ARM64
{F4853009-C5D2-4A25-BE4D-BB0D9F84E2FF}.Debug|ARM64.Build.0 = Debug|ARM64
{F4853009-C5D2-4A25-BE4D-BB0D9F84E2FF}.Debug|ARM64.Deploy.0 = Debug|ARM64
{F4853009-C5D2-4A25-BE4D-BB0D9F84E2FF}.Debug|Win32.ActiveCfg = Debug|Win32
{F4853009-C5D2-4A25-BE4D-BB0D9F84E2FF}.Debug|Win32.Build.0 = Debug|Win32
{F4853009-C5D2-4A25-BE4D-BB0D9F84E2FF}.Debug|Win32.Deploy.0 = Debug|Win32
{F4853009-C5D2-4A25-BE4D-BB0D9F84E2FF}.Debug|x64.ActiveCfg = Debug|x64
{F4853009-C5D2-4A25-BE4D-BB0D9F84E2FF}.Debug|x64.Build.0 = Debug|x64
{F4853009-C5D2-4A25-BE4D-BB0D9F84E2FF}.Debug|x64.Deploy.0 = Debug|x64
{F4853009-C5D2-4A25-BE4D-BB0D9F84E2FF}.Release|ARM64.ActiveCfg = Release|ARM64
{F4853009-C5D2-4A25-BE4D-BB0D9F84E2FF}.Release|ARM64.Build.0 = Release|ARM64
{F4853009-C5D2-4A25-BE4D-BB0D9F84E2FF}.Release|ARM64.Deploy.0 = Release|ARM64
{F4853009-C5D2-4A25-BE4D-BB0D9F84E2FF}.Release|Win32.ActiveCfg = Release|Win32
{F4853009-C5D2-4A25-BE4D-BB0D9F84E2FF}.Release|Win32.Build.0 = Release|Win32
{F4853009-C5D2-4A25-BE4D-BB0D9F84E2FF}.Release|Win32.Deploy.0 = Release|Win32
{F4853009-C5D2-4A25-BE4D-BB0D9F84E2FF}.Release|x64.ActiveCfg = Release|x64
{F4853009-C5D2-4A25-BE4D-BB0D9F84E2FF}.Release|x64.Build.0 = Release|x64
{F4853009-C5D2-4A25-BE4D-BB0D9F84E2FF}.Release|x64.Deploy.0 = Release|x64
{B1863396-A667-42DB-97AC-C5E033CEE321}.Debug|ARM64.ActiveCfg = Debug|ARM64
{B1863396-A667-42DB-97AC-C5E033CEE321}.Debug|ARM64.Build.0 = Debug|ARM64
{B1863396-A667-42DB-97AC-C5E033CEE321}.Debug|ARM64.Deploy.0 = Debug|ARM64
{B1863396-A667-42DB-97AC-C5E033CEE321}.Debug|Win32.ActiveCfg = Debug|Win32
{B1863396-A667-42DB-97AC-C5E033CEE321}.Debug|Win32.Build.0 = Debug|Win32
{B1863396-A667-42DB-97AC-C5E033CEE321}.Debug|Win32.Deploy.0 = Debug|Win32
{B1863396-A667-42DB-97AC-C5E033CEE321}.Debug|x64.ActiveCfg = Debug|x64
{B1863396-A667-42DB-97AC-C5E033CEE321}.Debug|x64.Build.0 = Debug|x64
{B1863396-A667-42DB-97AC-C5E033CEE321}.Debug|x64.Deploy.0 = Debug|x64
{B1863396-A667-42DB-97AC-C5E033CEE321}.Release|ARM64.ActiveCfg = Release|ARM64
{B1863396-A667-42DB-97AC-C5E033CEE321}.Release|ARM64.Build.0 = Release|ARM64
{B1863396-A667-42DB-97AC-C5E033CEE321}.Release|ARM64.Deploy.0 = Release|ARM64
{B1863396-A667-42DB-97AC-C5E033CEE321}.Release|Win32.ActiveCfg = Release|Win32
{B1863396-A667-42DB-97AC-C5E033CEE321}.Release|Win32.Build.0 = Release|Win32
{B1863396-A667-42DB-97AC-C5E033CEE321}.Release|Win32.Deploy.0 = Release|Win32
{B1863396-A667-42DB-97AC-C5E033CEE321}.Release|x64.ActiveCfg = Release|x64
{B1863396-A667-42DB-97AC-C5E033CEE321}.Release|x64.Build.0 = Release|x64
{B1863396-A667-42DB-97AC-C5E033CEE321}.Release|x64.Deploy.0 = Release|x64
{B385D394-19CC-48BC-827E-AF9ADCE559E0}.Debug|ARM64.ActiveCfg = Debug|ARM64
{B385D394-19CC-48BC-827E-AF9ADCE559E0}.Debug|ARM64.Build.0 = Debug|ARM64
{B385D394-19CC-48BC-827E-AF9ADCE559E0}.Debug|ARM64.Deploy.0 = Debug|ARM64
{B385D394-19CC-48BC-827E-AF9ADCE559E0}.Debug|Win32.ActiveCfg = Debug|Win32
{B385D394-19CC-48BC-827E-AF9ADCE559E0}.Debug|Win32.Build.0 = Debug|Win32
{B385D394-19CC-48BC-827E-AF9ADCE559E0}.Debug|Win32.Deploy.0 = Debug|Win32
{B385D394-19CC-48BC-827E-AF9ADCE559E0}.Debug|x64.ActiveCfg = Debug|x64
{B385D394-19CC-48BC-827E-AF9ADCE559E0}.Debug|x64.Build.0 = Debug|x64
{B385D394-19CC-48BC-827E-AF9ADCE559E0}.Debug|x64.Deploy.0 = Debug|x64
{B385D394-19CC-48BC-827E-AF9ADCE559E0}.Release|ARM64.ActiveCfg = Release|ARM64
{B385D394-19CC-48BC-827E-AF9ADCE559E0}.Release|ARM64.Build.0 = Release|ARM64
{B385D394-19CC-48BC-827E-AF9ADCE559E0}.Release|ARM64.Deploy.0 = Release|ARM64
{B385D394-19CC-48BC-827E-AF9ADCE559E0}.Release|Win32.ActiveCfg = Release|Win32
{B385D394-19CC-48BC-827E-AF9ADCE559E0}.Release|Win32.Build.0 = Release|Win32
{B385D394-19CC-48BC-827E-AF9ADCE559E0}.Release|Win32.Deploy.0 = Release|Win32
{B385D394-19CC-48BC-827E-AF9ADCE559E0}.Release|x64.ActiveCfg = Release|x64
{B385D394-19CC-48BC-827E-AF9ADCE559E0}.Release|x64.Build.0 = Release|x64
{B385D394-19CC-48BC-827E-AF9ADCE559E0}.Release|x64.Deploy.0 = Release|x64
Expand Down
Loading

0 comments on commit 9dc5219

Please sign in to comment.