Skip to content

Commit

Permalink
Prep release (#526)
Browse files Browse the repository at this point in the history
* Version bump
* Update CL
* tidy
* Update help

Signed-off-by: Dan Pollak <[email protected]>
  • Loading branch information
Danp2 authored Sep 21, 2024
1 parent 532a18f commit 58ccc8e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
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

0 comments on commit 58ccc8e

Please sign in to comment.