git-svn-id: https://pykd.svn.codeplex.com/svn@60276 9b283d60-5439-405e-af05-b73fd8c4d996

This commit is contained in:
SND\kernelnet_cp 2011-01-17 15:32:53 +00:00
parent a3560b2b77
commit f932c40469
2 changed files with 11 additions and 4 deletions

View File

@ -1,3 +1,10 @@
version 0.0.14 17/01/2011
[+] added : __getattribute__ method for dbgModuleClass class to simplify access to module symbols's offsets
[+] added : __str__ method for typedVar class, so it can be outputed by print operator
[!] bug fixed: issue #8103 ( !py windbg extension imports modules into the global space )
[~] changed: eval() renamed to expr()
version 0.0.13 27/12/2010 version 0.0.13 27/12/2010
[+] added : go, step, trace routine for control execution [+] added : go, step, trace routine for control execution
[+] added : bp class for control breakpoints [+] added : bp class for control breakpoints

View File

@ -53,8 +53,8 @@ END
// //
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,0,13,0 FILEVERSION 0,0,14,0
PRODUCTVERSION 0,0,13,0 PRODUCTVERSION 0,0,14,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, 13, 0" VALUE "FileVersion", "0, 0, 14, 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, 13, 0" VALUE "ProductVersion", "0, 0, 14, 0"
END END
END END
BLOCK "VarFileInfo" BLOCK "VarFileInfo"