browsertime 27.0.3 → 27.0.4
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,8 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 27.0.4 - 2026-05-05
|
|
4
|
+
### Fixed
|
|
5
|
+
* Fix Safari iOS video time scale [#2457](https://github.com/sitespeedio/browsertime/pull/2457). This make the video and Safari metric match.
|
|
3
6
|
|
|
4
7
|
## 27.0.3 - 2026-05-04
|
|
5
8
|
### Fixed
|
|
Binary file
|
|
@@ -234,7 +234,7 @@ int main(int argc, const char *argv[]) {
|
|
|
234
234
|
signal(SIGINT, handleSignal);
|
|
235
235
|
signal(SIGTERM, handleSignal);
|
|
236
236
|
|
|
237
|
-
int framerate =
|
|
237
|
+
int framerate = 60;
|
|
238
238
|
for (int i = 1; i < argc; i++) {
|
|
239
239
|
if (strcmp(argv[i], "-r") == 0 && i + 1 < argc) {
|
|
240
240
|
framerate = atoi(argv[++i]);
|
|
@@ -142,7 +142,7 @@ export class Safari {
|
|
|
142
142
|
);
|
|
143
143
|
|
|
144
144
|
log.debug('Starting ios-capture server');
|
|
145
|
-
this.iosCaptureProcess = execa(iosCaptureCommand, ['-r', '
|
|
145
|
+
this.iosCaptureProcess = execa(iosCaptureCommand, ['-r', '60'], {
|
|
146
146
|
stdin: 'pipe',
|
|
147
147
|
stdout: 'pipe',
|
|
148
148
|
stderr: 'pipe',
|
package/package.json
CHANGED