@openreplay/tracker
Advanced tools
Comparing version 14.0.2 to 14.0.3
@@ -0,1 +1,5 @@ | ||
# 14.0.3 | ||
- send integer instead of float for normalizedX/Y coords (basically moving from 0-100 to 0-10000 range) | ||
# 14.0.2 | ||
@@ -2,0 +6,0 @@ |
@@ -97,3 +97,3 @@ "use strict"; | ||
this.activityState = ActivityState.NotActive; | ||
this.version = '14.0.2'; // TODO: version compatability check inside each plugin. | ||
this.version = '14.0.3'; // TODO: version compatability check inside each plugin. | ||
this.socketMode = false; | ||
@@ -100,0 +100,0 @@ this.compressionThreshold = 24 * 1000; |
@@ -101,3 +101,3 @@ "use strict"; | ||
req.send(JSON.stringify({ | ||
trackerVersion: '14.0.2', | ||
trackerVersion: '14.0.3', | ||
projectKey: this.options.projectKey, | ||
@@ -104,0 +104,0 @@ doNotTrack, |
@@ -194,3 +194,3 @@ "use strict"; | ||
function roundNumber(num) { | ||
return Math.round(num * 1e3) / 1e1; | ||
return Math.round(num * 1e4); | ||
} |
@@ -68,3 +68,3 @@ import { gzip } from 'fflate'; | ||
this.activityState = ActivityState.NotActive; | ||
this.version = '14.0.2'; // TODO: version compatability check inside each plugin. | ||
this.version = '14.0.3'; // TODO: version compatability check inside each plugin. | ||
this.socketMode = false; | ||
@@ -71,0 +71,0 @@ this.compressionThreshold = 24 * 1000; |
@@ -70,3 +70,3 @@ import App, { DEFAULT_INGEST_POINT } from './app/index.js'; | ||
req.send(JSON.stringify({ | ||
trackerVersion: '14.0.2', | ||
trackerVersion: '14.0.3', | ||
projectKey: this.options.projectKey, | ||
@@ -73,0 +73,0 @@ doNotTrack, |
@@ -191,3 +191,3 @@ import { hasTag, isSVGElement, isDocument } from '../app/guards.js'; | ||
function roundNumber(num) { | ||
return Math.round(num * 1e3) / 1e1; | ||
return Math.round(num * 1e4); | ||
} |
{ | ||
"name": "@openreplay/tracker", | ||
"description": "The OpenReplay tracker main package", | ||
"version": "14.0.2", | ||
"version": "14.0.3", | ||
"keywords": [ | ||
@@ -6,0 +6,0 @@ "logging", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4021866