Skip to content

Commit 8821427

Browse files
send millisecond precision timestamps (#146)
* send millisecond precision timestamps * update MixpanelUnityVersion and CHANGELOG * use TotalMilliseconds
1 parent 62fe9cf commit 8821427

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
#
22

3+
## [v3.3.0](https://github.com/mixpanel/mixpanel-unity/tree/v3.3.0) (2022-08-02)
4+
5+
### Enhancements
6+
7+
- Send millisecond precision timestamps with events and people updates [\#146](https://github.com/mixpanel/mixpanel-unity/pull/146)
8+
9+
#
10+
311
## [v3.2.0](https://github.com/mixpanel/mixpanel-unity/tree/v3.2.0) (2022-04-30)
412

513
### Enhancements

Mixpanel/MixpanelAPI.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace mixpanel
1818
/// </code>
1919
public static partial class Mixpanel
2020
{
21-
internal const string MixpanelUnityVersion = "3.2.0";
21+
internal const string MixpanelUnityVersion = "3.3.0";
2222

2323
/// <summary>
2424
/// Creates an Mixpanel instance. Use only if you have enabled "Manual Initialization" from your Project Settings.

Mixpanel/Worker.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ internal static class Util
1717
internal static double CurrentTime()
1818
{
1919
DateTime epochStart = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
20-
double currentEpochTime = (DateTime.UtcNow - epochStart).TotalSeconds;
20+
long currentEpochTime = (long)(DateTime.UtcNow - epochStart).TotalMilliseconds;
2121
return currentEpochTime;
2222
}
2323

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.mixpanel.unity",
33
"displayName": "Mixpanel",
4-
"version": "3.2.0",
4+
"version": "3.3.0",
55
"description": "Official Mixpanel library for Unity.",
66
"repository": {
77
"type": "git",

0 commit comments

Comments
 (0)