Skip to content

Commit 58ccc8e

Browse files
authored
Prep release (#526)
* Version bump * Update CL * tidy * Update help Signed-off-by: Dan Pollak <[email protected]>
1 parent 532a18f commit 58ccc8e

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

CHANGELOG.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

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

12+
## [1.4.0] 2024-09-21
13+
14+
### Changed
15+
16+
- WD_GetTable: Trim whitespace in cell contents
17+
- WD_Window: Add support for Restore option (@Sven-Seyfert)
18+
- _WD_UpdateDriver: Optionally specific target browser version (@mlipok)
19+
20+
### Fixed
21+
22+
- wd_demo: Pass port number in DriverParams
23+
- _WD_JsonActionKey: Don't encode Unicode characters
24+
25+
### Project
26+
27+
- __WD_ErrHnd: Enhance to handle COM errors (@mlipok)
28+
1229
## [1.3.1] 2024-02-19
1330

1431
### Changed
@@ -1171,7 +1188,8 @@ _WD_CapabilitiesDisplay
11711188
- Initial release
11721189

11731190

1174-
[Unreleased]: https://github.com/Danp2/au3WebDriver/compare/1.3.1...HEAD
1191+
[Unreleased]: https://github.com/Danp2/au3WebDriver/compare/1.4.0...HEAD
1192+
[1.4.0]: https://github.com/Danp2/au3WebDriver/compare/1.3.1...1.4.0
11751193
[1.3.1]: https://github.com/Danp2/au3WebDriver/compare/1.3.0...1.3.1
11761194
[1.3.0]: https://github.com/Danp2/au3WebDriver/compare/1.2.0...1.3.0
11771195
[1.2.0]: https://github.com/Danp2/au3WebDriver/compare/1.1.1...1.2.0

au3WebDriver.chm

-22 Bytes
Binary file not shown.

wd_core.au3

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
#EndRegion Many thanks to:
7272

7373
#Region Global Constants
74-
Global Const $__WDVERSION = "1.3.1"
74+
Global Const $__WDVERSION = "1.4.0"
7575

7676
Global Const $_WD_ELEMENT_ID = "element-6066-11e4-a52e-4f735466cecf"
7777
Global Const $_WD_SHADOW_ID = "shadow-6066-11e4-a52e-4f735466cecf"

wd_helper.au3

+2-2
Original file line numberDiff line numberDiff line change
@@ -2087,7 +2087,7 @@ Func _WD_UpdateDriver($sBrowser, $sInstallDir = Default, $bFlag64 = Default, $bF
20872087
Local $WDDebugSave = $_WD_DEBUG
20882088
If $_WD_DEBUG <> $_WD_DEBUG_Full Then $_WD_DEBUG = $_WD_DEBUG_None
20892089

2090-
If $sBrowserVersion = Default then
2090+
If $sBrowserVersion = Default Then
20912091
$sBrowserVersion = _WD_GetBrowserVersion($sBrowser)
20922092
$iErr = @error
20932093
$iExt = @extended
@@ -3227,7 +3227,7 @@ Func _WD_JsonActionKey($sType, $sKey, $iSuffix = Default)
32273227
Local $sJSON = Json_Encode($vData)
32283228

32293229
; Don't encode backslash of Unicode character
3230-
If StringLeft($sKey,2) = '\u' Then
3230+
If StringLeft($sKey, 2) = '\u' Then
32313231
$sJSON = StringReplace($sJSON, "\\u", "\u")
32323232
EndIf
32333233

0 commit comments

Comments
 (0)