chore(PyWin32): release build 219

This commit is contained in:
Iristyle
2014-08-24 09:07:41 -07:00
parent c40c98759d
commit 2071659158
2 changed files with 72 additions and 8 deletions

View File

@@ -3,10 +3,10 @@
<metadata>
<id>PyWin32</id>
<title>Python for Windows Extensions</title>
<version>218.0</version>
<version>219.0</version>
<authors>Mark Hammond</authors>
<owners>Ethan Brown</owners>
<summary>Python for Windows Extensions adds a number of extensions allowing interaction with Win32 APIs and COM. This package should work for Python 2.3, 2.4, 2.5, 2.6, 2.7, 3.1, 3.2, 3.3 or 3.4</summary>
<summary>Python for Windows Extensions adds a number of extensions allowing interaction with Win32 APIs and COM. This package should work for Python 2.3, 2.4, 2.5, 2.6, 2.7, 3.1, 3.2, 3.3, 3.4 or 3.5</summary>
<description>Additional documentation can be found at ActiveState
http://docs.activestate.com/activepython/2.7/pywin32/PyWin32.HTML
@@ -18,12 +18,75 @@
<iconUrl>https://github.com/Iristyle/ChocolateyPackages/raw/master/PyWin32/PyWin32-logo.png</iconUrl>
<releaseNotes>Since build 218:
----------------
* win32com.mapi
Addded outlook interface IConverterSession with methods MIMEToMAPI,
MAPIToMIMEStm, and SetAdrBook.
Added method OpenStreamOnFile (Nick Czeczulin)
Ignore PT_MV_TSTRING along with PT_TSTRING (Nick Czeczulin)
* Conversions from a Python object to a variant now does a better job
at deciding what variant type to use, taking into account the
size and sign of the value (Stefan Schukat via patch #127)
* Add support for VT_I8 and VT_UI8 when converting a variant into a
Python object (Stefan Schukat via patch #128)
* win32com.mapi.exchange
Added 64-bit support by excluding the 32-bit Ex2kSdk.lib functions
from 64-bit builds. Unfortunately, this means that only
IExchangeManageStore::CreateStoreEntryID is currently available in a
64-bit build. (Nick Czeczulin)
* adodbapi updated to version 2.6 -- new examples folder includes short
programs for reading and writing .xls spreadsheets and reading ACCESS
.mdb files using SQL. New functions .is64bit.Python() and
is64bit.os() to help pick the correct drivers.
New function .schema_table.names() returns a list of all tables in a
database.
Ability for a Windows computer to be a database proxy for a remote
(Linux or Windows) unit.
see adodbapi/README.txt for more information.
* Fix issue implementing COM objects from within a virtualenv (Kevin
Smyth via issue #3597965)
* Fix some issues using decimal objects with Python 3.3 and later
(rupole)
* Add a counterpart to VB's Nothing, from patch 3609027 by Stefan
Schukat
* win32api
Handle REG_QWORD (64-bit ints) (rupole)
Add GetEnvironmentVariableW and SetEnvironmentVariableW (rupole)
Fix function pointer check for win32api.GetNativeSystemInfo
(bug#665)
* win32com.shell
Add interfaces IFileOperation and IFileOperationProgressSink
Add interfaces IFileOperation and IFileOperationProgressSink
Add SHParseDisplayName (feature req #3585998) (rupole)
* win32com.propsys
Add interfaces IPropertyChange, IPropertyChangeArray, and IObjectWithPropertyKey
Add functions PSCreateSimplePropertyChange, PSCreatePropertyChangeArray, and SHSetDefaultProperties
Add interfaces IPropertyChange, IPropertyChangeArray, and
IObjectWithPropertyKey
Add functions PSCreateSimplePropertyChange,
PSCreatePropertyChangeArray, and SHSetDefaultProperties
* win32crypt
Add functions and objects for handling certificates and certificate
stores
* win32gui
Add RegisterHotKey (rupole)
* win32evtlog
Add several more Evt* functions (Vista+ event log API)
* win32prociess
Add EnumProcessModulesEx (feature request 3608155) (rupole)
* pythonwin
Fix a hang using the tools menu
Since build 217:
----------------

View File

@@ -1,4 +1,5 @@
$package = 'PyWin32'
$build = '219'
try {
# python.exe should be in PATH based on
@@ -55,12 +56,12 @@ try {
# http://www.jordanrinke.com/2011/06/22/pywin32-silent-install/
$destination = Join-Path $Env:Temp "pywin32-218.$simpleVersion.exe"
$destination = Join-Path $Env:Temp "pywin32-$build.$simpleVersion.exe"
$params = @{
packageName = $package;
fileFullPath = $destination;
url = "http://sourceforge.net/projects/pywin32/files/pywin32/Build%20218/pywin32-218.win32-py$simpleVersion.exe/download";
url64bit = "http://sourceforge.net/projects/pywin32/files/pywin32/Build%20218/pywin32-218.win-amd64-py$simpleVersion.exe/download";
url = "http://sourceforge.net/projects/pywin32/files/pywin32/Build%20$build/pywin32-$build.win32-py$simpleVersion.exe/download";
url64bit = "http://sourceforge.net/projects/pywin32/files/pywin32/Build%20$build/pywin32-$build.win-amd64-py$simpleVersion.exe/download";
}
# no special 64-bit for these python versions