mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
* bump to 2.14
* icon should restore the main window if it is minimized git-svn-id: svn://svn.code.sf.net/p/processhacker/code@4138 21ef857c-d57f-4fe0-8362-d861dc6d29cd
This commit is contained in:
@@ -1,5 +1,10 @@
|
||||
Process Hacker
|
||||
|
||||
2.14
|
||||
* NEW/IMPROVED:
|
||||
* FIXED:
|
||||
* Icon should restore the main window if it is minimized
|
||||
|
||||
2.13
|
||||
* NEW/IMPROVED:
|
||||
* Added copy support to PE viewer
|
||||
|
||||
@@ -451,8 +451,8 @@ END
|
||||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 2,13,0,0
|
||||
PRODUCTVERSION 2,13,0,0
|
||||
FILEVERSION 2,14,0,0
|
||||
PRODUCTVERSION 2,14,0,0
|
||||
FILEFLAGSMASK 0x17L
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
@@ -469,12 +469,12 @@ BEGIN
|
||||
BEGIN
|
||||
VALUE "CompanyName", "wj32"
|
||||
VALUE "FileDescription", "Process Hacker"
|
||||
VALUE "FileVersion", "2.13"
|
||||
VALUE "FileVersion", "2.14"
|
||||
VALUE "InternalName", "Process Hacker"
|
||||
VALUE "LegalCopyright", "Licensed under the GNU GPL, v3."
|
||||
VALUE "OriginalFilename", "ProcessHacker.exe"
|
||||
VALUE "ProductName", "Process Hacker"
|
||||
VALUE "ProductVersion", "2.13"
|
||||
VALUE "ProductVersion", "2.14"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
||||
@@ -1810,7 +1810,12 @@ LRESULT CALLBACK PhMainWndProc(
|
||||
break;
|
||||
case WM_PH_TOGGLE_VISIBLE:
|
||||
{
|
||||
if (IsWindowVisible(PhMainWndHandle))
|
||||
if (IsIconic(PhMainWndHandle))
|
||||
{
|
||||
ShowWindow(PhMainWndHandle, SW_RESTORE);
|
||||
SetForegroundWindow(PhMainWndHandle);
|
||||
}
|
||||
else if (IsWindowVisible(PhMainWndHandle))
|
||||
{
|
||||
ShowWindow(PhMainWndHandle, SW_HIDE);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user