* 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:
wj32
2011-03-15 06:09:01 +00:00
parent eff6d8f854
commit c993521cf1
3 changed files with 15 additions and 5 deletions
+5
View File
@@ -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
+4 -4
View File
@@ -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"
+6 -1
View File
@@ -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);
}