You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by pu...@apache.org on 2015/10/23 07:08:57 UTC

[1/3] cordova-plugin-network-information git commit: add JIRA issue tracker link

Repository: cordova-plugin-network-information
Updated Branches:
  refs/heads/master a34791c6e -> 1132a1856


add JIRA issue tracker link


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information/commit/fd1055eb
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information/tree/fd1055eb
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information/diff/fd1055eb

Branch: refs/heads/master
Commit: fd1055ebd8a9dd2f2bbba9d5941cd3725f6d62c8
Parents: a34791c
Author: Julien Bouquillon <ju...@bouquillon.com>
Authored: Thu Sep 10 18:29:31 2015 +0200
Committer: Julien Bouquillon <ju...@bouquillon.com>
Committed: Thu Sep 10 18:29:31 2015 +0200

----------------------------------------------------------------------
 README.md | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information/blob/fd1055eb/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 4487325..a0c8041 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@
 #         specific language governing permissions and limitations
 #         under the License.
 -->
- 
+
 # cordova-plugin-network-information
 
 
@@ -25,6 +25,8 @@ This plugin provides an implementation of an old version of the
 It provides information about the device's cellular and
 wifi connection, and whether the device has an internet connection.
 
+:warning: Report issues on the [Apache Cordova issue tracker](https://issues.apache.org/jira/issues/?jql=project%20%3D%20CB%20AND%20status%20in%20%28Open%2C%20%22In%20Progress%22%2C%20Reopened%29%20AND%20resolution%20%3D%20Unresolved%20AND%20component%20%3D%20%22Plugin%20Network%20Information%22%20ORDER%20BY%20priority%20DESC%2C%20summary%20ASC%2C%20updatedDate%20DESC)
+
 ## Installation
 
     cordova plugin add cordova-plugin-network-information


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[3/3] cordova-plugin-network-information git commit: Merge branch 'CB-9702' of https://github.com/pstoll/cordova-plugin-network-information

Posted by pu...@apache.org.
Merge branch 'CB-9702' of https://github.com/pstoll/cordova-plugin-network-information


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information/commit/1132a185
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information/tree/1132a185
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information/diff/1132a185

Branch: refs/heads/master
Commit: 1132a185666fb60acdcddfa801d59525a8535d38
Parents: fd1055e 5aac260
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Thu Oct 22 22:07:59 2015 -0700
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Thu Oct 22 22:07:59 2015 -0700

----------------------------------------------------------------------
 src/ios/CDVConnection.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[2/3] cordova-plugin-network-information git commit: These notifications are objects so their address always evaluates to true.

Posted by pu...@apache.org.
These notifications are objects so their address always evaluates to true.


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information/commit/5aac2609
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information/tree/5aac2609
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information/diff/5aac2609

Branch: refs/heads/master
Commit: 5aac2609ceafcdcb0a746dd54bb21899a2f90a7a
Parents: a34791c
Author: Perry Stoll <pe...@pstoll.com>
Authored: Mon Oct 5 10:51:02 2015 -0400
Committer: Perry Stoll <pe...@pstoll.com>
Committed: Mon Oct 5 10:51:02 2015 -0400

----------------------------------------------------------------------
 src/ios/CDVConnection.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information/blob/5aac2609/src/ios/CDVConnection.m
----------------------------------------------------------------------
diff --git a/src/ios/CDVConnection.m b/src/ios/CDVConnection.m
index 3749767..223dd7c 100644
--- a/src/ios/CDVConnection.m
+++ b/src/ios/CDVConnection.m
@@ -118,7 +118,7 @@
     [self.internetReach startNotifier];
     [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(updateConnectionType:)
                                                  name:kReachabilityChangedNotification object:nil];
-    if (&UIApplicationDidEnterBackgroundNotification && &UIApplicationWillEnterForegroundNotification) {
+    if (UIApplicationDidEnterBackgroundNotification && UIApplicationWillEnterForegroundNotification) {
         [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onPause) name:UIApplicationDidEnterBackgroundNotification object:nil];
         [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onResume) name:UIApplicationWillEnterForegroundNotification object:nil];
     }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org