ready for release

git-svn-id: https://pykd.svn.codeplex.com/svn@56461 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
SND\kernelnet_cp 2010-10-27 06:28:12 +00:00
parent 7831603e21
commit 58953f5a81
2 changed files with 13 additions and 4 deletions

View File

@ -1,3 +1,12 @@
version 0.0.8 27/10/2010
[+] added: physical memory read support ( for loadBytes, loadWords etc)
[+] added: !pythonpath windbg command - print enviroment var $pythonpath
[+] added: !py windbg command uses $pythonpath var for search scripts
[+] added: ptrSize routine ( returns pointer's size at the target platform )
[!] bug fixed: issue #7164 ( loadTypedVarList can fall in infinite loop )
[+] added: sizeof routine ( returns size of type )
[+] added: sizeof method for typedVarClass ( return size of var in memory )
version 0.0.7 20/08/2010 version 0.0.7 20/08/2010
[+] added: getImplicitThread routine( get address of the current thread ) [+] added: getImplicitThread routine( get address of the current thread )

View File

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