Skip to content

Commit

Permalink
Updated to v1.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Treacy-Schwartz committed Jul 16, 2021
1 parent 1482b3f commit 5d26a2d
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ This plugin contain gd-wrapper `gameanalytics` which will be automatically added
Changelog
---------
<!--(CHANGELOG_TOP)-->
**1.3.4**
* ios nativelib fixes

**1.3.3**
* fixed ios nativelib errors

Expand Down
Binary file modified android/lib/GameAnalytics.release.aar
Binary file not shown.
2 changes: 1 addition & 1 deletion ios-plugin/godot_plugin/GameAnalytics.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ class GameAnalytics : public Object
GDCLASS(GameAnalytics, Object);

protected:
static void _bind_methods();
static GameAnalytics *instance;

public:
static void _register_methods();
void _init();

static GameAnalytics *get_singleton();
Expand Down
4 changes: 2 additions & 2 deletions ios-plugin/godot_plugin/GameAnalytics.mm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include "GameAnalytics.h"
#include "GameAnalyticsCpp.h"
#include "core/engine.h"
#define VERSION "godot 1.3.3"
#define VERSION "godot 1.3.4"

GameAnalytics *GameAnalytics::instance = NULL;

Expand Down Expand Up @@ -510,7 +510,7 @@
return GameAnalyticsCpp::getRemoteConfigsContentAsString();
}

void GameAnalytics::_register_methods()
void GameAnalytics::_bind_methods()
{
ClassDB::bind_method(D_METHOD("configureAvailableCustomDimensions01", "customDimensions"), &GameAnalytics::configureAvailableCustomDimensions01);
ClassDB::bind_method(D_METHOD("configureAvailableCustomDimensions02", "customDimensions"), &GameAnalytics::configureAvailableCustomDimensions02);
Expand Down
2 changes: 1 addition & 1 deletion nativelib.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "gameanalytics",
"display_name": "GameAnalytics",
"description": "Official Godot SDK for GameAnalytics. GameAnalytics is a free analytics platform that helps game developers understand their players' behaviour by delivering relevant insights.",
"version": "1.3.3",
"version": "1.3.4",
"godot_version": "3.3.2",
"license": "MIT",
"category": "analytics",
Expand Down
2 changes: 1 addition & 1 deletion osx/gameanalytics/GameAnalytics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include "cpp/GameAnalytics.h"
#endif

#define VERSION "godot 1.3.3"
#define VERSION "godot 1.3.4"

GameAnalytics *GameAnalytics::instance = NULL;

Expand Down

0 comments on commit 5d26a2d

Please sign in to comment.