cz.xprees.event-logging 1.0.2 → 1.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.
|
@@ -51,7 +51,7 @@ namespace Xprees.EventLogging.Extensions
|
|
|
51
51
|
var request = UnityWebRequest.Get("http://neverssl.com");
|
|
52
52
|
try
|
|
53
53
|
{
|
|
54
|
-
await request.
|
|
54
|
+
await request.SendWebRequestAsync(cancellationToken: cancellationToken);
|
|
55
55
|
}
|
|
56
56
|
catch (OperationCanceledException)
|
|
57
57
|
{
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cz.xprees.event-logging",
|
|
3
3
|
"displayName": "Event Logging",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.4",
|
|
5
5
|
"unity": "2021.3",
|
|
6
6
|
"description": "This package provides a simple way to log events in your game.",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"category": "Core",
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"com.cysharp.unitask": "2.5.10",
|
|
11
|
-
"cz.xprees.core": "^1.0.
|
|
11
|
+
"cz.xprees.core": "^1.0.31"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
14
14
|
"Unity",
|
|
@@ -27,4 +27,4 @@
|
|
|
27
27
|
"type": "git",
|
|
28
28
|
"url": "https://github.com/xprees/unity-event-logging.git"
|
|
29
29
|
}
|
|
30
|
-
}
|
|
30
|
+
}
|