Skip to content

Commit

Permalink
Merge pull request jeduan#17 from cordova-plugin-facebook-connect/dev…
Browse files Browse the repository at this point in the history
…elop

1.1.1
  • Loading branch information
noahcooper authored Jan 27, 2021
2 parents d82956b + f84939f commit 94165ce
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
<a name="1.1.1"></a>
# [1.1.1](https://github.com/cordova-plugin-facebook-connect/cordova-plugin-facebook-connect/releases/tag/v1.1.1) (2021-01-27)

## Bug Fixes

* Fixed an issue that caused standard events, e.g. App Launches, to be automatically logged on iOS despite `FACEBOOK_AUTO_LOG_APP_EVENTS` being set to "false" (closes [#16](https://github.com/cordova-plugin-facebook-connect/cordova-plugin-facebook-connect/issues/16))

<a name="1.1.0"></a>
# [1.1.0](https://github.com/cordova-plugin-facebook-connect/cordova-plugin-facebook-connect/releases/tag/v1.1.0) (2021-01-21)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-facebook-connect",
"version": "1.1.0",
"version": "1.1.1",
"description": "Cordova Facebook SDK Plugin",
"cordova": {
"id": "cordova-plugin-facebook-connect",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-facebook-connect"
version="1.1.0">
version="1.1.1">

<name>Facebook Connect</name>

Expand Down
4 changes: 3 additions & 1 deletion src/ios/FacebookConnectPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ - (void) applicationDidFinishLaunching:(NSNotification *) notification {
}

- (void) applicationDidBecomeActive:(NSNotification *) notification {
[FBSDKAppEvents activateApp];
if (FBSDKSettings.isAutoLogAppEventsEnabled) {
[FBSDKAppEvents activateApp];
}
if (self.applicationWasActivated == NO) {
self.applicationWasActivated = YES;
[self enableHybridAppEvents];
Expand Down
2 changes: 1 addition & 1 deletion tests/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-facebook-connect-tests"
version="1.1.0">
version="1.1.1">
<name>Facebook Connect Tests</name>
<license></license>

Expand Down

0 comments on commit 94165ce

Please sign in to comment.