Skip to content

Commit 75366dc

Browse files
committed
Updated to v7.10.3
1 parent c557813 commit 75366dc

File tree

8 files changed

+200
-1682
lines changed

8 files changed

+200
-1682
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
---------
33
<!--(CHANGELOG_TOP)-->
4+
**7.10.3**
5+
* removed user sign-up form
6+
* updated GATool links
7+
* updated documentation links
8+
* updated login requests
9+
* update game and organization requests
10+
411
**7.10.2**
512
* fixed legacy FPS warning if events were sent before sdk was initialized:fixed webgl string marshaling bug
613

Editor/GA_Menu.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ static void SetupAndTour ()
2020
signup.maxSize = new Vector2(640, 600);
2121
signup.minSize = new Vector2(640, 600);
2222

23-
signup.titleContent = new GUIContent ("GameAnalytics - Sign up for FREE");
23+
signup.titleContent = new GUIContent ("GameAnalytics - Setup Guide");
2424
signup.ShowUtility ();
2525
signup.Opened();
2626

Editor/GA_SettingsInspector.cs

Lines changed: 66 additions & 619 deletions
Large diffs are not rendered by default.

Editor/GA_SignUp.cs

Lines changed: 123 additions & 1059 deletions
Large diffs are not rendered by default.

Runtime/Scripts/Events/GA_SpecialEvents.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ public static void SubmitFPS()
133133
{
134134
if(GameAnalytics.Initialized)
135135
GameAnalytics.NewDesignEvent("GA:CriticalFPS", _criticalFpsCount);
136-
136+
137137
_criticalFpsCount = 0;
138138
}
139139
}

Runtime/Scripts/Setup/Settings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public struct HelpInfo
5353
/// The version of the GA Unity Wrapper plugin
5454
/// </summary>
5555
[HideInInspector]
56-
public static string VERSION = "7.10.2";
56+
public static string VERSION = "7.10.3";
5757

5858
[HideInInspector]
5959
public static bool CheckingForUpdates = false;

Runtime/iOS/libGameAnalytics.a

-600 Bytes
Binary file not shown.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.gameanalytics.sdk",
3-
"version": "7.10.2",
3+
"version": "7.10.3",
44
"displayName": "GameAnalytics",
55
"description": "GameAnalytics collects and stores your data with no limits. You can then view your core KPI's in order to see what areas of your game need to improvements. If you want to find out more about how gamers play, then add in funnels, progression events and resource tracking. ",
66
"unity": "2018.1",

0 commit comments

Comments
 (0)