Skip to content

Commit

Permalink
Prepare for 0.6.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
vasily-v-ryabov committed Jan 21, 2018
1 parent 0c8f04d commit c9c8be8
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
31 changes: 31 additions & 0 deletions docs/HISTORY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,37 @@
Change Log
==========

0.6.4 NULL pointer access fix and enhancements
--------------------------------------------------------------------
21-January-2018
Bug Fixes:
* Final fix for `ValueError: NULL COM pointer access`.

Enhancements:
* Multi-threading mode (MTA) for comtypes is enabled by default, if it's not initialized
by another library before importing pywinauto.

* Method ``get_value()`` has been added to EditWrapper in UIA backend.

* Method ``scroll()`` has been added for all UIA controls which have ScrollPattern implemented.

* Added methods ``is_minimized/is_maximized/is_normal/get_show_state`` for UIAWrapper.

* Added handling in-place controls inside ListView control and (row, column) indexing
in a grid-like table mode. Examples ::

auto_detected_ctrl = list_view.get_item(0).inplace_control()

combo = list_view.get_item(1,1).inplace_control("ComboBox")
combo.select("Item name")

edit = list_view.get_item(3,4).inplace_control("Edit")
edit.type_keys("some text{ENTER}", set_foreground=False)

dt_picker = list_view.get_item(2,0).inplace_control("DateTimePicker")



0.6.3 A lot of improvements and some optimizations
--------------------------------------------------------------------
03-July-2017
Expand Down
2 changes: 1 addition & 1 deletion pywinauto/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

"""Python package for automating GUI manipulation on Windows"""

__version__ = "0.6.3"
__version__ = "0.6.4"

import sys # noqa: E402
import warnings # noqa: E402
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def setup_path(path = ""):
packages = ["pywinauto", "pywinauto.linux"]

setup(name='pywinauto',
version = '0.6.3',
version = '0.6.4',
description = 'A set of Python modules to automate the Microsoft Windows GUI',
keywords = "windows gui automation GuiAuto testing test desktop mouse keyboard",
url = "http://pywinauto.github.io/",
Expand Down

0 comments on commit c9c8be8

Please sign in to comment.