browsertime 23.4.4 → 23.4.5

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,9 @@
1
1
  # Browsertime changelog (we do [semantic versioning](https://semver.org))
2
2
 
3
+ ## 23.4.4 - 2024-12-20
4
+ ### Fixed
5
+ * Change bottom margin from 10 to 14 pixel when recoring a video on mobile, se bug [#2224](https://github.com/sitespeedio/browsertime/issues/2224) and PR [#2225](https://github.com/sitespeedio/browsertime/pull/2225).
6
+
3
7
  ## 23.4.4 - 2024-12-18
4
8
  ### Fixed
5
9
  * A more robust gnirehtet check when you run your Android test [#2223](https://github.com/sitespeedio/browsertime/pull/2223).
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "browsertime",
3
3
  "description": "Get performance metrics from your web page using Browsertime.",
4
- "version": "23.4.4",
4
+ "version": "23.4.5",
5
5
  "bin": "./bin/browsertime.js",
6
6
  "type": "module",
7
7
  "types": "./types/scripting.d.ts",
@@ -622,7 +622,7 @@ def find_image_viewport(file, is_mobile):
622
622
  # On mobile we need to ignore the top ~10 pixels because
623
623
  # there is a visible progress bar there on some browsers.
624
624
  viewport["y"] += 10
625
- viewport["height"] -= 10
625
+ viewport["height"] -= 14
626
626
 
627
627
  except Exception:
628
628
  viewport = None