Skip to content

Prep release #526

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Sep 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Go to [legend](#legend---types-of-changes) for further information about the types of changes.

## [1.4.0] 2024-09-21

### Changed

- WD_GetTable: Trim whitespace in cell contents
- WD_Window: Add support for Restore option (@Sven-Seyfert)
- _WD_UpdateDriver: Optionally specific target browser version (@mlipok)

### Fixed

- wd_demo: Pass port number in DriverParams
- _WD_JsonActionKey: Don't encode Unicode characters

### Project

- __WD_ErrHnd: Enhance to handle COM errors (@mlipok)

## [1.3.1] 2024-02-19

### Changed
Expand Down Expand Up @@ -1171,7 +1188,8 @@ _WD_CapabilitiesDisplay
- Initial release


[Unreleased]: https://github.com/Danp2/au3WebDriver/compare/1.3.1...HEAD
[Unreleased]: https://github.com/Danp2/au3WebDriver/compare/1.4.0...HEAD
[1.4.0]: https://github.com/Danp2/au3WebDriver/compare/1.3.1...1.4.0
[1.3.1]: https://github.com/Danp2/au3WebDriver/compare/1.3.0...1.3.1
[1.3.0]: https://github.com/Danp2/au3WebDriver/compare/1.2.0...1.3.0
[1.2.0]: https://github.com/Danp2/au3WebDriver/compare/1.1.1...1.2.0
Expand Down
Binary file modified au3WebDriver.chm
Binary file not shown.
2 changes: 1 addition & 1 deletion wd_core.au3
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
#EndRegion Many thanks to:

#Region Global Constants
Global Const $__WDVERSION = "1.3.1"
Global Const $__WDVERSION = "1.4.0"

Global Const $_WD_ELEMENT_ID = "element-6066-11e4-a52e-4f735466cecf"
Global Const $_WD_SHADOW_ID = "shadow-6066-11e4-a52e-4f735466cecf"
Expand Down
4 changes: 2 additions & 2 deletions wd_helper.au3
Original file line number Diff line number Diff line change
Expand Up @@ -2087,7 +2087,7 @@ Func _WD_UpdateDriver($sBrowser, $sInstallDir = Default, $bFlag64 = Default, $bF
Local $WDDebugSave = $_WD_DEBUG
If $_WD_DEBUG <> $_WD_DEBUG_Full Then $_WD_DEBUG = $_WD_DEBUG_None

If $sBrowserVersion = Default then
If $sBrowserVersion = Default Then
$sBrowserVersion = _WD_GetBrowserVersion($sBrowser)
$iErr = @error
$iExt = @extended
Expand Down Expand Up @@ -3227,7 +3227,7 @@ Func _WD_JsonActionKey($sType, $sKey, $iSuffix = Default)
Local $sJSON = Json_Encode($vData)

; Don't encode backslash of Unicode character
If StringLeft($sKey,2) = '\u' Then
If StringLeft($sKey, 2) = '\u' Then
$sJSON = StringReplace($sJSON, "\\u", "\u")
EndIf

Expand Down