Skip to content

Commit d07727b

Browse files
authored
Prepare for next release (#211)
1 parent 736a5cd commit d07727b

File tree

4 files changed

+35
-22
lines changed

4 files changed

+35
-22
lines changed

CHANGELOG.md

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,48 +9,53 @@ 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-
## [Unreleased]
12+
## [0.6.0] - 2022-02-22
1313

1414
### Added
1515

1616
- _WD_JsonCookie (mLipok)
1717
- _WD_GetDevicePixelRatio (mLipok)
1818
- _WD_Cookies: Added DeleteAll option (mLipok)
1919
- _WD_ElementSelectAction: Added SelectedIndex option (mLipok)
20-
- Files to fulfill the community standards
21-
- bug_report.md and feature_request.md
22-
- CODE_OF_CONDUCT.md file
23-
- PULL_REQUEST_TEMPLATE.md file
2420

2521
### Changed
2622

2723
- _WD_ElementSelectAction: Options array expanded to include additional columns (index, selected) (mLipok)
28-
- README.md restruturing
29-
- Rename project (repository) to au3WebDriver
30-
- CONTRIBUTING.md file includes now reference notices to bug report and feature request templates
24+
- _WD_Option: Logging can use a custom function or be completely disabled (mLipok)
25+
- wd_capabilities.au3 now uses internal function __WD_ConsoleWrite
3126
- wd_demo.au3
3227
- Updated DemoCookies
33-
34-
### Deprecated
28+
- Enhanced logging options
3529

3630
### Fixed
3731

38-
- _WD_UpdateDriver: Detect error during download and addtional error handling
32+
- _WD_UpdateDriver: Detect error during download and additional error handling
3933

40-
### Removed
34+
### Project
35+
36+
- Rename project (repository) to au3WebDriver
37+
- README.md restructuring
38+
- Added files to fulfill the community standards
39+
- bug_report.md and feature_request.md
40+
- CODE_OF_CONDUCT.md file
41+
- PULL_REQUEST_TEMPLATE.md file
42+
- CONTRIBUTING.md file now contains references to bug report template and feature request template
4143

4244
## [0.5.2] - 2022-02-11
4345

4446
### Changed
4547

46-
- REVISIONS.md renamed to CHANGELOG.md and format updated
4748
- _WD_HighlightElements: Refactored for speed; now supports single or multiple elements
4849
- _WD_UpdateDriver: Adjusted URL to match revised Github repo name
4950

5051
### Deprecated
5152

5253
- _WD_HighlightElement: Flagged as Deprecated and will be removed in a future release
5354

55+
### Project
56+
57+
- REVISIONS.md renamed to CHANGELOG.md and format updated
58+
5459
## [0.5.1.1] - 2022-01-31
5560

5661
### Added
@@ -834,7 +839,8 @@ Go to [legend](#legend---types-of-changes) for further information about the typ
834839

835840
- Initial release
836841

837-
[Unreleased]: https://github.com/Danp2/au3WebDriver/compare/0.5.2...HEAD
842+
[Unreleased]: https://github.com/Danp2/au3WebDriver/compare/0.6.0...HEAD
843+
[0.6.0]: https://github.com/Danp2/au3WebDriver/compare/0.5.2...0.6.0
838844
[0.5.2]: https://github.com/Danp2/au3WebDriver/compare/0.5.1.1...0.5.2
839845
[0.5.1.1]: https://github.com/Danp2/au3WebDriver/compare/0.5.1.0...0.5.1.1
840846
[0.5.1.0]: https://github.com/Danp2/au3WebDriver/compare/0.5.0.3...0.5.1.0
@@ -902,6 +908,7 @@ Go to [legend](#legend---types-of-changes) for further information about the typ
902908
- `Fixed` for any bug fixes.
903909
- `Removed` for now removed features.
904910
- `Security` in case of vulnerabilities.
911+
- `Project` for documentation or contribution improvements.
905912

906913
##
907914

README.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717

1818
## Description
1919

20-
This au3WebDriver UDF (project) allows to interact with any browser that supports the [W3C WebDriver specifications](https://www.w3.org/TR/webdriver/).<br>
21-
Supporting multiple browsers via the same code base is now possible with just a few configuration settings.
20+
This au3WebDriver UDF (project) allows to interact with any browser that supports the [W3C WebDriver specifications](https://www.w3.org/TR/webdriver/). Supporting multiple browsers via the same code base is now possible with just a few configuration settings.
2221

2322
## Documentation
2423

@@ -34,7 +33,7 @@ Supporting multiple browsers via the same code base is now possible with just a
3433

3534
| Chrome | Edge | Firefox |
3635
| :--- | :--- | :--- |
37-
| ![Chrome](https://raw.githubusercontent.com/alrra/browser-logos/main/src/chrome/chrome_48x48.png) | ![Edge](https://raw.githubusercontent.com/alrra/browser-logos/main/src/edge/edge_48x48.png) | ![Firefox](https://raw.githubusercontent.com/alrra/browser-logos/main/src/firefox/firefox_48x48.png) |
36+
| ![Chrome48] | ![Edge48] | ![Firefox48] |
3837

3938

4039
### *Functions*
@@ -160,13 +159,13 @@ Download and install one of the following WebDriver (depending on the browser ty
160159

161160
| Browser | Download | WebDriver specification status |
162161
| :---: | :--- | :--- |
163-
| ![Chrome](https://raw.githubusercontent.com/alrra/browser-logos/main/src/chrome/chrome_16x16.png) | [Chrome](https://sites.google.com/chromium.org/driver/downloads) | [Status](https://chromium.googlesource.com/chromium/src/+/master/docs/chromedriver_status.md) |
164-
| ![Edge](https://raw.githubusercontent.com/alrra/browser-logos/main/src/edge/edge_16x16.png) | [Edge](https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/) | [Status](https://chromium.googlesource.com/chromium/src/+/master/docs/chromedriver_status.md) [^1] |
165-
| ![Firefox](https://raw.githubusercontent.com/alrra/browser-logos/main/src/firefox/firefox_16x16.png) | [Firefox](https://github.com/mozilla/geckodriver/releases/latest) | [Status](https://developer.mozilla.org/en-US/docs/Web/WebDriver#specifications) |
162+
| ![Chrome16] | [Chrome](https://sites.google.com/chromium.org/driver/downloads) | [Status](https://chromium.googlesource.com/chromium/src/+/master/docs/chromedriver_status.md) |
163+
| ![Edge16] | [Edge](https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/) | [Status](https://docs.microsoft.com/en-us/microsoft-edge/webdriver-chromium/) |
164+
| ![Firefox16] | [Firefox](https://github.com/mozilla/geckodriver/releases/latest) | [Status](https://developer.mozilla.org/en-US/docs/Mozilla/QA/Marionette/WebDriver/status) [^1] |
166165

167166
Limitation notice. [^2]
168167

169-
[^1]: "Microsoft Edge" (is chromium based) which means it's a WebDriver implementation derived from ChromeDriver. The status or limitations are at least the same as for ChromeDriver.
168+
[^1]: Login Required
170169
[^2]: Not all WebDriver functions have been implemented by each browser. Keep that in mind and check the "WebDriver specification status" for your desired WebDriver of choice.
171170

172171
#### *Installation*
@@ -236,3 +235,10 @@ Distributed under the MIT License. See [LICENSE](https://github.com/Danp2/au3Web
236235
##
237236

238237
[To the top](#)
238+
239+
[Chrome48]: https://raw.githubusercontent.com/alrra/browser-logos/main/src/chrome/chrome_48x48.png
240+
[Chrome16]: https://raw.githubusercontent.com/alrra/browser-logos/main/src/chrome/chrome_16x16.png
241+
[Edge48]: https://raw.githubusercontent.com/alrra/browser-logos/main/src/edge/edge_48x48.png
242+
[Edge16]: https://raw.githubusercontent.com/alrra/browser-logos/main/src/edge/edge_16x16.png
243+
[Firefox48]: https://raw.githubusercontent.com/alrra/browser-logos/main/src/firefox/firefox_48x48.png
244+
[Firefox16]: https://raw.githubusercontent.com/alrra/browser-logos/main/src/firefox/firefox_16x16.png

Webdriver.chm

1.06 KB
Binary file not shown.

wd_core.au3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
#EndRegion Many thanks to:
6565

6666
#Region Global Constants
67-
Global Const $__WDVERSION = "0.5.2"
67+
Global Const $__WDVERSION = "0.6.0"
6868

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

0 commit comments

Comments
 (0)