mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-21 12:53:23 +08:00
git-svn-id: https://pykd.svn.codeplex.com/svn@58081 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
parent
470e376d73
commit
ee971fa0e9
13
changelog
13
changelog
@ -1,3 +1,16 @@
|
|||||||
|
version 0.0.12 27/11/2010
|
||||||
|
[+] added : getCurrentPorcess, setCurrentProcess routines
|
||||||
|
[!] fixed: loadModule return None for non existin module with out outputing error message
|
||||||
|
[+] added : getProcessorMode, setProcessorMode routines;
|
||||||
|
[+] added : sample stacks.py
|
||||||
|
[+] added: getThreadList routine; returns thread object's ptr list
|
||||||
|
[!] fixed : loadTypedVar for unnamed union tag ::<unnamed-tag>
|
||||||
|
[!] fixed : loadMemory does not throw exception and return false
|
||||||
|
[!] bug fixed: issue #7727 ( loadUnicodeString returns empty string )
|
||||||
|
[+] added: isKernelDebugging routine
|
||||||
|
[+] added: windbg snippet displaying IAT for module
|
||||||
|
[!] bug fixed: findModule does not work for address < 4GB
|
||||||
|
|
||||||
version 0.0.11 22/11/2010
|
version 0.0.11 22/11/2010
|
||||||
[!] bug fixed: issue #7717 ( !py command failed to find standart modules )
|
[!] bug fixed: issue #7717 ( !py command failed to find standart modules )
|
||||||
[!] bug fixed: issue #7718 ( sys.argv[0] does not contain script name )
|
[!] bug fixed: issue #7718 ( sys.argv[0] does not contain script name )
|
||||||
|
@ -53,8 +53,8 @@ END
|
|||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 0,0,11,0
|
FILEVERSION 0,0,12,0
|
||||||
PRODUCTVERSION 0,0,11,0
|
PRODUCTVERSION 0,0,12,0
|
||||||
FILEFLAGSMASK 0x17L
|
FILEFLAGSMASK 0x17L
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
@ -70,11 +70,11 @@ BEGIN
|
|||||||
BLOCK "041904b0"
|
BLOCK "041904b0"
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "FileDescription", "pykd - python extension for windbg"
|
VALUE "FileDescription", "pykd - python extension for windbg"
|
||||||
VALUE "FileVersion", "0, 0, 11, 0"
|
VALUE "FileVersion", "0, 0, 12, 0"
|
||||||
VALUE "InternalName", "pykd"
|
VALUE "InternalName", "pykd"
|
||||||
VALUE "OriginalFilename", "pykd.dll"
|
VALUE "OriginalFilename", "pykd.dll"
|
||||||
VALUE "ProductName", "pykd - python extension for windbg"
|
VALUE "ProductName", "pykd - python extension for windbg"
|
||||||
VALUE "ProductVersion", "0, 0, 11, 0"
|
VALUE "ProductVersion", "0, 0, 12, 0"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
Loading…
Reference in New Issue
Block a user