Skip to content

Commit

Permalink
Updated to v7.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Gogoshika-ga committed Oct 24, 2024
1 parent c557813 commit 75366dc
Show file tree
Hide file tree
Showing 8 changed files with 200 additions and 1,682 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
---------
<!--(CHANGELOG_TOP)-->
**7.10.3**
* removed user sign-up form
* updated GATool links
* updated documentation links
* updated login requests
* update game and organization requests

**7.10.2**
* fixed legacy FPS warning if events were sent before sdk was initialized:fixed webgl string marshaling bug

Expand Down
2 changes: 1 addition & 1 deletion Editor/GA_Menu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ static void SetupAndTour ()
signup.maxSize = new Vector2(640, 600);
signup.minSize = new Vector2(640, 600);

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

Expand Down
685 changes: 66 additions & 619 deletions Editor/GA_SettingsInspector.cs

Large diffs are not rendered by default.

1,182 changes: 123 additions & 1,059 deletions Editor/GA_SignUp.cs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Runtime/Scripts/Events/GA_SpecialEvents.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public static void SubmitFPS()
{
if(GameAnalytics.Initialized)
GameAnalytics.NewDesignEvent("GA:CriticalFPS", _criticalFpsCount);

_criticalFpsCount = 0;
}
}
Expand Down
2 changes: 1 addition & 1 deletion Runtime/Scripts/Setup/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public struct HelpInfo
/// The version of the GA Unity Wrapper plugin
/// </summary>
[HideInInspector]
public static string VERSION = "7.10.2";
public static string VERSION = "7.10.3";

[HideInInspector]
public static bool CheckingForUpdates = false;
Expand Down
Binary file modified Runtime/iOS/libGameAnalytics.a
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.gameanalytics.sdk",
"version": "7.10.2",
"version": "7.10.3",
"displayName": "GameAnalytics",
"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. ",
"unity": "2018.1",
Expand Down

0 comments on commit 75366dc

Please sign in to comment.