browsertime 16.2.0 → 16.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
|
|
4
|
+
## 16.2.1 - 2022-05-04
|
|
5
|
+
|
|
6
|
+
### Fixed
|
|
7
|
+
* Add an acceptable error of 5 pixels to last frame matches for the visual metric portable script, thank you [Gregory Mierzwinski](https://github.com/gmierz) for PR [#1780](https://github.com/sitespeedio/browsertime/pull/1780).
|
|
3
8
|
## 16.2.0 - 2022-05-01
|
|
4
9
|
### Added
|
|
5
10
|
* Updated to Chrome and Chromedriver 101 [#1773](https://github.com/sitespeedio/browsertime/pull/1773).
|
|
@@ -1134,7 +1134,7 @@ def eliminate_duplicate_frames(directory, cropped, is_mobile):
|
|
|
1134
1134
|
baseline = files[0]
|
|
1135
1135
|
previous_frame = baseline
|
|
1136
1136
|
for i in range(1, count):
|
|
1137
|
-
if frames_match(baseline, files[i], 15,
|
|
1137
|
+
if frames_match(baseline, files[i], 15, 5, crop, None):
|
|
1138
1138
|
if previous_frame is baseline:
|
|
1139
1139
|
duplicates.append(previous_frame)
|
|
1140
1140
|
else:
|