[cordova-plugin-camera] branch master updated: AAR-232: (android) Enhancement: Camera plugin code cleanup (#425)

2019-03-01 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-camera.git


The following commit(s) were added to refs/heads/master by this push:
 new a13665d  AAR-232: (android) Enhancement: Camera plugin code cleanup 
(#425)
a13665d is described below

commit a13665d530f24a667a17d2a3bc61296fc316d3d2
Author: Hazem Saleh 
AuthorDate: Fri Mar 1 14:00:39 2019 -0500

AAR-232: (android) Enhancement: Camera plugin code cleanup (#425)
---
 src/android/CameraLauncher.java | 104 +++-
 1 file changed, 49 insertions(+), 55 deletions(-)

diff --git a/src/android/CameraLauncher.java b/src/android/CameraLauncher.java
index 6cdf0c5..b133340 100644
--- a/src/android/CameraLauncher.java
+++ b/src/android/CameraLauncher.java
@@ -18,34 +18,13 @@
 */
 package org.apache.cordova.camera;
 
-import java.io.ByteArrayOutputStream;
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.FileNotFoundException;
-import java.io.FileOutputStream;
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.OutputStream;
-import java.text.SimpleDateFormat;
-import java.util.Date;
-
-import org.apache.cordova.BuildHelper;
-import org.apache.cordova.CallbackContext;
-import org.apache.cordova.CordovaPlugin;
-import org.apache.cordova.CordovaResourceApi;
-import org.apache.cordova.LOG;
-import org.apache.cordova.PermissionHelper;
-import org.apache.cordova.PluginResult;
-import org.json.JSONArray;
-import org.json.JSONException;
-
 import android.Manifest;
-import android.annotation.TargetApi;
 import android.app.Activity;
 import android.content.ActivityNotFoundException;
 import android.content.ContentValues;
-import android.content.Context;
 import android.content.Intent;
+import android.content.pm.PackageManager;
+import android.content.pm.PackageManager.NameNotFoundException;
 import android.database.Cursor;
 import android.graphics.Bitmap;
 import android.graphics.Bitmap.CompressFormat;
@@ -55,16 +34,31 @@ import android.media.ExifInterface;
 import android.media.MediaScannerConnection;
 import android.media.MediaScannerConnection.MediaScannerConnectionClient;
 import android.net.Uri;
-import android.os.Build;
 import android.os.Bundle;
 import android.os.Environment;
-import android.provider.DocumentsContract;
 import android.provider.MediaStore;
-import android.provider.OpenableColumns;
 import android.support.v4.content.FileProvider;
 import android.util.Base64;
-import android.content.pm.PackageManager;
-import android.content.pm.PackageManager.NameNotFoundException;
+
+import org.apache.cordova.BuildHelper;
+import org.apache.cordova.CallbackContext;
+import org.apache.cordova.CordovaPlugin;
+import org.apache.cordova.LOG;
+import org.apache.cordova.PermissionHelper;
+import org.apache.cordova.PluginResult;
+import org.json.JSONArray;
+import org.json.JSONException;
+
+import java.io.ByteArrayOutputStream;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.FileNotFoundException;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
+import java.text.SimpleDateFormat;
+import java.util.Date;
 
 /**
  * This class launches the camera view, allows the user to take a picture, 
closes the camera view,
@@ -87,13 +81,19 @@ public class CameraLauncher extends CordovaPlugin 
implements MediaScannerConnect
 
 private static final int JPEG = 0;  // Take a picture of 
type JPEG
 private static final int PNG = 1;   // Take a picture of 
type PNG
-private static final String JPEG_EXTENSION = ".jpg";
-private static final String PNG_EXTENSION = ".png";
+private static final String JPEG_TYPE = "jpg";
+private static final String PNG_TYPE = "png";
+private static final String JPEG_EXTENSION = "." + JPEG_TYPE;
+private static final String PNG_EXTENSION = "." + PNG_TYPE;
 private static final String PNG_MIME_TYPE = "image/png";
 private static final String JPEG_MIME_TYPE = "image/jpeg";
 private static final String GET_PICTURE = "Get Picture";
 private static final String GET_VIDEO = "Get Video";
 private static final String GET_All = "Get All";
+private static final String CROPPED_URI_KEY = "croppedUri";
+private static final String IMAGE_URI_KEY = "imageUri";
+
+private static final String TAKE_PICTURE_ACTION = "takePicture";
 
 public static final int PERMISSION_DENIED_ERROR = 20;
 public static final int TAKE_PIC_SEC = 0;
@@ -147,7 +147,7 @@ public class CameraLauncher extends CordovaPlugin 
implements MediaScannerConnect
 this.applicationId = preferences.getString("applicationId", 
this.applicationId);
 
 
-   

[cordova-plugin-file] branch master updated: require FileReader in FileWriter to fix 'write' exec not being called (#237)

2018-07-20 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-file.git


The following commit(s) were added to refs/heads/master by this push:
 new 4a92bbb  require FileReader in FileWriter to fix 'write' exec not 
being called (#237)
4a92bbb is described below

commit 4a92bbbea755aa9e5bf8cfd160fb9da1cd3287cd
Author: Will Fairclough 
AuthorDate: Fri Jul 20 16:17:23 2018 -0400

require FileReader in FileWriter to fix 'write' exec not being called (#237)

FileWriter is missing the require('./FileReader') module causing the
native FileReader to be used instead of the FileReader proxy.

Oddly this does not happen everytime, but I could consistently
reproduce the issue when running subsequent `cordova run android`
commands on an Ionic app running in a 7.1.1 Android Emulator.
---
 www/FileWriter.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/www/FileWriter.js b/www/FileWriter.js
index c6de375..75ec9dc 100644
--- a/www/FileWriter.js
+++ b/www/FileWriter.js
@@ -21,6 +21,7 @@
 
 var exec = require('cordova/exec');
 var FileError = require('./FileError');
+var FileReader = require('./FileReader');
 var ProgressEvent = require('./ProgressEvent');
 
 /**


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



[cordova-plugin-camera] branch master updated: CB-14017 (android): Make com.android.support:support-v4 version configurable (#318)

2018-05-19 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-camera.git


The following commit(s) were added to refs/heads/master by this push:
 new e334656  CB-14017 (android): Make com.android.support:support-v4 
version configurable (#318)
e334656 is described below

commit e334656933efee3d60bbd4654aa334538f263f78
Author: jcesarmobile <jcesarmob...@gmail.com>
AuthorDate: Sat May 19 07:59:48 2018 +0200

CB-14017 (android): Make com.android.support:support-v4 version 
configurable (#318)
---
 plugin.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/plugin.xml b/plugin.xml
index e193b51..203b7a6 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -81,7 +81,8 @@
 
   
 
-
+
+
 
   
 

-- 
To stop receiving notification emails like this one, please contact
macdo...@apache.org.

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



[cordova-plugin-camera] branch master updated: CB-14047: (android) CameraLauncher: Replacing Repeated String literals with final variables (#319)

2018-04-22 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-camera.git


The following commit(s) were added to refs/heads/master by this push:
 new 5ec121b  CB-14047: (android) CameraLauncher: Replacing Repeated String 
literals with final variables (#319)
5ec121b is described below

commit 5ec121bf981374973833061ab466ce41573ab6e7
Author: Hazem Saleh <haz...@apache.org>
AuthorDate: Sun Apr 22 14:33:52 2018 -0400

CB-14047: (android) CameraLauncher: Replacing Repeated String literals with 
final variables (#319)
---
 src/android/CameraLauncher.java | 30 ++
 1 file changed, 18 insertions(+), 12 deletions(-)

diff --git a/src/android/CameraLauncher.java b/src/android/CameraLauncher.java
index fbe8470..0321082 100644
--- a/src/android/CameraLauncher.java
+++ b/src/android/CameraLauncher.java
@@ -87,6 +87,10 @@ public class CameraLauncher extends CordovaPlugin implements 
MediaScannerConnect
 
 private static final int JPEG = 0;  // Take a picture of 
type JPEG
 private static final int PNG = 1;   // Take a picture of 
type PNG
+private static final String JPEG_EXTENSION = ".jpg";
+private static final String PNG_EXTENSION = ".png";
+private static final String PNG_MIME_TYPE = "image/png";
+private static final String JPEG_MIME_TYPE = "image/jpeg";
 private static final String GET_PICTURE = "Get Picture";
 private static final String GET_VIDEO = "Get Video";
 private static final String GET_All = "Get All";
@@ -100,6 +104,8 @@ public class CameraLauncher extends CordovaPlugin 
implements MediaScannerConnect
 //Where did this come from?
 private static final int CROP_CAMERA = 100;
 
+private static final String TIME_FORMAT = "MMdd_HHmmss";
+
 private int mQuality;   // Compression quality hint 
(0-100: 0=low quality & high compression, 100=compress of max quality)
 private int targetWidth;// desired width of the image
 private int targetHeight;   // desired height of the image
@@ -341,9 +347,9 @@ public class CameraLauncher extends CordovaPlugin 
implements MediaScannerConnect
 }
 
 if (encodingType == JPEG) {
-fileName = fileName + ".jpg";
+fileName = fileName + JPEG_EXTENSION;
 } else if (encodingType == PNG) {
-fileName = fileName + ".png";
+fileName = fileName + PNG_EXTENSION;
 } else {
 throw new IllegalArgumentException("Invalid Encoding Type: " + 
encodingType);
 }
@@ -599,8 +605,8 @@ public class CameraLauncher extends CordovaPlugin 
implements MediaScannerConnect
 }
 
 private String getPicturesPath() {
-String timeStamp = new SimpleDateFormat("MMdd_HHmmss").format(new 
Date());
-String imageFileName = "IMG_" + timeStamp + (this.encodingType == JPEG 
? ".jpg" : ".png");
+String timeStamp = new SimpleDateFormat(TIME_FORMAT).format(new 
Date());
+String imageFileName = "IMG_" + timeStamp + (this.encodingType == JPEG 
? JPEG_EXTENSION : PNG_EXTENSION);
 File storageDir = Environment.getExternalStoragePublicDirectory(
 Environment.DIRECTORY_PICTURES);
 storageDir.mkdirs();
@@ -621,8 +627,8 @@ public class CameraLauncher extends CordovaPlugin 
implements MediaScannerConnect
  * @return String String value of mime type or empty string if mime type 
is not supported
  */
 private String getMimetypeForFormat(int outputFormat) {
-if (outputFormat == PNG) return "image/png";
-if (outputFormat == JPEG) return "image/jpeg";
+if (outputFormat == PNG) return PNG_MIME_TYPE;
+if (outputFormat == JPEG) return JPEG_MIME_TYPE;
 return "";
 }
 
@@ -636,7 +642,7 @@ public class CameraLauncher extends CordovaPlugin 
implements MediaScannerConnect
 realPath.substring(realPath.lastIndexOf('/') + 1) :
 "modified." + (this.encodingType == JPEG ? "jpg" : "png");
 
-String timeStamp = new SimpleDateFormat("MMdd_HHmmss").format(new 
Date());
+String timeStamp = new SimpleDateFormat(TIME_FORMAT).format(new 
Date());
 //String fileName = "IMG_" + timeStamp + (this.encodingType == JPEG ? 
".jpg" : ".png");
 String modifiedPath = getTempDirectoryPath() + "/" + fileName;
 
@@ -704,7 +710,7 @@ public class CameraLauncher extends CordovaPlugin 
implements MediaScannerConnect
 this.callbackContext.success(uriString);
 } else 

[cordova-android] branch master updated: :arrow_up: Bump gradle tools dependency to 3.0.1 for project template

2018-02-15 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-android.git


The following commit(s) were added to refs/heads/master by this push:
 new 3a339ba  :arrow_up: Bump gradle tools dependency to 3.0.1 for project 
template
3a339ba is described below

commit 3a339ba37fc979d5abec809ff085a2d410c48d99
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Thu Feb 15 17:42:10 2018 -0500

:arrow_up: Bump gradle tools dependency to 3.0.1 for project template
---
 bin/templates/project/build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/templates/project/build.gradle 
b/bin/templates/project/build.gradle
index 7b23815..d982091 100644
--- a/bin/templates/project/build.gradle
+++ b/bin/templates/project/build.gradle
@@ -29,7 +29,7 @@ buildscript {
 
 // NOTE: Do not place your application dependencies here; they belong
 // in the individual module build.gradle files
-classpath 'com.android.tools.build:gradle:3.0.0'
+classpath 'com.android.tools.build:gradle:3.0.1'
 }
 }
 

-- 
To stop receiving notification emails like this one, please contact
macdo...@apache.org.

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



[cordova-plugin-camera] branch master updated: CB-13854(ios): fix Camera opens in portrait orientation on iphones

2018-02-11 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-camera.git


The following commit(s) were added to refs/heads/master by this push:
 new 7c90555  CB-13854(ios): fix Camera opens in portrait orientation on 
iphones
7c90555 is described below

commit 7c90555bd4bfbbdfe23f357f130eb1bbb7e4fce6
Author: Julio César <jcesarmob...@gmail.com>
AuthorDate: Sun Feb 11 13:08:40 2018 +0100

CB-13854(ios): fix Camera opens in portrait orientation on iphones
---
 src/ios/CDVCamera.m | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/ios/CDVCamera.m b/src/ios/CDVCamera.m
index 37b4ec8..c71de05 100644
--- a/src/ios/CDVCamera.m
+++ b/src/ios/CDVCamera.m
@@ -206,6 +206,7 @@ static NSString* toBase64(NSData* data) {
 [weakSelf displayPopover:pictureOptions.popoverOptions];
 weakSelf.hasPendingOperation = NO;
 } else {
+cameraPicker.modalPresentationStyle = 
UIModalPresentationCurrentContext;
 [weakSelf.viewController presentViewController:cameraPicker 
animated:YES completion:^{
 weakSelf.hasPendingOperation = NO;
 }];

-- 
To stop receiving notification emails like this one, please contact
macdo...@apache.org.

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



[cordova-docs] branch master updated: Added Cordova Simulate blog post (#787)

2018-02-02 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-docs.git


The following commit(s) were added to refs/heads/master by this push:
 new d224e66  Added Cordova Simulate blog post (#787)
d224e66 is described below

commit d224e66db55dc83939eb67d36d3480935e590230
Author: John M. Wargo <30843404+jwa...@users.noreply.github.com>
AuthorDate: Fri Feb 2 12:06:41 2018 -0500

Added Cordova Simulate blog post (#787)
---
 www/_posts/2018-02-02-cordova-simulate.md   | 318 
 www/static/img/blog/2018/cordova-simulate-1.png | Bin 0 -> 277925 bytes
 www/static/img/blog/2018/cordova-simulate-2.png | Bin 0 -> 240813 bytes
 www/static/img/blog/2018/cordova-simulate-3.png | Bin 0 -> 14740 bytes
 www/static/img/blog/2018/cordova-simulate-4.png | Bin 0 -> 25423 bytes
 5 files changed, 318 insertions(+)

diff --git a/www/_posts/2018-02-02-cordova-simulate.md 
b/www/_posts/2018-02-02-cordova-simulate.md
new file mode 100644
index 000..7ce4f8b
--- /dev/null
+++ b/www/_posts/2018-02-02-cordova-simulate.md
@@ -0,0 +1,318 @@
+---
+layout: post
+author:
+name: John M. Wargo
+url: https://twitter.com/johnwargo
+title:  "A Better Way to Exercise Cordova Plugins"
+categories: howto
+tags:
+---
+
+Cordova developers have several ways to test and debug their Cordova 
applications. For functional testing, developers use emulators, simulators, and 
physical devices. Devices can be on-premises, or there are many cloud offerings 
available as well. There's even great tools you can use to debug your 
applications such as the web app debugging capabilities of Chrome and Safari, 
as well as the excellent debugging capabilities of Microsoft's Visual Studio 
Code extension for Apache Cordova.
+
+For debugging plugins, or debugging applications that utilize Cordova plugins, 
things aren't that bad. For most plugins, I imagine that any physical device 
has whatever's needed to work with a plugin, unless the plugin requires some 
external hardware device or has other requirements that aren't by every device. 
For several of the core Cordova plugins, the device emulators and simulators 
expose capabilities that enable testers to simulate things like the camera, 
accelerometer, compass, an [...]
+
+When it comes to exercising all the capabilities of a plugin, especially 
simulating error conditions so you can tell how the app responds, it gets 
complicated. Developers often find themselves hacking away at plugin code, 
either mocking up simulation scenarios, or manually changing the behavior of 
the plugin during testing. In many cases, developers must manually force error 
conditions in their plugins so they can validate error checking within their 
app. I haven't written many Cordova p [...]
+
+
+
+Many, many years ago, a small company named Tiny Hippos created the Ripple 
Emulator, a browser-based emulator for many mobile devices. Ripple was 
interesting in many ways, but for the scope of this article, one of the 
interesting features was its implementation of emulators for many of the core 
Cordova plugins. As you ran your Cordova application in one pane, a separate 
pane opened with options to control many aspects of the simulated environment 
as shown in the following figure.
+
+![Figure 1]({{ site.baseurl }}/static/img/blog/2018/cordova-simulate-1.png)
+
+Well, shortening a long story a bit, the folks at Research In Motion 
(BlackBerry) purchased Tiny Hippos and maintained Ripple for a while before 
finally contributing it to the Apache Foundation as an incubator project. Many 
companies got involved, including Adobe, Microsoft, and others, but the project 
never really took off, or ever became a stable product. It never actually made 
it out of beta.
+
+Anyway, fast forward to today and you'll find that Microsoft took the Ripple 
project and rebuilt it. We kept some of the original code (some of the plugin 
simulation panels and supporting utility functions), rewrote some parts, 
created some new code, then released it as an open source project called 
Cordova Simulate 
([https://github.com/Microsoft/cordova-simulate](https://github.com/Microsoft/cordova-simulate)).
 We chose this approach, rather than investing in Ripple, because:
+
+* We had regular reports of issues with Ripple starting and Visual Studio not 
being able to connect to it successfully, so we wanted a simpler architecture 
for rendering the Cordova web app (a separate browser window that just hosted 
the app, and nothing else).
+* Debugging Ripple was a challenge since you were effectively debugging both 
the app and Ripple itself (you had to drill down into the Ripple UI's HTML to 
find the hosted Cordova web app, and Ripple's JavaScript code could easily be a 
part of your stack when debugging).
+* Since Ripple and the Cordova web app render in the same browser window, if 
the Cordova 

[cordova-plugin-media] branch master updated: CB-13751: Add build-tools-26.0.2 to travis (#163)

2018-01-10 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-media.git


The following commit(s) were added to refs/heads/master by this push:
 new 33c50b0  CB-13751: Add build-tools-26.0.2 to travis (#163)
33c50b0 is described below

commit 33c50b05d3327fe73025fb7b265c0d80715ba9e4
Author: jcesarmobile <jcesarmob...@gmail.com>
AuthorDate: Wed Jan 10 14:39:41 2018 +0100

CB-13751: Add build-tools-26.0.2 to travis (#163)
---
 .travis.yml | 4 
 1 file changed, 4 insertions(+)

diff --git a/.travis.yml b/.travis.yml
index 59a576d..9e7438f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -41,6 +41,7 @@ matrix:
 android:
   components:
   - tools
+  - build-tools-26.0.2
   - env: PLATFORM=android-5.1
 os: linux
 language: android
@@ -48,6 +49,7 @@ matrix:
 android:
   components:
   - tools
+  - build-tools-26.0.2
   - env: PLATFORM=android-6.0
 os: linux
 language: android
@@ -55,6 +57,7 @@ matrix:
 android:
   components:
   - tools
+  - build-tools-26.0.2
   - env: PLATFORM=android-7.0
 os: linux
 language: android
@@ -62,6 +65,7 @@ matrix:
 android:
   components:
   - tools
+  - build-tools-26.0.2
 before_install:
 - rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && 
(cd ~/.nvm
   && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && 
nvm

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-media] branch master updated: CB-7684 (#143)

2018-01-08 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-media.git


The following commit(s) were added to refs/heads/master by this push:
 new a7e376a  CB-7684 (#143)
a7e376a is described below

commit a7e376adb78dad85b6c5d15058c5317ad7d2bf72
Author: Adriano D.G <m...@adrianodigiovanni.com>
AuthorDate: Mon Jan 8 22:14:23 2018 +0100

CB-7684 (#143)

* do not deactivate avsession when items finish playing

* CB76-84: check if any audio file is playing or recording before 
deactivating the avsession

* CB-7684: add ios preference to keep avsession always active

* CB-7684: change variable name to uppercase

* CB-7684: change variable name to uppercase in CDVSound.m, too

* CB-7684: fix plugin definition

* CB-7684: activate avsession during plugin initialization

* update plugin definition to solve merge conflict

* update plugin definition to fix merge conflict

* update plugin definition to fix merge conflict
---
 plugin.xml |  4 
 src/ios/CDVSound.m | 58 +-
 2 files changed, 48 insertions(+), 14 deletions(-)

diff --git a/plugin.xml b/plugin.xml
index e05aa07..564f6da 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -66,10 +66,14 @@ id="cordova-plugin-media"
 
 
 
+  
 
 
 
 
+
 
 
 
diff --git a/src/ios/CDVSound.m b/src/ios/CDVSound.m
index e154287..e8947d0 100644
--- a/src/ios/CDVSound.m
+++ b/src/ios/CDVSound.m
@@ -27,8 +27,24 @@
 
 @implementation CDVSound
 
+BOOL keepAvAudioSessionAlwaysActive = NO;
+
 @synthesize soundCache, avSession, currMediaId, statusCallbackId;
 
+-(void) pluginInitialize
+{
+NSDictionary* settings = self.commandDelegate.settings;
+keepAvAudioSessionAlwaysActive = [[settings 
objectForKey:[@"KeepAVAudioSessionAlwaysActive" lowercaseString]] boolValue];
+if (keepAvAudioSessionAlwaysActive) {
+if ([self hasAudioSession]) {
+NSError* error = nil;
+if(![self.avSession setActive:YES error:]) {
+NSLog(@"Unable to activate session: %@", [error 
localizedFailureReason]);
+}
+}
+}
+}
+
 // Maps a url for a resource path for recording
 - (NSURL*)urlForRecording:(NSString*)resourcePath
 {
@@ -421,7 +437,7 @@
 [audioFile.player play];
 } */
 // error creating the session or player
-[self onStatus:MEDIA_ERROR mediaId:mediaId 
+[self onStatus:MEDIA_ERROR mediaId:mediaId
   param:[self createMediaErrorWithCode:MEDIA_ERR_NONE_SUPPORTED 
message:nil]];
 }
 }
@@ -469,7 +485,7 @@
 if (playerError != nil) {
 NSLog(@"Failed to initialize AVAudioPlayer: %@\n", [playerError 
localizedDescription]);
 audioFile.player = nil;
-if (self.avSession) {
+if (! keepAvAudioSessionAlwaysActive && self.avSession && ! [self 
isPlayingOrRecording]) {
 [self.avSession setActive:NO error:nil];
 }
 bError = YES;
@@ -600,7 +616,7 @@
 [avPlayer pause];
 avPlayer = nil;
 }
-if (self.avSession) {
+if (! keepAvAudioSessionAlwaysActive && self.avSession && ! [self 
isPlayingOrRecording]) {
 [self.avSession setActive:NO error:nil];
 self.avSession = nil;
 }
@@ -705,7 +721,7 @@
 errorMsg = @"Failed to start recording using 
AVAudioRecorder";
 }
 audioFile.recorder = nil;
-if (weakSelf.avSession) {
+if (! keepAvAudioSessionAlwaysActive && weakSelf.avSession && 
! [self isPlayingOrRecording]) {
 [weakSelf.avSession setActive:NO error:nil];
 }
 [weakSelf onStatus:MEDIA_ERROR mediaId:mediaId param:
@@ -725,7 +741,7 @@
 NSString* msg = @"Error creating audio session, microphone 
permission denied.";
 NSLog(@"%@", msg);
 audioFile.recorder = nil;
-if (weakSelf.avSession) {
+if (! keepAvAudioSessionAlwaysActive && weakSelf.avSession 
&& ! [self isPlayingOrRecording]) {
 [weakSelf.avSession setActive:NO error:nil];
 }
 [weakSelf onStatus:MEDIA_ERROR mediaId:mediaId param:
@@ -773,7 +789,7 @@
 [self onStatus:MEDIA_ERROR mediaId:mediaId param:
   [self createMediaErrorWithCode:MEDIA_ERR_DECODE message:nil]];
 }
-if (self.avSession) {
+if (! keepAvAudioSessionAlways

[cordova-plugin-file-transfer] 01/01: Merge pull request #195 from kaynz/master

2018-01-04 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-file-transfer.git

commit 1797706dce98f17fd1d5f3947aecd2826f812b29
Merge: 9cd8d2b 9197eea
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Thu Jan 4 15:45:51 2018 -0500

Merge pull request #195 from kaynz/master

change dependency version to file ^6.0.0

 plugin.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
"commits@cordova.apache.org" <commits@cordova.apache.org>.

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



[cordova-plugin-file-transfer] branch master updated (9cd8d2b -> 1797706)

2018-01-04 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-file-transfer.git.


from 9cd8d2b  Set VERSION to 1.7.1-dev (via coho)
 add ac8e397  change dependency version to file 6.0.0
 add 6fc811f  change dependency version to file >=5.0.0
 add 9197eea  Update plugin.xml
 new 1797706  Merge pull request #195 from kaynz/master

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 plugin.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-docs] branch master updated: :memo: CB-13714: Plugins Release (#779)

2017-12-30 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-docs.git


The following commit(s) were added to refs/heads/master by this push:
 new 50a8078  :memo: CB-13714: Plugins Release (#779)
50a8078 is described below

commit 50a8078234dcfd6d38f668b039aef7f1b3b5ec8a
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Sat Dec 30 22:55:03 2017 -0500

:memo: CB-13714: Plugins Release (#779)
---
 www/_posts/2017-12-30-plugins-release.md | 82 
 1 file changed, 82 insertions(+)

diff --git a/www/_posts/2017-12-30-plugins-release.md 
b/www/_posts/2017-12-30-plugins-release.md
new file mode 100644
index 000..1f18ed3
--- /dev/null
+++ b/www/_posts/2017-12-30-plugins-release.md
@@ -0,0 +1,82 @@
+---
+layout: post
+author:
+name: Simon MacDonald
+url: https://twitter.com/macdonst
+title:  "Plugins Release"
+categories: news
+tags: release plugins
+---
+
+The following plugins were updated today:
+
+* cordova-plugin-battery-status@2.0.1
+* cordova-plugin-camera@4.0.1
+* cordova-plugin-device@2.0.1
+* cordova-plugin-dialogs@2.0.1
+* cordova-plugin-file@6.0.1
+* cordova-plugin-geolocation@4.0.1
+* cordova-plugin-inappbrowser@2.0.1
+* cordova-plugin-media@5.0.1
+* cordova-plugin-media-capture@3.0.1
+* cordova-plugin-network-information@2.0.1
+* cordova-plugin-screen-orientation@3.0.1
+* cordova-plugin-splashscreen@5.0.1
+* cordova-plugin-statusbar@2.4.1
+* cordova-plugin-vibration@3.0.1
+
+Our last plugin release had an issue which made it impossible to install from 
npm. These point releases of the plugins fix the bug allowing you to install 
from npm as well as git url.
+
+
+You can update any plugin by removing it, and then re-adding it.
+
+ E.g. To update your camera plugin:
+
+cordova plugin rm cordova-plugin-camera
+cordova plugin add cordova-plugin-camera@latest
+
+Changes include:
+
+cordova-plugin-battery-status@2.0.1
+* [CB-13700](https://issues.apache.org/jira/browse/CB-13700) Fix to allow 
2.0.0 version install (#62)
+
+cordova-plugin-camera@4.0.1
+* CB-13701Fix to allow 4.0.0 version install
+
+cordova-plugin-device@2.0.1
+* [CB-13702](https://issues.apache.org/jira/browse/CB-13702) Fix to allow 
2.0.0 version install
+
+cordova-plugin-dialogs@2.0.1
+* [CB-13703](https://issues.apache.org/jira/browse/CB-13703) Fix to allow 
2.0.0 version install
+
+cordova-plugin-file@6.0.1
+* [CB-13704](https://issues.apache.org/jira/browse/CB-13704) Fix to allow 
6.0.0 version install
+
+cordova-plugin-geolocation@4.0.1
+* [CB-13705](https://issues.apache.org/jira/browse/CB-13705) Fix to allow 
4.0.0 version install
+
+cordova-plugin-inappbrowser@2.0.1
+* [CB-13699](https://issues.apache.org/jira/browse/CB-13699) Fix to allow 
2.0.0 version install
+
+cordova-plugin-media@5.0.1
+* [CB-13706](https://issues.apache.org/jira/browse/CB-13706) Fix to allow 
5.0.0 version install (#160)
+* Bump cordova-plugin-file dependency to 6.0.0
+
+cordova-plugin-media-capture@3.0.1
+* [CB-13707](https://issues.apache.org/jira/browse/CB-13707) Fix to allow 
3.0.0 version install (#88)
+* Bump cordova-plugin-file dependency to 6.0.0
+
+cordova-plugin-network-information@2.0.1
+* [CB-13708](https://issues.apache.org/jira/browse/CB-13708) Fix to allow 
2.0.0 version install (#60)
+
+cordova-plugin-screen-orientation@3.0.1
+* [CB-13710](https://issues.apache.org/jira/browse/CB-13710) Fix to allow 
3.0.0 version install (#28)
+
+cordova-plugin-splashscreen@5.0.1
+* [CB-13709](https://issues.apache.org/jira/browse/CB-13709) Fix to allow 
5.0.0 version install (#144)
+
+cordova-plugin-statusbar@2.4.1
+* [CB-13712](https://issues.apache.org/jira/browse/CB-13712) (iOS): fix 
overlaysWebView reset on rotation (#92)
+
+cordova-plugin-vibration@3.0.1
+* [CB-13711](https://issues.apache.org/jira/browse/CB-13711) Fix to allow 
3.0.0 version install (#63)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-docs] 01/01: :memo: CB-13714: Plugins Release

2017-12-30 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch cb-13714
in repository https://gitbox.apache.org/repos/asf/cordova-docs.git

commit fd97b3f0057108d3e111ddd2d5e2293a69d4aebb
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:56:21 2017 -0500

:memo: CB-13714: Plugins Release
---
 www/_posts/2017-12-30-plugins-release.md | 82 
 1 file changed, 82 insertions(+)

diff --git a/www/_posts/2017-12-30-plugins-release.md 
b/www/_posts/2017-12-30-plugins-release.md
new file mode 100644
index 000..1f18ed3
--- /dev/null
+++ b/www/_posts/2017-12-30-plugins-release.md
@@ -0,0 +1,82 @@
+---
+layout: post
+author:
+name: Simon MacDonald
+url: https://twitter.com/macdonst
+title:  "Plugins Release"
+categories: news
+tags: release plugins
+---
+
+The following plugins were updated today:
+
+* cordova-plugin-battery-status@2.0.1
+* cordova-plugin-camera@4.0.1
+* cordova-plugin-device@2.0.1
+* cordova-plugin-dialogs@2.0.1
+* cordova-plugin-file@6.0.1
+* cordova-plugin-geolocation@4.0.1
+* cordova-plugin-inappbrowser@2.0.1
+* cordova-plugin-media@5.0.1
+* cordova-plugin-media-capture@3.0.1
+* cordova-plugin-network-information@2.0.1
+* cordova-plugin-screen-orientation@3.0.1
+* cordova-plugin-splashscreen@5.0.1
+* cordova-plugin-statusbar@2.4.1
+* cordova-plugin-vibration@3.0.1
+
+Our last plugin release had an issue which made it impossible to install from 
npm. These point releases of the plugins fix the bug allowing you to install 
from npm as well as git url.
+
+
+You can update any plugin by removing it, and then re-adding it.
+
+ E.g. To update your camera plugin:
+
+cordova plugin rm cordova-plugin-camera
+cordova plugin add cordova-plugin-camera@latest
+
+Changes include:
+
+cordova-plugin-battery-status@2.0.1
+* [CB-13700](https://issues.apache.org/jira/browse/CB-13700) Fix to allow 
2.0.0 version install (#62)
+
+cordova-plugin-camera@4.0.1
+* CB-13701Fix to allow 4.0.0 version install
+
+cordova-plugin-device@2.0.1
+* [CB-13702](https://issues.apache.org/jira/browse/CB-13702) Fix to allow 
2.0.0 version install
+
+cordova-plugin-dialogs@2.0.1
+* [CB-13703](https://issues.apache.org/jira/browse/CB-13703) Fix to allow 
2.0.0 version install
+
+cordova-plugin-file@6.0.1
+* [CB-13704](https://issues.apache.org/jira/browse/CB-13704) Fix to allow 
6.0.0 version install
+
+cordova-plugin-geolocation@4.0.1
+* [CB-13705](https://issues.apache.org/jira/browse/CB-13705) Fix to allow 
4.0.0 version install
+
+cordova-plugin-inappbrowser@2.0.1
+* [CB-13699](https://issues.apache.org/jira/browse/CB-13699) Fix to allow 
2.0.0 version install
+
+cordova-plugin-media@5.0.1
+* [CB-13706](https://issues.apache.org/jira/browse/CB-13706) Fix to allow 
5.0.0 version install (#160)
+* Bump cordova-plugin-file dependency to 6.0.0
+
+cordova-plugin-media-capture@3.0.1
+* [CB-13707](https://issues.apache.org/jira/browse/CB-13707) Fix to allow 
3.0.0 version install (#88)
+* Bump cordova-plugin-file dependency to 6.0.0
+
+cordova-plugin-network-information@2.0.1
+* [CB-13708](https://issues.apache.org/jira/browse/CB-13708) Fix to allow 
2.0.0 version install (#60)
+
+cordova-plugin-screen-orientation@3.0.1
+* [CB-13710](https://issues.apache.org/jira/browse/CB-13710) Fix to allow 
3.0.0 version install (#28)
+
+cordova-plugin-splashscreen@5.0.1
+* [CB-13709](https://issues.apache.org/jira/browse/CB-13709) Fix to allow 
5.0.0 version install (#144)
+
+cordova-plugin-statusbar@2.4.1
+* [CB-13712](https://issues.apache.org/jira/browse/CB-13712) (iOS): fix 
overlaysWebView reset on rotation (#92)
+
+cordova-plugin-vibration@3.0.1
+* [CB-13711](https://issues.apache.org/jira/browse/CB-13711) Fix to allow 
3.0.0 version install (#63)

-- 
To stop receiving notification emails like this one, please contact
"commits@cordova.apache.org" <commits@cordova.apache.org>.

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



[cordova-plugin-splashscreen] tag rel/5.0.1 created (now fb606fe)

2017-12-30 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to tag rel/5.0.1
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-splashscreen.git.


  at fb606fe  (commit)
No new revisions were added by this update.

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-media-capture] tag rel/3.0.1 created (now e94dd74)

2017-12-30 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to tag rel/3.0.1
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-media-capture.git.


  at e94dd74  (commit)
No new revisions were added by this update.

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-vibration] tag rel/3.0.1 created (now dd4b6f2)

2017-12-30 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to tag rel/3.0.1
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-vibration.git.


  at dd4b6f2  (commit)
No new revisions were added by this update.

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-device] tag rel/2.0.1 created (now ad0821d)

2017-12-30 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to tag rel/2.0.1
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-device.git.


  at ad0821d  (commit)
No new revisions were added by this update.

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-screen-orientation] tag rel/3.0.1 created (now 9bd2ef7)

2017-12-30 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to tag rel/3.0.1
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-screen-orientation.git.


  at 9bd2ef7  (commit)
No new revisions were added by this update.

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-file] tag rel/6.0.1 created (now 2057083)

2017-12-30 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to tag rel/6.0.1
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-file.git.


  at 2057083  (commit)
No new revisions were added by this update.

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-network-information] tag rel/2.0.1 created (now 417d0f2)

2017-12-30 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to tag rel/2.0.1
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-network-information.git.


  at 417d0f2  (commit)
No new revisions were added by this update.

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-media] tag rel/5.0.1 created (now e974e63)

2017-12-30 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to tag rel/5.0.1
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-media.git.


  at e974e63  (commit)
No new revisions were added by this update.

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-dialogs] tag rel/2.0.1 created (now c4e079d)

2017-12-30 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to tag rel/2.0.1
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-dialogs.git.


  at c4e079d  (commit)
No new revisions were added by this update.

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-camera] tag rel/4.0.1 created (now fb02f48)

2017-12-30 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to tag rel/4.0.1
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-camera.git.


  at fb02f48  (commit)
No new revisions were added by this update.

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



svn commit: r23957 - /dev/cordova/CB-13714/

2017-12-29 Thread macdonst
Author: macdonst
Date: Sat Dec 30 06:09:59 2017
New Revision: 23957

Log:
CB-13714 Removing release candidates from dist/dev

Removed:
dev/cordova/CB-13714/


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



svn commit: r23956 - /release/cordova/plugins/

2017-12-29 Thread macdonst
Author: macdonst
Date: Sat Dec 30 06:09:31 2017
New Revision: 23956

Log:
CB-13714 Published plugins release to dist

Added:
release/cordova/plugins/cordova-plugin-battery-status-2.0.1.tgz   (with 
props)
release/cordova/plugins/cordova-plugin-battery-status-2.0.1.tgz.asc
release/cordova/plugins/cordova-plugin-battery-status-2.0.1.tgz.md5
release/cordova/plugins/cordova-plugin-battery-status-2.0.1.tgz.sha512
release/cordova/plugins/cordova-plugin-camera-4.0.1.tgz   (with props)
release/cordova/plugins/cordova-plugin-camera-4.0.1.tgz.asc
release/cordova/plugins/cordova-plugin-camera-4.0.1.tgz.md5
release/cordova/plugins/cordova-plugin-camera-4.0.1.tgz.sha512
release/cordova/plugins/cordova-plugin-device-2.0.1.tgz   (with props)
release/cordova/plugins/cordova-plugin-device-2.0.1.tgz.asc
release/cordova/plugins/cordova-plugin-device-2.0.1.tgz.md5
release/cordova/plugins/cordova-plugin-device-2.0.1.tgz.sha512
release/cordova/plugins/cordova-plugin-dialogs-2.0.1.tgz   (with props)
release/cordova/plugins/cordova-plugin-dialogs-2.0.1.tgz.asc
release/cordova/plugins/cordova-plugin-dialogs-2.0.1.tgz.md5
release/cordova/plugins/cordova-plugin-dialogs-2.0.1.tgz.sha512
release/cordova/plugins/cordova-plugin-file-6.0.1.tgz   (with props)
release/cordova/plugins/cordova-plugin-file-6.0.1.tgz.asc
release/cordova/plugins/cordova-plugin-file-6.0.1.tgz.md5
release/cordova/plugins/cordova-plugin-file-6.0.1.tgz.sha512
release/cordova/plugins/cordova-plugin-geolocation-4.0.1.tgz   (with props)
release/cordova/plugins/cordova-plugin-geolocation-4.0.1.tgz.asc
release/cordova/plugins/cordova-plugin-geolocation-4.0.1.tgz.md5
release/cordova/plugins/cordova-plugin-geolocation-4.0.1.tgz.sha512
release/cordova/plugins/cordova-plugin-inappbrowser-2.0.1.tgz   (with props)
release/cordova/plugins/cordova-plugin-inappbrowser-2.0.1.tgz.asc
release/cordova/plugins/cordova-plugin-inappbrowser-2.0.1.tgz.md5
release/cordova/plugins/cordova-plugin-inappbrowser-2.0.1.tgz.sha512
release/cordova/plugins/cordova-plugin-media-5.0.1.tgz   (with props)
release/cordova/plugins/cordova-plugin-media-5.0.1.tgz.asc
release/cordova/plugins/cordova-plugin-media-5.0.1.tgz.md5
release/cordova/plugins/cordova-plugin-media-5.0.1.tgz.sha512
release/cordova/plugins/cordova-plugin-media-capture-3.0.1.tgz   (with 
props)
release/cordova/plugins/cordova-plugin-media-capture-3.0.1.tgz.asc
release/cordova/plugins/cordova-plugin-media-capture-3.0.1.tgz.md5
release/cordova/plugins/cordova-plugin-media-capture-3.0.1.tgz.sha512
release/cordova/plugins/cordova-plugin-network-information-2.0.1.tgz   
(with props)
release/cordova/plugins/cordova-plugin-network-information-2.0.1.tgz.asc
release/cordova/plugins/cordova-plugin-network-information-2.0.1.tgz.md5
release/cordova/plugins/cordova-plugin-network-information-2.0.1.tgz.sha512
release/cordova/plugins/cordova-plugin-screen-orientation-3.0.1.tgz   (with 
props)
release/cordova/plugins/cordova-plugin-screen-orientation-3.0.1.tgz.asc
release/cordova/plugins/cordova-plugin-screen-orientation-3.0.1.tgz.md5
release/cordova/plugins/cordova-plugin-screen-orientation-3.0.1.tgz.sha512
release/cordova/plugins/cordova-plugin-splashscreen-5.0.1.tgz   (with props)
release/cordova/plugins/cordova-plugin-splashscreen-5.0.1.tgz.asc
release/cordova/plugins/cordova-plugin-splashscreen-5.0.1.tgz.md5
release/cordova/plugins/cordova-plugin-splashscreen-5.0.1.tgz.sha512
release/cordova/plugins/cordova-plugin-statusbar-2.4.1.tgz   (with props)
release/cordova/plugins/cordova-plugin-statusbar-2.4.1.tgz.asc
release/cordova/plugins/cordova-plugin-statusbar-2.4.1.tgz.md5
release/cordova/plugins/cordova-plugin-statusbar-2.4.1.tgz.sha512
release/cordova/plugins/cordova-plugin-vibration-3.0.1.tgz   (with props)
release/cordova/plugins/cordova-plugin-vibration-3.0.1.tgz.asc
release/cordova/plugins/cordova-plugin-vibration-3.0.1.tgz.md5
release/cordova/plugins/cordova-plugin-vibration-3.0.1.tgz.sha512

Added: release/cordova/plugins/cordova-plugin-battery-status-2.0.1.tgz
==
Binary file - no diff available.

Propchange: release/cordova/plugins/cordova-plugin-battery-status-2.0.1.tgz
--
svn:mime-type = application/octet-stream

Added: release/cordova/plugins/cordova-plugin-battery-status-2.0.1.tgz.asc
==
--- release/cordova/plugins/cordova-plugin-battery-status-2.0.1.tgz.asc (added)
+++ release/cordova/plugins/cordova-plugin-battery-status-2.0.1.tgz.asc Sat Dec 
30 06:09:31 2017
@@ -0,0 +1,11 @@
+-BEGIN PGP SIGNATURE-
+
+iQEzBAABCAAdFiEE3x9SiuPSmwTuHa/LSFwVhmnJlcwFAlpEPA4ACgkQSFwVhmnJ

[cordova-plugin-battery-status] branch master updated: Fix release notes (#63)

2017-12-29 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-battery-status.git


The following commit(s) were added to refs/heads/master by this push:
 new bd7bf5f  Fix release notes (#63)
bd7bf5f is described below

commit bd7bf5f3ee92387c605df3548f31f839e0c3c685
Author: jcesarmobile <jcesarmob...@gmail.com>
AuthorDate: Sat Dec 30 06:59:58 2017 +0100

Fix release notes (#63)
---
 RELEASENOTES.md | 142 
 1 file changed, 142 insertions(+)

diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 9f4344a..1e7aa07 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -1,3 +1,145 @@
+
+
+# Release Notes
+
 ### 2.0.1 (Dec 27, 2017)
 * [CB-13700](https://issues.apache.org/jira/browse/CB-13700) Fix to allow 
2.0.0 version install (#62)
 
+### 2.0.0 (Dec 15, 2017)
+* [CB-13667](https://issues.apache.org/jira/browse/CB-13667): Remove 
deprecated platforms
+
+### 1.2.5 (Nov 06, 2017)
+* [CB-13299](https://issues.apache.org/jira/browse/CB-13299) (CI) Fix 
**Android** builds
+* [CB-12895](https://issues.apache.org/jira/browse/CB-12895) added `eslint` 
and removed `jshint`
+* [CB-13028](https://issues.apache.org/jira/browse/CB-13028) (CI) Added 
**Browser** platform to Travis
+* [CB-13000](https://issues.apache.org/jira/browse/CB-13000) (CI) Speed up 
**Android** builds
+* [CB-12991](https://issues.apache.org/jira/browse/CB-12991) (CI) Updated CI 
badges
+* [CB-12847](https://issues.apache.org/jira/browse/CB-12847) added `bugs` 
entry to `package.json`.
+
+### 1.2.4 (Apr 27, 2017)
+* [CB-12622](https://issues.apache.org/jira/browse/CB-12622) (Android) Added 
**Android 6.0** build badge
+* [CB-12685](https://issues.apache.org/jira/browse/CB-12685) added 
`package.json` to tests folder
+* [CB-12639](https://issues.apache.org/jira/browse/CB-12639) (all) Tests: 
console.err() -> console.error()
+
+### 1.2.3 (Feb 28, 2017)
+* [CB-12369](https://issues.apache.org/jira/browse/CB-12369) Add plugin 
typings from `DefinitelyTyped`
+* [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build 
badges for **iOS 9.3** and **iOS 10.0**
+
+### 1.2.2 (Dec 12, 2016)
+* [CB-12227](https://issues.apache.org/jira/browse/CB-12227) (windows) Fixed 
Browserify error
+* [CB-12236](https://issues.apache.org/jira/browse/CB-12236) - Fix 
RELEASENOTES.md for cordova-plugin-battery-status
+* [CB-12230](https://issues.apache.org/jira/browse/CB-12230) Removed Windows 
8.1 build badges
+* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Incremented 
plugin version.
+
+### 1.2.1 (Dec 07, 2016)
+
+* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version 
and RELEASENOTES.md for release 1.2.1
+* [CB-8929](https://issues.apache.org/jira/browse/CB-8929) Fix failing tests 
on iOS
+* [CB-8929](https://issues.apache.org/jira/browse/CB-8929) Use PowerManager to 
get battery state on Win 10
+* [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull 
request template checklist item: "iCLA has been submitted…"
+* [CB-11832](https://issues.apache.org/jira/browse/CB-11832) Incremented 
plugin version.
+
+### 1.2.0 (Sep 08, 2016)
+* [CB-11795](https://issues.apache.org/jira/browse/CB-11795) Add 'protective' 
entry to cordovaDependencies
+* Plugin uses Android Log class and not Cordova LOG class
+* Add badges for paramedic builds on Jenkins
+* Add pull request template.
+* [CB-10996](https://issues.apache.org/jira/browse/CB-10996) Adding front 
matter to README.md
+
+### 1.1.2 (Apr 15, 2016)
+* [CB-10720](https://issues.apache.org/jira/browse/CB-10720) Reorganizing and 
rewording docs.
+* [CB-10636](https://issues.apache.org/jira/browse/CB-10636) Add JSHint for 
plugins
+
+### 1.1.1 (Nov 18, 2015)
+* [CB-10035](https://issues.apache.org/jira/browse/CB-10035) Updated 
`RELEASENOTES` to be newest to oldest
+* Fixing contribute link.
+
+### 1.1.0 (Jun 17, 2015)
+* added missing license headers
+* [CB-7953](https://issues.apache.org/jira/browse/CB-7953) Add 
cordova-plugin-battery-status support for browser platform
+* [CB-9128](https://issues.apache.org/jira/browse/CB-9128) 
cordova-plugin-battery-status documentation translation: 
cordova-plugin-battery-status
+* attempt to fix npm issue
+
+### 1.0.0 (Apr 15, 2015)
+* [CB-8746](https://issues.apache.org/jira/browse/CB-8746) gave plugin major 
version bump
+* [CB-8808](https://issues.apache.org/jira/browse/CB-8808) Fixed tests to pass 
on Windows Phone 8.1
+* [CB-8831](https://issues.apache.org/jira/browse/CB-8831) Adds extra check 
for available API on Windows
+* [CB-8653](https://issues.apache.org/jira/browse/CB-8653) properly updated 
translated docs to use new id
+* [CB-8683](https://issues.apache.org/jira/browse/CB-8683) changed plugin-id 
to pacakge-name
+* [CB-8653](https://issues.apache.org/jira/browse/CB-8653) updated translated 
docs to use new id
+* U

[cordova-plugin-camera] branch master updated: Fix release notes (#304)

2017-12-29 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-camera.git


The following commit(s) were added to refs/heads/master by this push:
 new 6771854  Fix release notes (#304)
6771854 is described below

commit 67718544a80acb061fade30d8e663156369d0edb
Author: jcesarmobile <jcesarmob...@gmail.com>
AuthorDate: Sat Dec 30 06:59:38 2017 +0100

Fix release notes (#304)
---
 RELEASENOTES.md | 390 
 1 file changed, 390 insertions(+)

diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 8d1a5bf..14cf100 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -1,3 +1,393 @@
+
+# Release Notes
+
 ### 4.0.1 (Dec 27, 2017)
 * CB-13701Fix to allow 4.0.0 version install
 
+### 4.0.0 (Dec 15, 2017)
+* [CB-13661](https://issues.apache.org/jira/browse/CB-13661) Remove deprecated 
platforms
+
+### 3.0.0 (Nov 06, 2017)
+* Added `cordova-OSX` support
+* [CB-13515](https://issues.apache.org/jira/browse/CB-13515) (all): Add 
'protective' entry to `cordovaDependencies`
+* [CB-13332](https://issues.apache.org/jira/browse/CB-13332) (iOS): document 
`NSPhotoLibraryAddUsageDescription`
+* [CB-13264](https://issues.apache.org/jira/browse/CB-13264) (iOS): Remove 
**iOS** usage descriptions
+* [CB-13473](https://issues.apache.org/jira/browse/CB-13473) (CI) Removed 
**Browser** builds from AppVeyor
+* [CB-13446](https://issues.apache.org/jira/browse/CB-13446) Sync template 
with previous doc changes
+* [CB-13294](https://issues.apache.org/jira/browse/CB-13294) Removed 
`cordova-plugin-compat`
+* [CB-13299](https://issues.apache.org/jira/browse/CB-13299) (CI) Fix 
**Android** builds
+* [CB-12985](https://issues.apache.org/jira/browse/CB-12985) setup `eslint` 
and removed `jshint`
+* [CB-13028](https://issues.apache.org/jira/browse/CB-13028) (CI) **Browser** 
builds on Travis and AppVeyor
+* [CB-13002](https://issues.apache.org/jira/browse/CB-13002) (Android, 
**iOS**) Fix occasional Appium tests failures
+* [CB-13000](https://issues.apache.org/jira/browse/CB-13000) (CI) Speed up 
**Android** builds
+* [CB-12991](https://issues.apache.org/jira/browse/CB-12991) (CI) Updated CI 
badges
+* [CB-12964](https://issues.apache.org/jira/browse/CB-12964) (android) Fix of 
bug when Pictures folder did not exist.
+* [CB-12982](https://issues.apache.org/jira/browse/CB-12982) (Android, 
**iOS**) Appium tests: try to create a session harder
+* [CB-12682](https://issues.apache.org/jira/browse/CB-12682) (ios, 
**Android**): changes cancel error message to be consistent for **iOS** 
**Android**
+* [CB-12764](https://issues.apache.org/jira/browse/CB-12764) (android) Adapt 
Appium tests for **Android** 7
+* [CB-12847](https://issues.apache.org/jira/browse/CB-12847) added `bugs` 
entry to `package.json`.
+
+### 2.4.1 (Apr 27, 2017)
+* [CB-12622](https://issues.apache.org/jira/browse/CB-12622) Updated build 
badges in `README`
+* [CB-12650](https://issues.apache.org/jira/browse/CB-12650) Fix manual test 
for uploading image
+* [CB-12685](https://issues.apache.org/jira/browse/CB-12685) added 
`package.json` to tests folder
+* [CB-12622](https://issues.apache.org/jira/browse/CB-12622) (android) Appium 
tests: Bust **Android** 6 and 7 permission dialogs
+* [CB-12618](https://issues.apache.org/jira/browse/CB-12618) (android) Appium 
tests: Handle native cling
+
+### 2.4.0 (Feb 28, 2017)
+* [CB-12501](https://issues.apache.org/jira/browse/CB-12501) **Android**: 
Appium tests don't use `XPath` selectors anymore
+* [CB-12469](https://issues.apache.org/jira/browse/CB-12469) Appium tests can 
now run on **iOS 10**
+* [CB-12005](https://issues.apache.org/jira/browse/CB-12005) Changing the 
`getOrientation` method to return the defined enumerated `EXIF` instead of 
orientation in degrees for Consistency
+* [CB-12368](https://issues.apache.org/jira/browse/CB-12368) Fix permission 
check on **Android**
+* [CB-12353](https://issues.apache.org/jira/browse/CB-12353) Corrected merges 
usage in `plugin.xml`
+* [CB-12369](https://issues.apache.org/jira/browse/CB-12369) Add plugin 
typings from `DefinitelyTyped`
+* [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build 
badges for **iOS 9.3** and **iOS 10.0**
+* [CB-12312](https://issues.apache.org/jira/browse/CB-12312) [Appium] 
[Android] A few changes to the tests:  - updated comments on how to run the 
tests. extra comments around functionality at certain points in the automation. 
 - stub of a resolution checker on test startup - still need to figure out 
acceptable values.  - moved session shutdown to an afterAll clause.  - changed 
resolution determiner from using webview-based values to using the native 
windows dimensions - this helps as the [...]
+* [CB-12236](https://issues.apache.org/jira/browse/CB-12236) - Fixed 
RELEASENOTES for cordova-plugin-camera
+* [CB-12230](https://issues.apache.org/jira/browse/CB-12230) R

[cordova-plugin-device] branch master updated: Fix release notes (#75)

2017-12-29 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-device.git


The following commit(s) were added to refs/heads/master by this push:
 new ce97acb  Fix release notes (#75)
ce97acb is described below

commit ce97acba34b28f7b04e73510236e19fd47994b40
Author: jcesarmobile <jcesarmob...@gmail.com>
AuthorDate: Sat Dec 30 06:59:07 2017 +0100

Fix release notes (#75)
---
 RELEASENOTES.md | 175 
 1 file changed, 175 insertions(+)

diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 12b5527..113b948 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -1,3 +1,178 @@
+
+# Release Notes
+
 ### 2.0.1 (Dec 27, 2017)
 * [CB-13702](https://issues.apache.org/jira/browse/CB-13702) Fix to allow 
2.0.0 version install
 
+### 2.0.0 (Dec 15, 2017)
+* [CB-13670](https://issues.apache.org/jira/browse/CB-13670) Remove deprecated 
platforms
+
+### 1.1.7 (Nov 06, 2017)
+* [CB-13472](https://issues.apache.org/jira/browse/CB-13472) (CI) Fixed Travis 
**Android** builds again
+* [CB-12895](https://issues.apache.org/jira/browse/CB-12895) setup `eslint` 
and removed `jshint`
+* [CB-13113](https://issues.apache.org/jira/browse/CB-13113) (browser) 
`device.isVirtual` is always false
+* [CB-13028](https://issues.apache.org/jira/browse/CB-13028) (CI) **Browser** 
builds on Travis and AppVeyor
+* [CB-13000](https://issues.apache.org/jira/browse/CB-13000) (CI) Speed up 
**Android** builds
+* [CB-12847](https://issues.apache.org/jira/browse/CB-12847) added `bugs` 
entry to `package.json`.
+
+### 1.1.6 (Apr 27, 2017)
+* [CB-12622](https://issues.apache.org/jira/browse/CB-12622) Added **Android 
6.0** build badge to `README`
+* [CB-12685](https://issues.apache.org/jira/browse/CB-12685) added 
`package.json` to tests folder
+* [CB-12105](https://issues.apache.org/jira/browse/CB-12105) (browser) 
Properly detect Edge
+
+### 1.1.5 (Feb 28, 2017)
+* [CB-12353](https://issues.apache.org/jira/browse/CB-12353) Corrected merges 
usage in `plugin.xml`
+* [CB-12369](https://issues.apache.org/jira/browse/CB-12369) Add plugin 
typings from `DefinitelyTyped`
+* [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build 
badges for **iOS 9.3** and **iOS 10.0**
+* [CB-12230](https://issues.apache.org/jira/browse/CB-12230) Removed **Windows 
8.1** build badges
+
+### 1.1.4 (Dec 07, 2016)
+* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version 
and RELEASENOTES.md for release 1.1.4
+* [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull 
request template checklist item: "iCLA has been submitted…"
+* [CB-11832](https://issues.apache.org/jira/browse/CB-11832) Incremented 
plugin version.
+
+### 1.1.3 (Sep 08, 2016)
+* [CB-11795](https://issues.apache.org/jira/browse/CB-11795) Add 'protective' 
entry to cordovaDependencies
+* Add badges for paramedic builds on Jenkins
+* Add pull request template.
+* Readme: Add fenced code blocks with langauage hints
+* [CB-10996](https://issues.apache.org/jira/browse/CB-10996) Adding front 
matter to `README.md`
+
+### 1.1.2 (Apr 15, 2016)
+* Use passed device, follow create policy forf `CFUUIDCreate`
+* [CB-10631](https://issues.apache.org/jira/browse/CB-10631) Fix for 
`device.uuid` in **iOS 5.1.1**
+* Updating the comment to exclude URL
+* [CB-10636](https://issues.apache.org/jira/browse/CB-10636) Add `JSHint` for 
plugins
+* Refactored `deviceInfo` on **iOS** for better readability.
+
+### 1.1.1 (Jan 15, 2016)
+* [CB-10238](https://issues.apache.org/jira/browse/CB-10238) **OSX** Move 
`device-plugin` out from `cordovalib` to the plugin repository
+* [CB-9923](https://issues.apache.org/jira/browse/CB-9923) Update 
`device.platform` documentation for **Browser** platform
+
+### 1.1.0 (Nov 18, 2015)
+* [CB-10035](https://issues.apache.org/jira/browse/CB-10035) Updated 
`RELEASENOTES` to be newest to oldest
+* Add `isVirtual` for **Windows Phone 8.x**
+* Added basic **Android** support for hardware serial number
+* [CB-9865](https://issues.apache.org/jira/browse/CB-9865) Better simulator 
detection for **iOS**
+* Fixing contribute link.
+* Added **WP8** implementation
+* update to use `TARGET_OS_SIMULATOR` as `TARGET_IPHONE_SIMULATOR` is 
deprecated.
+* update code to use 'isVirtual'
+* create test to verify existence and type of new property 'isVirtual'
+* add `isSimulator` for **iOS** & **Android** device
+* Updated documentation to mention backwards compatibility
+* Updated **README** to reflect new behaviour and quirks on **iOS**
+* Check user defaults first to maintain backwards compatibility
+* Changed `UUID` to use `[UIDevice identifierForVendor]`
+
+### 1.0.1 (Jun 17, 2015)
+* [CB-9128](https://issues.apache.org/jira/browse/CB-9128) 
cordova-plugin-device documentation translation: cordova-plugin-device
+* Attempts to corrent npm markdown issue
+
+### 1.0.0 (

[cordova-plugin-dialogs] branch master updated: Fix release notes (#101)

2017-12-29 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-dialogs.git


The following commit(s) were added to refs/heads/master by this push:
 new c24c733  Fix release notes (#101)
c24c733 is described below

commit c24c7335f69416ef06b78dcd70b038b4f48cc8b5
Author: jcesarmobile <jcesarmob...@gmail.com>
AuthorDate: Sat Dec 30 06:58:45 2017 +0100

Fix release notes (#101)
---
 RELEASENOTES.md | 198 
 1 file changed, 198 insertions(+)

diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index c16b912..265338e 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -1,3 +1,201 @@
+
+# Release Notes
+
 ### 2.0.1 (Dec 27, 2017)
 * [CB-13703](https://issues.apache.org/jira/browse/CB-13703) Fix to allow 
2.0.0 version install
 
+### 2.0.0 (Dec 15, 2017)
+* [CB-13671](https://issues.apache.org/jira/browse/CB-13671) Remove deprecated 
platforms
+* [CB-13555](https://issues.apache.org/jira/browse/CB-13555) (ios) Present 
notification view controller by `InAppBrowser` view controller (#98)
+
+### 1.3.4 (Nov 06, 2017)
+* [CB-13473](https://issues.apache.org/jira/browse/CB-13473) (CI) Removed 
**Browser** builds from AppVeyor
+* [CB-13472](https://issues.apache.org/jira/browse/CB-13472) (CI) Fixed Travis 
**Android** builds again
+* [CB-12895](https://issues.apache.org/jira/browse/CB-12895) setup `eslint` 
and removed `jshint`
+* [CB-13028](https://issues.apache.org/jira/browse/CB-13028) (CI) **Browser** 
builds on Travis and AppVeyor
+* [CB-4615](https://issues.apache.org/jira/browse/CB-4615) document 
**Android** quirk around maximum number of button labels supported for the 
`confirm` method.
+* [CB-13000](https://issues.apache.org/jira/browse/CB-13000) (CI) Speed up 
**Android** builds
+* [CB-12847](https://issues.apache.org/jira/browse/CB-12847) added `bugs` 
entry to `package.json`.
+
+### 1.3.3 (Apr 27, 2017)
+* [CB-12622](https://issues.apache.org/jira/browse/CB-12622) Added **Android 
6.0** build badge to `README`
+* [CB-12685](https://issues.apache.org/jira/browse/CB-12685) added 
`package.json` to tests folder
+
+### 1.3.2 (Feb 28, 2017)
+* [CB-12353](https://issues.apache.org/jira/browse/CB-12353) Corrected merges 
usage in `plugin.xml`
+* [CB-12369](https://issues.apache.org/jira/browse/CB-12369) Add plugin 
typings from `DefinitelyTyped`
+* [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build 
badges for **iOS 9.3** and **iOS 10.0**
+* [CB-12230](https://issues.apache.org/jira/browse/CB-12230) Removed **Windows 
8.1** build badges
+
+### 1.3.1 (Dec 07, 2016)
+* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version 
and RELEASENOTES.md for release 1.3.1
+* [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull 
request template checklist item: "iCLA has been submitted…"
+* Replace empty buttonLabel with 'OK'
+* Make sure the alert buttonLabel is a string
+* Add enter key handling and map to default button.
+* Added test for [windows] 
[CB-11281](https://issues.apache.org/jira/browse/CB-11281) when called without 
defaultText
+* [CB-11832](https://issues.apache.org/jira/browse/CB-11832) Incremented 
plugin version.
+
+### 1.3.0 (Sep 08, 2016)
+* [CB-11832](https://issues.apache.org/jira/browse/CB-11832) updated missing 
header file
+* Select the text and put default value in the input directly.
+* [CB-11281](https://issues.apache.org/jira/browse/CB-11281) **windows**: 
`defaultText` is not taken as input if no input by user fixed
+* Separated `CSS` from `JS` code. Fixed the prompt dialog CSS to look close to 
native. Fixed the positioning of the prompt dialog for Windows. Fixed minor 
JSHint issues.
+* [CB-11795](https://issues.apache.org/jira/browse/CB-11795) Add 'protective' 
entry to cordovaDependencies
+* [CB-8773](https://issues.apache.org/jira/browse/CB-8773) Fix for **iOS 8** 
keyboard not appearing on prompt
+* [CB-11677](https://issues.apache.org/jira/browse/CB-11677) **Android**: made 
text, entered to prompt dialog visible
+* CB-8947:(**ios**) Fix crash. Convert non-string messages to strings. Added 
tests.
+* Add badges for paramedic builds on Jenkins
+* Add pull request template.
+* [CB-11218](https://issues.apache.org/jira/browse/CB-11218) Convert button 
list to appropriate type
+* Simply add **Browser** to supported platforms
+* [CB-10996](https://issues.apache.org/jira/browse/CB-10996) Adding front 
matter to README.md
+
+### 1.2.1 (Apr 15, 2016)
+* [CB-10097](https://issues.apache.org/jira/browse/CB-10097) dialog doesn't 
show on **iOS** when called from a select list `onChange` event
+* Remove `warning` emoji, as it doesn't correctly display in the docs website: 
http://cordova.apache.org/docs/en/dev/cordova-plugin-dialogs/index.html
+* [CB-10727](https://issues.apache.org/jira/browse/CB-10727) Dialogs plugin 
has warnings on **iOS**
+* 

[cordova-plugin-file] branch master updated: Fix release notes (#227)

2017-12-29 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-file.git


The following commit(s) were added to refs/heads/master by this push:
 new c248827  Fix release notes (#227)
c248827 is described below

commit c248827fddefc4d8b74489db5a44883ad0657782
Author: jcesarmobile <jcesarmob...@gmail.com>
AuthorDate: Sat Dec 30 06:58:20 2017 +0100

Fix release notes (#227)
---
 RELEASENOTES.md | 471 
 1 file changed, 471 insertions(+)

diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 40ff79e..678b65b 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -1,3 +1,474 @@
+
+# Release Notes
+
 ### 6.0.1 (Dec 27, 2017)
 * [CB-13704](https://issues.apache.org/jira/browse/CB-13704) Fix to allow 
6.0.0 version install
 
+### 6.0.0 (Dec 15, 2017)
+* [CB-13668](https://issues.apache.org/jira/browse/CB-13668) Remove deprecated 
platforms
+
+### 5.0.0 (Nov 06, 2017)
+* [CB-13481](https://issues.apache.org/jira/browse/CB-13481) (android) Don't 
ask for permission to read `file:///android_asset/`
+* [CB-13518](https://issues.apache.org/jira/browse/CB-13518) Add 'protective' 
entry to `cordovaDependencies`
+* [CB-13472](https://issues.apache.org/jira/browse/CB-13472) (CI) Fixed Travis 
**Android** builds again
+* [CB-13294](https://issues.apache.org/jira/browse/CB-13294) Remove 
`cordova-plugin-compat`
+* fixing `README` in use of `window.resolveLocalFileSystemURL`
+* [CB-12895](https://issues.apache.org/jira/browse/CB-12895) setup `eslint` 
and took out `jshint`
+* [CB-13028](https://issues.apache.org/jira/browse/CB-13028) (CI) **Browser** 
builds on Travis
+* [CB-13000](https://issues.apache.org/jira/browse/CB-13000) (CI) Speed up 
**Android** builds
+* [CB-12355](https://issues.apache.org/jira/browse/CB-12355) (iOS) add 
desciption about the `mimeTypeForFileAtPath` method
+* [CB-12355](https://issues.apache.org/jira/browse/CB-12355) (iOS) fix 
`FileEntry.file.type`
+* [CB-12847](https://issues.apache.org/jira/browse/CB-12847) added `bugs` 
entry to `package.json`.
+
+### 4.3.3 (Apr 27, 2017)
+* [CB-12622](https://issues.apache.org/jira/browse/CB-12622) Added **Android 
6.0** build badge to `README`
+* [CB-12685](https://issues.apache.org/jira/browse/CB-12685) added 
`package.json` to tests folder
+
+### 4.3.2 (Feb 28, 2017)
+* [CB-12353](https://issues.apache.org/jira/browse/CB-12353) Corrected merges 
usage in `plugin.xml`
+* [CB-12369](https://issues.apache.org/jira/browse/CB-12369) Add plugin 
typings from `DefinitelyTyped`
+* [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build 
badges for **iOS 9.3** and **iOS 10.0**
+* [CB-12230](https://issues.apache.org/jira/browse/CB-12230) Removed **Windows 
8.1** build badges
+
+### 4.3.1 (Dec 07, 2016)
+* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version 
and RELEASENOTES.md for release 4.3.1
+* [CB-12112](https://issues.apache.org/jira/browse/CB-12112) windows: Make 
available to move folder trees
+* fix ENCODING_ERR for applicationDirectory
+* [CB-11848](https://issues.apache.org/jira/browse/CB-11848) windows: Remove 
duplicate slash after file system path
+* [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull 
request template checklist item: "iCLA has been submitted…"
+* [CB-11947](https://issues.apache.org/jira/browse/CB-11947) fixed typo that 
occurs when adding file-transfer plugin
+* [CB-11832](https://issues.apache.org/jira/browse/CB-11832) Incremented 
plugin version.
+
+### 4.3.0 (Sep 08, 2016)
+* [CB-11795](https://issues.apache.org/jira/browse/CB-11795) Add 'protective' 
entry to cordovaDependencies
+* Add handling for `SecurityException`
+* [CB-11368](https://issues.apache.org/jira/browse/CB-11368) **android**: 
Resolve content `URLs` produced by contacts plugin
+* Plugin uses `Android Log class` and not `Cordova LOG class`
+* [CB-11693](https://issues.apache.org/jira/browse/CB-11693) **ios**: Run copy 
and move operations in the background thread
+* [CB-11699](https://issues.apache.org/jira/browse/CB-11699) Read files as 
Data URLs properly
+* [CB-11305](https://issues.apache.org/jira/browse/CB-11305) Enable `cdvfile: 
assets fs root` for `DOM` requests
+* [CB-11385](https://issues.apache.org/jira/browse/CB-11385) android: Import 
java.nio.charset.Charset in LocalFileSystem class
+* Add badges for paramedic builds on Jenkins
+* [CB-11407](https://issues.apache.org/jira/browse/CB-11407) ios: added extern 
keyword to constants to fix phonegap-webview-ios template issue.
+* [CB-11385](https://issues.apache.org/jira/browse/CB-11385) **android**: Does 
not pass sonarqube scan
+* Add pull request template.
+* Minor edits to the `README.md`
+* [CB-11142](https://issues.apache.org/jira/browse/CB-11142) Fix the 
`NeedPermission` code for the case when external media is not mounted in Android
+* 

[cordova-plugin-geolocation] branch master updated: Fix release notes (#102)

2017-12-29 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-geolocation.git


The following commit(s) were added to refs/heads/master by this push:
 new e679a5d  Fix release notes (#102)
e679a5d is described below

commit e679a5dcbca42dd504cc1f7de40476236cc9ec7d
Author: jcesarmobile <jcesarmob...@gmail.com>
AuthorDate: Sat Dec 30 06:57:49 2017 +0100

Fix release notes (#102)
---
 RELEASENOTES.md | 198 
 1 file changed, 198 insertions(+)

diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 12b5a75..186b7b8 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -1,3 +1,201 @@
+
+# Release Notes
+
 ### 4.0.1 (Dec 27, 2017)
 * [CB-13705](https://issues.apache.org/jira/browse/CB-13705) Fix to allow 
4.0.0 version install
 
+### 4.0.0 (Dec 15, 2017)
+* [CB-13664](https://issues.apache.org/jira/browse/CB-13664) remove deprecated 
platforms
+
+### 3.0.0 (Nov 06, 2017)
+* [CB-13267](https://issues.apache.org/jira/browse/CB-13267) (iOS): Remove 
**iOS** usage descriptions
+* [CB-13516](https://issues.apache.org/jira/browse/CB-13516) (all): Add 
'protective' entry to `cordovaDependencies`
+* [CB-13472](https://issues.apache.org/jira/browse/CB-13472) (CI) Fixed Travis 
**Android** builds again
+* [CB-13294](https://issues.apache.org/jira/browse/CB-13294) Remove 
`cordova-plugin-compat`
+* [CB-13299](https://issues.apache.org/jira/browse/CB-13299) (CI) Fix 
**Android** builds
+* [CB-12895](https://issues.apache.org/jira/browse/CB-12895) added `eslint` 
and removed `jshint`
+* [CB-12847](https://issues.apache.org/jira/browse/CB-12847) added `bugs` 
entry to `package.json`.
+
+### 2.4.3 (Apr 27, 2017)
+* [CB-12622](https://issues.apache.org/jira/browse/CB-12622) Added **Android 
6.0** build badge to `README`
+* [CB-12685](https://issues.apache.org/jira/browse/CB-12685) added 
`package.json` to tests folder
+
+### 2.4.2 (Feb 28, 2017)
+* [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build 
badges for **iOS 9.3** and **iOS 10.0**
+* [CB-12230](https://issues.apache.org/jira/browse/CB-12230) Removed **Windows 
8.1** build badges
+
+### 2.4.1 (Dec 07, 2016)
+* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version 
and RELEASENOTES.md for release 2.4.1
+* corrected KCLAuthorizationStatus error, changed to always removed user of 
[manager locationServicesEnabled].  Must return [CLLocationManager 
locationServicesEnabled] or 'none'
+* [CB-11962](https://issues.apache.org/jira/browse/CB-11962) (ios) Added 
variable for setting NSLocationWhenInUseUsageDescription
+* [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull 
request template checklist item: "iCLA has been submitted…"
+* [CB-11904](https://issues.apache.org/jira/browse/CB-11904) Incremented 
plugin version.
+
+### 2.4.0 (Sep 26, 2016)
+* **Ubuntu** Fix altitude & accuracies retrieval
+* [CB-11875](https://issues.apache.org/jira/browse/CB-11875) added 
`android.hardware.location.gps` `uses-feature`.
+
+### 2.3.0 (Sep 08, 2016)
+* [CB-11795](https://issues.apache.org/jira/browse/CB-11795) Add 'protective' 
entry to cordovaDependencies
+* Plugin uses `Android Log class` and not `Cordova LOG class`
+* Add badges for paramedic builds on Jenkins
+* Add pull request template.
+* Adding links to reference content and sample content to the top of the 
readme file
+* Update **iOS** geolocation plugin to avoid `THREAD WARNING: 
['Geolocation']`, operation occurs in new Thread
+* [CB-10996](https://issues.apache.org/jira/browse/CB-10996) Adding front 
matter to README.md
+
+### 2.2.0 (Apr 15, 2016)
+* Replace `PermissionHelper.java` with `cordova-plugin-compat`
+* [CB-10691](https://issues.apache.org/jira/browse/CB-10691) Check the context 
to avoid null errors
+* [CB-10636](https://issues.apache.org/jira/browse/CB-10636) Add `JSHint` for 
plugins
+* Using a fallback epsilon in case `Number.EPSILON` is not defined.
+* [CB-10574](https://issues.apache.org/jira/browse/CB-10574) MobileSpec can't 
get results for **WP8.1** Builds
+
+### 2.1.0 (Jan 15, 2016)
+* [CB-10319](https://issues.apache.org/jira/browse/CB-10319) **Android** 
Adding reflective helper methods for permission requests
+* [CB-8523](https://issues.apache.org/jira/browse/CB-8523) Fixed accuracy when 
`enableHighAccuracy: false` on **iOS**.
+* [CB-10286](https://issues.apache.org/jira/browse/CB-10286) Don't skip 
automatic tests on **Android** devices
+* [CB-10277](https://issues.apache.org/jira/browse/CB-10277) Error callback 
should be called w/ `PositionError` when location access is denied
+* [CB-10285](https://issues.apache.org/jira/browse/CB-10285) Added tests for 
`PositionError` constants
+* [CB-10278](https://issues.apache.org/jira/browse/CB-10278) geolocation 
`watchPosition` doesn't return `watchID` string
+* [CB-8443](https://issues.apache.org

[cordova-plugin-inappbrowser] 01/01: Merge pull request #256 from jcesarmobile/fix-release-notes

2017-12-29 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-inappbrowser.git

commit 1876869a052ca8d9d1cd7f5abdd5f18bbaea6ed6
Merge: b9e0a80 260542d
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Sat Dec 30 00:57:27 2017 -0500

Merge pull request #256 from jcesarmobile/fix-release-notes

Fix release notes

 RELEASENOTES.md | 655 
 1 file changed, 655 insertions(+)

-- 
To stop receiving notification emails like this one, please contact
"commits@cordova.apache.org" <commits@cordova.apache.org>.

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



[cordova-plugin-inappbrowser] branch master updated (b9e0a80 -> 1876869)

2017-12-29 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-inappbrowser.git.


from b9e0a80  Set VERSION to 2.0.2-dev (via coho)
 add 260542d  Fix release notes
 new 1876869  Merge pull request #256 from jcesarmobile/fix-release-notes

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASENOTES.md | 655 
 1 file changed, 655 insertions(+)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-media] branch master updated: Fix release notes (#161)

2017-12-29 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-media.git


The following commit(s) were added to refs/heads/master by this push:
 new 4b89d80  Fix release notes (#161)
4b89d80 is described below

commit 4b89d803274b0e9660c7ca06050c77fc55a6ebde
Author: jcesarmobile <jcesarmob...@gmail.com>
AuthorDate: Sat Dec 30 06:57:03 2017 +0100

Fix release notes (#161)
---
 RELEASENOTES.md | 249 
 1 file changed, 249 insertions(+)

diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index a1b4f19..db7d23d 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -1,4 +1,253 @@
+
+# Release Notes
+
 ### 5.0.1 (Dec 27, 2017)
 * [CB-13706](https://issues.apache.org/jira/browse/CB-13706) Fix to allow 
5.0.0 version install (#160)
 * Bump cordova-plugin-file dependency to 6.0.0
 
+### 5.0.0 (Dec 15, 2017)
+* [CB-13678](https://issues.apache.org/jira/browse/CB-13678) Remove deprecated 
platforms
+
+### 4.0.0 (Nov 06, 2017)
+* [CB-12264](https://issues.apache.org/jira/browse/CB-12264) (README): fix 
`media.getCurrentAmplitude` definition
+* [CB-13265](https://issues.apache.org/jira/browse/CB-13265) Remove **iOS** 
usage description from media plugin
+* [CB-13517](https://issues.apache.org/jira/browse/CB-13517)  (all): Add 
'protective' entry to `cordovaDependencies`
+* [CB-13473](https://issues.apache.org/jira/browse/CB-13473) (CI) Removed 
**Browser** builds from AppVeyor
+* [CB-13294](https://issues.apache.org/jira/browse/CB-13294) Remove 
`cordova-plugin-compat`
+* [CB-13299](https://issues.apache.org/jira/browse/CB-13299) (CI) Fix 
**Android** builds
+* [CB-13028](https://issues.apache.org/jira/browse/CB-13028) (CI) **Browser** 
builds on Travis and AppVeyor
+* [CB-12671](https://issues.apache.org/jira/browse/CB-12671) **iOS**: Fix 
auto-test with stopping media that is in starting state
+* [CB-12847](https://issues.apache.org/jira/browse/CB-12847) added `bugs` 
entry to `package.json`.
+
+### 3.0.1 (Apr 27, 2017)
+* [CB-12542](https://issues.apache.org/jira/browse/CB-12542) (ios) Fix wav 
file recording, add m4a extension. make **iOS** status handling compatible with 
**Android**/Windows
+* [CB-12622](https://issues.apache.org/jira/browse/CB-12622) Added **Android 
6.0** build badges to `README`
+* [CB-12685](https://issues.apache.org/jira/browse/CB-12685) added 
`package.json` to tests folder
+
+### 3.0.0 (Feb 28, 2017)
+* **Android:** fix `NullPointerException` in `AudioPlayer.readyPlayer`
+* **Android:** fix `java.lang.NullPointerException` on `resumeAllGainedFocus`
+* [CB-12493](https://issues.apache.org/jira/browse/CB-12493) (Tests) Fixed 
spec.21 flakyness
+* major version bump, added `cordovaDependencies` requirement for 
`cordova-android>=6.1.0`
+* Add engine tag for checking `cordova-android`
+* Make the output file of **Android** an `acc` file.
+* [CB-12422](https://issues.apache.org/jira/browse/CB-12422) **iOS:** Fix 
readme issue on background needed plist modification
+* [CB-12434](https://issues.apache.org/jira/browse/CB-12434) **Android:** fix 
Stoping a Paused Recording throws exception
+* [CB-12411](https://issues.apache.org/jira/browse/CB-12411) Stoping a Paused 
Recording throws illegal state exception
+* [CB-1187](https://issues.apache.org/jira/browse/CB-1187) **iOS:** Fix unused 
recording settings
+* [CB-12353](https://issues.apache.org/jira/browse/CB-12353) Corrected merges 
usage in `plugin.xml`
+* [CB-12369](https://issues.apache.org/jira/browse/CB-12369) Add plugin 
typings from DefinitelyTyped
+* [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build 
badges for **iOS 9.3** and **iOS 10.0** 
+* [CB-12230](https://issues.apache.org/jira/browse/CB-12230) Removed **Windows 
8.1** build badges
+
+### 2.4.1 (Dec 07, 2016)
+* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version 
and RELEASENOTES.md for release 2.4.1
+* [CB-12034](https://issues.apache.org/jira/browse/CB-12034) (ios) Add 
mandatory iOS 10 privacy description
+* [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull 
request template checklist item: "iCLA has been submitted…"
+* [CB-11529](https://issues.apache.org/jira/browse/CB-11529) ios: Make 
available setting volume for player on ios device
+* [CB-11832](https://issues.apache.org/jira/browse/CB-11832) Incremented 
plugin version.
+
+### 2.4.0 (Sep 08, 2016)
+* [CB-11795](https://issues.apache.org/jira/browse/CB-11795) Add 'protective' 
entry to cordovaDependencies
+* [CB-11793](https://issues.apache.org/jira/browse/CB-11793) fixed **android** 
build issue with last commit
+* [CB-11085](https://issues.apache.org/jira/browse/CB-11085) Fix error output 
using `println` to `LOG.e`
+* [CB-11757](https://issues.apache.org/jira/browse/CB-11757) (**ios**) Error 
out if trying to stop playback while in a wrong state

[cordova-plugin-media-capture] branch master updated: Fix release notes (#89)

2017-12-29 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-media-capture.git


The following commit(s) were added to refs/heads/master by this push:
 new de11c16  Fix release notes (#89)
de11c16 is described below

commit de11c166f19619409dee790ddfc3ce4b08333115
Author: jcesarmobile <jcesarmob...@gmail.com>
AuthorDate: Sat Dec 30 06:56:00 2017 +0100

Fix release notes (#89)
---
 RELEASENOTES.md | 197 
 1 file changed, 197 insertions(+)

diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index e59bdd7..63fed9e 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -1,4 +1,201 @@
+
+# Release Notes
+
 ### 3.0.1 (Dec 27, 2017)
 * [CB-13707](https://issues.apache.org/jira/browse/CB-13707) Fix to allow 
3.0.0 version install (#88)
 * Bump cordova-plugin-file dependency to 6.0.0
 
+### 3.0.0 (Dec 15, 2017)
+* [CB-13669](https://issues.apache.org/jira/browse/CB-13669) : Remove 
deprecated plugins
+
+### 2.0.0 (Nov 06, 2017)
+* [CB-13520](https://issues.apache.org/jira/browse/CB-13520) (all): Add 
'protective' entry to `cordovaDependencies`
+* [CB-13266](https://issues.apache.org/jira/browse/CB-13266) (ios): Remove 
**iOS** usage descriptions
+* [CB-13473](https://issues.apache.org/jira/browse/CB-13473) (CI) Removed 
**Browser** builds from AppVeyor
+* [CB-13294](https://issues.apache.org/jira/browse/CB-13294) Remove 
`cordova-plugin-compat`
+* [CB-13299](https://issues.apache.org/jira/browse/CB-13299) (CI) Fix 
**Android** builds
+* [CB-12895](https://issues.apache.org/jira/browse/CB-12895) added `eslint` 
and removed `jshint`
+* [CB-13028](https://issues.apache.org/jira/browse/CB-13028) (CI) **Browser** 
builds on Travis and AppVeyor
+* [CB-12882](https://issues.apache.org/jira/browse/CB-12882) (ios): adds 
support for permissions checks for `captureVideo` and `captureImage` methods
+* [CB-12847](https://issues.apache.org/jira/browse/CB-12847) added `bugs` 
entry to `package.json`.
+
+### 1.4.3 (Apr 27, 2017)
+* [CB-12622](https://issues.apache.org/jira/browse/CB-12622) Added **Android 
6.0** build badges to `README`
+* [CB-12685](https://issues.apache.org/jira/browse/CB-12685) added 
`package.json` to tests folder
+
+### 1.4.2 (Feb 28, 2017)
+* [CB-12353](https://issues.apache.org/jira/browse/CB-12353) Corrected merges 
usage in `plugin.xml`
+* [CB-12369](https://issues.apache.org/jira/browse/CB-12369) Add plugin 
typings from `DefinitelyTyped` 
+* [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build 
badges for **iOS 9.3** and **iOS 10.0** 
+* [CB-12230](https://issues.apache.org/jira/browse/CB-12230) Removed **Windows 
8.1** build badges
+
+### 1.4.1 (Dec 07, 2016)
+* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version 
and RELEASENOTES.md for release 1.4.1
+* [CB-10701](https://issues.apache.org/jira/browse/CB-10701) 
[CB-7117](https://issues.apache.org/jira/browse/CB-7117) android: Add manual 
test to check getting metadata
+* [CB-10489](https://issues.apache.org/jira/browse/CB-10489) Fix for 
MediaFile.getFormatData / audio recording support
+* [CB-10488](https://issues.apache.org/jira/browse/CB-10488) Fix for 
MediaFile.getFormatData
+* [CB-11996](https://issues.apache.org/jira/browse/CB-11996) Added a new 
manual test to capture multiple images
+* [CB-11995](https://issues.apache.org/jira/browse/CB-11995) (android) Do not 
pass a file URI to the camera
+* [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull 
request template checklist item: "iCLA has been submitted…"
+* [CB-11832](https://issues.apache.org/jira/browse/CB-11832) Incremented 
plugin version.
+
+### 1.4.0 (Sep 08, 2016)
+* Add mandatory **iOS 10** privacy description for microphone
+* [CB-11795](https://issues.apache.org/jira/browse/CB-11795) Add 'protective' 
entry to cordovaDependencies
+* [CB-11821](https://issues.apache.org/jira/browse/CB-11821) (ios) Add 
mandatory **iOS 10** privacy description
+* Plugin uses `Android Log class` and not `Cordova LOG class`
+* Add badges for paramedic builds on Jenkins
+* [CB-11396](https://issues.apache.org/jira/browse/CB-11396) - Audio Media 
Capture Crashes if app stores file on external storage
+* Add pull request template.
+* [CB-11212](https://issues.apache.org/jira/browse/CB-11212) **iOS**: 
Explicitly set the bundle for images
+* [CB-10554](https://issues.apache.org/jira/browse/CB-10554) Implementing 
plugin `save/restore` API for Android
+* [CB-11165](https://issues.apache.org/jira/browse/CB-11165) removed peer 
dependency
+* [CB-10996](https://issues.apache.org/jira/browse/CB-10996) Adding front 
matter to README.md
+
+### 1.3.0 (Apr 15, 2016)
+* Replace `PermissionHelper.java` with `cordova-plugin-compat`
+* CB-10670, [CB-10994](https://issues.apache.org/jira/browse/CB-10994) 
**Android**, Marshmallow permissions
+* [CB-10720](https://issues

[cordova-plugin-statusbar] branch master updated: Fix release notes (#93)

2017-12-29 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-statusbar.git


The following commit(s) were added to refs/heads/master by this push:
 new 70a421b  Fix release notes (#93)
70a421b is described below

commit 70a421bd257f4bb83ebcf95104d9ade72d9018fb
Author: jcesarmobile <jcesarmob...@gmail.com>
AuthorDate: Sat Dec 30 06:55:27 2017 +0100

Fix release notes (#93)
---
 RELEASENOTES.md | 166 
 1 file changed, 166 insertions(+)

diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index b0bbf6a..d9305be 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -1,3 +1,169 @@
+
+# Release Notes
+
 ### 2.4.1 (Dec 27, 2017)
 * [CB-13712](https://issues.apache.org/jira/browse/CB-13712) (iOS): fix 
overlaysWebView reset on rotation (#92)
 
+### 2.4.0 (Dec 15, 2017)
+* [CB-13623](https://issues.apache.org/jira/browse/CB-13623) (iOS): Remove 
**iOS** 6-7 code
+
+### 2.3.0 (Nov 06, 2017)
+* [CB-13476](https://issues.apache.org/jira/browse/CB-13476) (iOS): handle 
double size statusbar on SDK 10 for **iOS 11**
+* [CB-13394](https://issues.apache.org/jira/browse/CB-13394) (iOS): fix 
`iPhone X` StatusBar rendering in landscape
+* [CB-11858](https://issues.apache.org/jira/browse/CB-11858) (android) Add 
`StatusBarStyle` feature support for **Android M+**
+* [CB-13311](https://issues.apache.org/jira/browse/CB-13311) (iOS) Statusbar 
does not overlay correctly on `iPhone X`
+* [CB-13028](https://issues.apache.org/jira/browse/CB-13028) (CI) **Browser** 
builds on Travis and AppVeyor
+* [CB-12812](https://issues.apache.org/jira/browse/CB-12812) (browser) Fix 
statusbar plugin with **Browser** platform
+* [CB-12847](https://issues.apache.org/jira/browse/CB-12847) added `bugs` 
entry to `package.json`.
+
+### 2.2.3 (Apr 27, 2017)
+* [CB-12622](https://issues.apache.org/jira/browse/CB-12622) Added **Android 
6.0** build badge to `README`
+* [CB-10879](https://issues.apache.org/jira/browse/CB-10879) Enable 
overlaysWebView on **Android** API 21+
+* [CB-12685](https://issues.apache.org/jira/browse/CB-12685) added 
`package.json` to tests folder
+
+### 2.2.2 (Feb 28, 2017)
+* [CB-12188](https://issues.apache.org/jira/browse/CB-12188) Status Bar is not 
changing in some specific **Android** phone (Red MI 3s Prime)
+* [CB-12369](https://issues.apache.org/jira/browse/CB-12369) Add plugin 
typings from `DefinitelyTyped` 
+* [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build 
badges for **iOS 9.3** and **iOS 10.0** 
+* [CB-12196](https://issues.apache.org/jira/browse/CB-12196) **iOS** fix 
Status Bar Not Hiding
+* [CB-12141](https://issues.apache.org/jira/browse/CB-12141) **iOS** fix white 
app screen after camera overlay shown on iPad
+* [CB-12230](https://issues.apache.org/jira/browse/CB-12230) Removed **Windows 
8.1** build badges
+
+### 2.2.1 (Dec 07, 2016)
+* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version 
and RELEASENOTES.md for release 2.2.1
+* [CB-10288](https://issues.apache.org/jira/browse/CB-10288) statusbar plugin 
interaction with iOS multitasking
+* [CB-10158](https://issues.apache.org/jira/browse/CB-10158) (ios) fix 
StatusBar issue when recovering from fullscreen video
+* [CB-10341](https://issues.apache.org/jira/browse/CB-10341) ios, document 
statusTap event
+* [CB-11191](https://issues.apache.org/jira/browse/CB-11191) Statusbar plugin 
causing issues with webview size
+* [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull 
request template checklist item: "iCLA has been submitted…"
+* [CB-11832](https://issues.apache.org/jira/browse/CB-11832) Incremented 
plugin version.
+
+### 2.2.0 (Sep 08, 2016)
+* [CB-11795](https://issues.apache.org/jira/browse/CB-11795) Add 'protective' 
entry to cordovaDependencies
+* Handle extended status bar on **iOS**
+* Plugin uses `Android Log class` and not `Cordova LOG class`
+* [CB-11287](https://issues.apache.org/jira/browse/CB-11287) (**ios**) - fix 
webview resize after modal on **iPhones**
+* [CB-11485](https://issues.apache.org/jira/browse/CB-11485) fix resize on 
rotation with popover
+* Add badges for paramedic builds on Jenkins
+* [CB-11197](https://issues.apache.org/jira/browse/CB-11197) Keep status bar 
hidden when keyboard pops up
+* Add pull request template.
+* [CB-10866](https://issues.apache.org/jira/browse/CB-10866) Adding engine 
info to `package.json`
+* patched missing `_ready` method, and changed the way the proxy is installed
+* [CB-10996](https://issues.apache.org/jira/browse/CB-10996) Adding front 
matter to `README.md`
+
+### 2.1.3 (Apr 15, 2016)
+* [CB-11018](https://issues.apache.org/jira/browse/CB-11018) Fix statusbar 
with `inappbrowser` causing incorrect orientation on **iOS8**
+* [CB-10884](https://issues.apache.org/jira/browse/CB-10884) `Inappbrowser` 
breaks UI while Screen orientation change

[cordova-plugin-screen-orientation] branch master updated: Fix release notes (#29)

2017-12-29 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-screen-orientation.git


The following commit(s) were added to refs/heads/master by this push:
 new 76f290e  Fix release notes (#29)
76f290e is described below

commit 76f290e9cd2b13e602fe0c8786b471b9ce635137
Author: jcesarmobile <jcesarmob...@gmail.com>
AuthorDate: Sat Dec 30 06:54:36 2017 +0100

Fix release notes (#29)
---
 RELEASENOTES.md | 55 +++
 1 file changed, 55 insertions(+)

diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 7b3473c..ee7d467 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -1,3 +1,58 @@
+
+
+# Release Notes
+
 ### 3.0.1 (Dec 27, 2017)
 * [CB-13710](https://issues.apache.org/jira/browse/CB-13710) Fix to allow 
3.0.0 version install (#28)
 
+### 3.0.0 (Dec 15, 2017)
+* [CB-13673](https://issues.apache.org/jira/browse/CB-13673) : Remove 
deprecated platforms
+* [CB-13405](https://issues.apache.org/jira/browse/CB-13405) (ios) undo lock 
when resetting
+* [CB-13405](https://issues.apache.org/jira/browse/CB-13405) (ios) Screen 
unlock bug fix
+
+### 2.0.2 (Nov 06, 2017)
+* [CB-13472](https://issues.apache.org/jira/browse/CB-13472) (CI) Fixed Travis 
**Android** builds again
+* [CB-13028](https://issues.apache.org/jira/browse/CB-13028) (CI) **Browser** 
builds on Travis and AppVeyor
+* [CB-12994](https://issues.apache.org/jira/browse/CB-12994) (android, 
**BlackBerry**) add `es6-promise-plugin` from `npm`
+* [CB-12847](https://issues.apache.org/jira/browse/CB-12847) added `bugs` 
entry to `package.json`.
+
+### 2.0.1 (Apr 27, 2017)
+* [CB-12622](https://issues.apache.org/jira/browse/CB-12622) Added **Android 
6.0** build badge to `README`
+* [CB-12543](https://issues.apache.org/jira/browse/CB-12543) (iOS) Rotate to 
specified orientation when locked
+* [CB-12685](https://issues.apache.org/jira/browse/CB-12685) added 
`package.json` to tests folder
+* [CB-12588](https://issues.apache.org/jira/browse/CB-12588) add manual tests 
in cordova-plugin-test-framework style
+
+### 2.0.0 (Mar 14, 2017)
+* [CB-11628](https://issues.apache.org/jira/browse/CB-11628) - w3c spec 
compliance https://www.w3.org/TR/screen-orientation/
+
+### 1.4.2 (Dec 07, 2016)
+* [CB-11919](https://issues.apache.org/jira/browse/CB-11919) - Add github pull 
request template
+* Merge pull request #1 from DouglasHSS/master
+* updated readme with release notes
+* version updated and license adjusted
+* support interoperability between Orientation preference and 
screen-orientation plugin
+* fix header file incorrectly set as source-file
+* adding missing files to plugin.xml
+* make iOS rotate as needed when lockOrientation is called
+* switch license from MIT to Apache 2.0
+
+

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-network-information] branch master updated: Fix release notes (#61)

2017-12-29 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-network-information.git


The following commit(s) were added to refs/heads/master by this push:
 new 629a6ab  Fix release notes (#61)
629a6ab is described below

commit 629a6ab53c37d079a656451fa4bb172492d72a5e
Author: jcesarmobile <jcesarmob...@gmail.com>
AuthorDate: Sat Dec 30 06:55:02 2017 +0100

Fix release notes (#61)
---
 RELEASENOTES.md | 173 
 1 file changed, 173 insertions(+)

diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index e7affe5..d2d67ef 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -1,3 +1,176 @@
+
+# Release Notes
+
 ### 2.0.1 (Dec 27, 2017)
 * [CB-13708](https://issues.apache.org/jira/browse/CB-13708) Fix to allow 
2.0.0 version install (#60)
 
+### 2.0.0 (Dec 15, 2017)
+* [CB-13663](https://issues.apache.org/jira/browse/CB-13663) : Removed 
deprecated platforms
+
+### 1.3.4 (Nov 06, 2017)
+* [CB-12751](https://issues.apache.org/jira/browse/CB-12751) (ios) Fix 
connection type when airplane mode is on
+* [CB-13299](https://issues.apache.org/jira/browse/CB-13299) (CI) Fix 
**Android** builds
+* [CB-12895](https://issues.apache.org/jira/browse/CB-12895) added `eslint` 
and removed `jshint`
+* [CB-13028](https://issues.apache.org/jira/browse/CB-13028) (CI) **Browser** 
builds on Travis and AppVeyor
+* [CB-12847](https://issues.apache.org/jira/browse/CB-12847) added `bugs` 
entry to `package.json`.
+
+### 1.3.3 (Apr 27, 2017)
+* [CB-12622](https://issues.apache.org/jira/browse/CB-12622) Add **Android 
6.0** build badge to `README`
+* [CB-12685](https://issues.apache.org/jira/browse/CB-12685) added 
`package.json` to tests folder
+
+### 1.3.2 (Feb 28, 2017)
+* [CB-12369](https://issues.apache.org/jira/browse/CB-12369) Add plugin 
typings from `DefinitelyTyped` 
+* [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build 
badges for **iOS 9.3** and **iOS 10.0** 
+* [CB-11838](https://issues.apache.org/jira/browse/CB-11838) **iOS:** 
Unregister callback function at the right timing.
+* [CB-12230](https://issues.apache.org/jira/browse/CB-12230) Removed **Windows 
8.1** build badges
+
+### 1.3.1 (Dec 07, 2016)
+* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version 
and RELEASENOTES.md for release 1.3.1
+* [CB-11230](https://issues.apache.org/jira/browse/CB-11230) 
[CB-11505](https://issues.apache.org/jira/browse/CB-11505) iOS: Add 
compatibility with IPv6
+* [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull 
request template checklist item: "iCLA has been submitted…"
+* [CB-11832](https://issues.apache.org/jira/browse/CB-11832) Incremented 
plugin version.
+
+### 1.3.0 (Sep 08, 2016)
+* [CB-11795](https://issues.apache.org/jira/browse/CB-11795) Add 'protective' 
entry to cordovaDependencies
+* [CB-11734](https://issues.apache.org/jira/browse/CB-11734) Network Plugin 
uses `Android Log class` and not `Cordova LOG class`
+* [CB-11300](https://issues.apache.org/jira/browse/CB-11300) (**android**) 
Recognize `2G`, `3G` and `4G` network connection subtype names
+* Update `NetworkManager.java`
+* Detection of Ethernet Network Type on **Android**
+* fixed two potential memory leaks when doing Analyze on **iOS 9**
+* [CB-11384](https://issues.apache.org/jira/browse/CB-11384) **android**: Does 
not pass sonarqube scan
+* Add badges for paramedic builds on Jenkins
+* Add pull request template.
+* Readme: Add fenced code blocks with langauage hints
+* [CB-10996](https://issues.apache.org/jira/browse/CB-10996) Adding front 
matter to README.md
+
+### 1.2.1 (Apr 15, 2016)
+* [CB-10763](https://issues.apache.org/jira/browse/CB-10763) Remove emoji in 
`cordova-plugin-network-information`
+* [CB-10636](https://issues.apache.org/jira/browse/CB-10636) Add `JSHint` for 
plugins
+
+### 1.2.0 (Jan 15, 2016)
+* Adding `CoreTelephony` to `plugin.xml`
+* Adding notification for `CT radio` information
+* Adding `CT radio` information
+* [CB-10160](https://issues.apache.org/jira/browse/CB-10160) Fixed the case 
mismatch issue
+
+### 1.1.0 (Nov 18, 2015)
+* [CB-10035](https://issues.apache.org/jira/browse/CB-10035) Updated 
`RELEASENOTES` to be newest to oldest
+* Fixing contribute link.
+* These notifications are objects so their address always evaluates to true.
+* Update `NetworkManager.java`
+* [CB-9542](https://issues.apache.org/jira/browse/CB-9542) `Browser Proxy` not 
defined correctly
+* Solved `toLowerCase` issue with `Locale.US`
+
+### 1.0.1 (Jun 17, 2015)
+* Adding .ratignore file.
+* [CB-9128](https://issues.apache.org/jira/browse/CB-9128) 
cordova-plugin-network-information documentation translation: 
cordova-plugin-network-information
+* fix npm md issue
+
+### 1.0.0 (Apr 15, 2015)
+* [CB-8746](https://issues.apache.org/jira/browse/CB-8746) gave plugin major 
version bump
+*

[cordova-plugin-splashscreen] branch master updated: Fix release notes (#145)

2017-12-29 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-splashscreen.git


The following commit(s) were added to refs/heads/master by this push:
 new b5e0c78  Fix release notes (#145)
b5e0c78 is described below

commit b5e0c786c564f50771af72080d572bb4123bd4a1
Author: jcesarmobile <jcesarmob...@gmail.com>
AuthorDate: Sat Dec 30 06:54:06 2017 +0100

Fix release notes (#145)
---
 RELEASENOTES.md | 231 
 1 file changed, 231 insertions(+)

diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 72892ad..a92ded9 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -1,3 +1,234 @@
+
+# Release Notes
+
 ### 5.0.1 (Dec 27, 2017)
 * [CB-13709](https://issues.apache.org/jira/browse/CB-13709) Fix to allow 
5.0.0 version install (#144)
 
+### 5.0.0 (Dec 15, 2017)
+* [CB-13677](https://issues.apache.org/jira/browse/CB-13677) Remove deprecated 
platforms
+
+### 4.1.0 (Nov 06, 2017)
+* [CB-13473](https://issues.apache.org/jira/browse/CB-13473) (CI) Removed 
**Browser** builds from AppVeyor
+* [CB-12011](https://issues.apache.org/jira/browse/CB-12011) (android) added 
the possibility to change the spinner color on **Android 5.0**+ apps
+* [CB-13028](https://issues.apache.org/jira/browse/CB-13028) (CI) **Browser** 
builds on Travis and AppVeyor
+* [CB-13094](https://issues.apache.org/jira/browse/CB-13094) (android) Don't 
show splash when activity being finished
+* [CB-11487](https://issues.apache.org/jira/browse/CB-11487) (browser) 
Documented `AutoHideSplashScreen` for **Browser**
+* [CB-11488](https://issues.apache.org/jira/browse/CB-11488) (browser) The 
`hide()` call became non re-entrant after the addition of fade out. This fixes 
the issue.
+* [CB-11487](https://issues.apache.org/jira/browse/CB-11487) (browser) The 
standard `AutoHideSplashScreen` `config.xml` property is now supported by the 
**Browser** platform.
+* [CB-11486](https://issues.apache.org/jira/browse/CB-11486) (browser) 
`splashScreenDelay` now feed through `parseInt` to ensure it is an integer by 
the time it's value is passed in to `setTimeout()` in `hide()`.
+* [CB-12847](https://issues.apache.org/jira/browse/CB-12847) added `bugs` 
entry to `package.json`.
+
+### 4.0.3 (Apr 27, 2017)
+* [CB-12622](https://issues.apache.org/jira/browse/CB-12622) Added **Android 
6.0** build badge to `README`
+* [CB-12685](https://issues.apache.org/jira/browse/CB-12685) added 
`package.json` to tests folder
+
+### 4.0.2 (Feb 28, 2017)
+* [CB-12353](https://issues.apache.org/jira/browse/CB-12353) Corrected merges 
usage in `plugin.xml`
+* [CB-12369](https://issues.apache.org/jira/browse/CB-12369) Add plugin 
typings from `DefinitelyTyped` 
+* [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build 
badges for **iOS 9.3** and **iOS 10.0** 
+* [CB-12230](https://issues.apache.org/jira/browse/CB-12230) Removed **Windows 
8.1** build badges
+
+### 4.0.1 (Dec 07, 2016)
+* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version 
and RELEASENOTES.md for release 4.0.1
+* [CB-11751](https://issues.apache.org/jira/browse/CB-11751) 
'extendedSplashScreen' is undefined Document that splashscreen needs to be 
disabled on Windows in case of updating entire document body
+* [CB-9287](https://issues.apache.org/jira/browse/CB-9287) Not enough Icons 
and Splashscreens for **Windows 8.1** and Windows Phone 8.1
+* [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull 
request template checklist item: "iCLA has been submitted…"
+* [CB-11830](https://issues.apache.org/jira/browse/CB-11830) (iOS) Fix doc 
typos in PR#114
+* [CB-11829](https://issues.apache.org/jira/browse/CB-11829) (iOS) Support for 
CB-9762; docs (CB-11830)
+* [CB-11832](https://issues.apache.org/jira/browse/CB-11832) Incremented 
plugin version.
+
+### 4.0.0 (Sep 08, 2016)
+* [CB-11795](https://issues.apache.org/jira/browse/CB-11795) Add 'protective' 
entry to cordovaDependencies
+* [CB-11326](https://issues.apache.org/jira/browse/CB-11326) Prevent crash 
when initializing plugin after navigating to another URL
+* Fix crash on **iOS** when reloading page from remote **Safari**
+* Add badges for paramedic builds on Jenkins
+* Add pull request template.
+* [CB-11179](https://issues.apache.org/jira/browse/CB-11179) Extend the 
windows-splashscreen docs
+* [CB-11159](https://issues.apache.org/jira/browse/CB-11159) Fix flaky 
splashscreen native tests
+* [CB-11156](https://issues.apache.org/jira/browse/CB-11156) Change default 
`FadeSplashScreenDuration` value
+* [CB-8056](https://issues.apache.org/jira/browse/CB-8056) Updated the 
dependency version, added it to the docs
+* [CB-10996](https://issues.apache.org/jira/browse/CB-10996) Adding front 
matter to README.md
+* [CB-8056](https://issues.apache.org/jira/browse/CB-8056) Implement 
splashscreen for **Windows** platform
+*

[cordova-plugin-vibration] branch master updated: Fix release notes (#64)

2017-12-29 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-vibration.git


The following commit(s) were added to refs/heads/master by this push:
 new 9c3cc43  Fix release notes (#64)
9c3cc43 is described below

commit 9c3cc43c0089e30371a578ff879afc2bf52d6f42
Author: jcesarmobile <jcesarmob...@gmail.com>
AuthorDate: Sat Dec 30 06:53:33 2017 +0100

Fix release notes (#64)
---
 RELEASENOTES.md | 186 
 1 file changed, 186 insertions(+)

diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 5492f09..b003a0c 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -1,3 +1,189 @@
+
+# Release Notes
+
 ### 3.0.1 (Dec 27, 2017)
 * [CB-13711](https://issues.apache.org/jira/browse/CB-13711) Fix to allow 
3.0.0 version install (#63)
 
+### 3.0.0 (Dec 15, 2017)
+* [CB-13666](https://issues.apache.org/jira/browse/CB-13666) : Removed 
deprecated platforms
+* Removed deprecated components and bumped version
+* [CB-13045](https://issues.apache.org/jira/browse/CB-13045) Removed 
**Android** implementation and Updated `README`
+
+### 2.1.6 (Nov 06, 2017)
+* [CB-12895](https://issues.apache.org/jira/browse/CB-12895) added `eslint` 
and removed `jshint`
+* [CB-12847](https://issues.apache.org/jira/browse/CB-12847) added `bugs` 
entry to `package.json`.
+
+### 2.1.5 (Apr 27, 2017)
+* [CB-12622](https://issues.apache.org/jira/browse/CB-12622) Added **Android 
6.0** build badge to `README`
+* [CB-12685](https://issues.apache.org/jira/browse/CB-12685) added 
`package.json` to tests folder
+
+### 2.1.4 (Feb 28, 2017)
+* fix `vibrateWithPattern`, function doesn't update the pattern variable 
reference
+* [CB-12369](https://issues.apache.org/jira/browse/CB-12369) Add plugin 
typings from `DefinitelyTyped` 
+* [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build 
badges for **iOS 9.3** and **iOS 10.0** 
+* [CB-12230](https://issues.apache.org/jira/browse/CB-12230) Removed **Windows 
8.1** build badges
+
+### 2.1.3 (Dec 07, 2016)
+* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version 
and RELEASENOTES.md for release 2.1.3
+* [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull 
request template checklist item: "iCLA has been submitted…"
+* [CB-11832](https://issues.apache.org/jira/browse/CB-11832) Incremented 
plugin version.
+
+### 2.1.2 (Sep 08, 2016)
+* [CB-11795](https://issues.apache.org/jira/browse/CB-11795) Add 'protective' 
entry to cordovaDependencies
+* add JIRA issue tracker link
+* Add badges for paramedic builds on Jenkins
+* Add pull request template.
+* [CB-10996](https://issues.apache.org/jira/browse/CB-10996) Adding front 
matter to README.md
+
+### 2.1.1 (Apr 15, 2016)
+* [CB-10636](https://issues.apache.org/jira/browse/CB-10636) Add `JSHint` for 
plugins
+
+### 2.1.0 (Jan 15, 2016)
+* [CB-9365](https://issues.apache.org/jira/browse/CB-9365) Add support for 
'vibrateWithPattern' to **Windows Phone 8.1 / Windows 10**
+
+### 2.0.0 (Nov 18, 2015)
+* [CB-10035](https://issues.apache.org/jira/browse/CB-10035) Updated 
`RELEASENOTES` to be newest to oldest
+* Fixing contribute link.
+* Fixed **browser** platform to pass tests and combined tests
+* Removed call to add `proxy` and renamed **browser** file
+* [CB-7966](https://issues.apache.org/jira/browse/CB-7966) Add 
cordova-plugin-vibration support for **browser** platform
+* [CB-9166](https://issues.apache.org/jira/browse/CB-9166): Changed 
`plugin.xml` framework reference condition to be valid XML.
+
+### 1.2.0 (Jun 17, 2015)
+* Adding .ratignore file.
+* [CB-9128](https://issues.apache.org/jira/browse/CB-9128) 
cordova-plugin-vibration documentation translation: cordova-plugin-vibration
+* fix npm md issue
+* used min/max statics in vibrate with pattern. Use callbackId in callbacks, 
catch json format exceptions
+* static-ized MIN_DURATION and MAX_DURATION
+* [CB-7216](https://issues.apache.org/jira/browse/CB-7216) changed 
cancelWasCalled boolean
+* [CB-7218](https://issues.apache.org/jira/browse/CB-7218) truncate vibration 
to 5 secs for WP8
+* [CB-6916](https://issues.apache.org/jira/browse/CB-6916) added 
vibrateWithPattern for wp8
+* [CB-6914](https://issues.apache.org/jira/browse/CB-6914) added 
cancelVibration for wp8
+* android: respect silent audio setting
+
+### 1.1.0 (May 06, 2015)
+* [CB-8930](https://issues.apache.org/jira/browse/CB-8930): Vibration on 
**Windows** fails without a helpful error message when vibration functionality 
is missing from the platform.  This detects such a case and instead fails 
gracefully that the feature isn't available.  Also supports the **Windows 10** 
vibration mechanism.
+
+### 1.0.0 (Apr 15, 2015)
+* [CB-8746](https://issues.apache.org/jira/browse/CB-8746) gave plugin major 
version bump
+* [CB-8683](https://issues.apache.org/jira/browse/CB-8683) changed plugin-id 
to pac

[cordova-plugin-vibration] branch master updated: Add build-tools-26.0.2 to travis (#65)

2017-12-29 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-vibration.git


The following commit(s) were added to refs/heads/master by this push:
 new aa22665  Add build-tools-26.0.2 to travis (#65)
aa22665 is described below

commit aa226657b92f208bc61d42c7d6a2e0b922841911
Author: jcesarmobile <jcesarmob...@gmail.com>
AuthorDate: Sat Dec 30 06:50:54 2017 +0100

Add build-tools-26.0.2 to travis (#65)
---
 .travis.yml | 4 
 1 file changed, 4 insertions(+)

diff --git a/.travis.yml b/.travis.yml
index 9a4e18b..71d9ca8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -41,6 +41,7 @@ matrix:
 android:
   components:
   - tools
+  - build-tools-26.0.2
   - env: PLATFORM=android-5.1
 os: linux
 language: android
@@ -48,6 +49,7 @@ matrix:
 android:
   components:
   - tools
+  - build-tools-26.0.2
   - env: PLATFORM=android-6.0
 os: linux
 language: android
@@ -55,6 +57,7 @@ matrix:
 android:
   components:
   - tools
+  - build-tools-26.0.2
   - env: PLATFORM=android-7.0
 os: linux
 language: android
@@ -62,6 +65,7 @@ matrix:
 android:
   components:
   - tools
+  - build-tools-26.0.2
 before_install:
 - rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && 
(cd ~/.nvm
   && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && 
nvm

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



svn commit: r23927 - /dev/cordova/CB-13714/

2017-12-27 Thread macdonst
Author: macdonst
Date: Thu Dec 28 00:38:11 2017
New Revision: 23927

Log:
plugins release added

Added:
dev/cordova/CB-13714/
dev/cordova/CB-13714/cordova-plugin-battery-status-2.0.1.tgz   (with props)
dev/cordova/CB-13714/cordova-plugin-battery-status-2.0.1.tgz.asc
dev/cordova/CB-13714/cordova-plugin-battery-status-2.0.1.tgz.md5
dev/cordova/CB-13714/cordova-plugin-battery-status-2.0.1.tgz.sha512
dev/cordova/CB-13714/cordova-plugin-camera-4.0.1.tgz   (with props)
dev/cordova/CB-13714/cordova-plugin-camera-4.0.1.tgz.asc
dev/cordova/CB-13714/cordova-plugin-camera-4.0.1.tgz.md5
dev/cordova/CB-13714/cordova-plugin-camera-4.0.1.tgz.sha512
dev/cordova/CB-13714/cordova-plugin-device-2.0.1.tgz   (with props)
dev/cordova/CB-13714/cordova-plugin-device-2.0.1.tgz.asc
dev/cordova/CB-13714/cordova-plugin-device-2.0.1.tgz.md5
dev/cordova/CB-13714/cordova-plugin-device-2.0.1.tgz.sha512
dev/cordova/CB-13714/cordova-plugin-dialogs-2.0.1.tgz   (with props)
dev/cordova/CB-13714/cordova-plugin-dialogs-2.0.1.tgz.asc
dev/cordova/CB-13714/cordova-plugin-dialogs-2.0.1.tgz.md5
dev/cordova/CB-13714/cordova-plugin-dialogs-2.0.1.tgz.sha512
dev/cordova/CB-13714/cordova-plugin-file-6.0.1.tgz   (with props)
dev/cordova/CB-13714/cordova-plugin-file-6.0.1.tgz.asc
dev/cordova/CB-13714/cordova-plugin-file-6.0.1.tgz.md5
dev/cordova/CB-13714/cordova-plugin-file-6.0.1.tgz.sha512
dev/cordova/CB-13714/cordova-plugin-geolocation-4.0.1.tgz   (with props)
dev/cordova/CB-13714/cordova-plugin-geolocation-4.0.1.tgz.asc
dev/cordova/CB-13714/cordova-plugin-geolocation-4.0.1.tgz.md5
dev/cordova/CB-13714/cordova-plugin-geolocation-4.0.1.tgz.sha512
dev/cordova/CB-13714/cordova-plugin-inappbrowser-2.0.1.tgz   (with props)
dev/cordova/CB-13714/cordova-plugin-inappbrowser-2.0.1.tgz.asc
dev/cordova/CB-13714/cordova-plugin-inappbrowser-2.0.1.tgz.md5
dev/cordova/CB-13714/cordova-plugin-inappbrowser-2.0.1.tgz.sha512
dev/cordova/CB-13714/cordova-plugin-media-5.0.1.tgz   (with props)
dev/cordova/CB-13714/cordova-plugin-media-5.0.1.tgz.asc
dev/cordova/CB-13714/cordova-plugin-media-5.0.1.tgz.md5
dev/cordova/CB-13714/cordova-plugin-media-5.0.1.tgz.sha512
dev/cordova/CB-13714/cordova-plugin-media-capture-3.0.1.tgz   (with props)
dev/cordova/CB-13714/cordova-plugin-media-capture-3.0.1.tgz.asc
dev/cordova/CB-13714/cordova-plugin-media-capture-3.0.1.tgz.md5
dev/cordova/CB-13714/cordova-plugin-media-capture-3.0.1.tgz.sha512
dev/cordova/CB-13714/cordova-plugin-network-information-2.0.1.tgz   (with 
props)
dev/cordova/CB-13714/cordova-plugin-network-information-2.0.1.tgz.asc
dev/cordova/CB-13714/cordova-plugin-network-information-2.0.1.tgz.md5
dev/cordova/CB-13714/cordova-plugin-network-information-2.0.1.tgz.sha512
dev/cordova/CB-13714/cordova-plugin-screen-orientation-3.0.1.tgz   (with 
props)
dev/cordova/CB-13714/cordova-plugin-screen-orientation-3.0.1.tgz.asc
dev/cordova/CB-13714/cordova-plugin-screen-orientation-3.0.1.tgz.md5
dev/cordova/CB-13714/cordova-plugin-screen-orientation-3.0.1.tgz.sha512
dev/cordova/CB-13714/cordova-plugin-splashscreen-5.0.1.tgz   (with props)
dev/cordova/CB-13714/cordova-plugin-splashscreen-5.0.1.tgz.asc
dev/cordova/CB-13714/cordova-plugin-splashscreen-5.0.1.tgz.md5
dev/cordova/CB-13714/cordova-plugin-splashscreen-5.0.1.tgz.sha512
dev/cordova/CB-13714/cordova-plugin-statusbar-2.4.1.tgz   (with props)
dev/cordova/CB-13714/cordova-plugin-statusbar-2.4.1.tgz.asc
dev/cordova/CB-13714/cordova-plugin-statusbar-2.4.1.tgz.md5
dev/cordova/CB-13714/cordova-plugin-statusbar-2.4.1.tgz.sha512
dev/cordova/CB-13714/cordova-plugin-vibration-3.0.1.tgz   (with props)
dev/cordova/CB-13714/cordova-plugin-vibration-3.0.1.tgz.asc
dev/cordova/CB-13714/cordova-plugin-vibration-3.0.1.tgz.md5
dev/cordova/CB-13714/cordova-plugin-vibration-3.0.1.tgz.sha512

Added: dev/cordova/CB-13714/cordova-plugin-battery-status-2.0.1.tgz
==
Binary file - no diff available.

Propchange: dev/cordova/CB-13714/cordova-plugin-battery-status-2.0.1.tgz
--
svn:mime-type = application/octet-stream

Added: dev/cordova/CB-13714/cordova-plugin-battery-status-2.0.1.tgz.asc
==
--- dev/cordova/CB-13714/cordova-plugin-battery-status-2.0.1.tgz.asc (added)
+++ dev/cordova/CB-13714/cordova-plugin-battery-status-2.0.1.tgz.asc Thu Dec 28 
00:38:11 2017
@@ -0,0 +1,11 @@
+-BEGIN PGP SIGNATURE-
+
+iQEzBAABCAAdFiEE3x9SiuPSmwTuHa/LSFwVhmnJlcwFAlpEPA4ACgkQSFwVhmnJ
+lcxD7ggA1Vq2soLEHNFn0S0+7VeF1EYXEiYOQWMeCRrDHGuQ/GT+lRKSzEpUYRlC
+YrTFrxMcFeaKbpQo0+oL2po9F/j57aQYXJ6GcjiyO7PbfFpCBapmVgWMzX2GzzMj
+AlnhR0WAPCC+Vv

svn commit: r23924 - /release/cordova/plugins/

2017-12-27 Thread macdonst
Author: macdonst
Date: Thu Dec 28 00:22:24 2017
New Revision: 23924

Log:
 Published plugins release to dist

Removed:
release/cordova/plugins/cordova-plugin-battery-status-2.0.0.tgz
release/cordova/plugins/cordova-plugin-battery-status-2.0.0.tgz.asc
release/cordova/plugins/cordova-plugin-battery-status-2.0.0.tgz.md5
release/cordova/plugins/cordova-plugin-battery-status-2.0.0.tgz.sha512
release/cordova/plugins/cordova-plugin-camera-4.0.0.tgz
release/cordova/plugins/cordova-plugin-camera-4.0.0.tgz.asc
release/cordova/plugins/cordova-plugin-camera-4.0.0.tgz.md5
release/cordova/plugins/cordova-plugin-camera-4.0.0.tgz.sha512
release/cordova/plugins/cordova-plugin-device-2.0.0.tgz
release/cordova/plugins/cordova-plugin-device-2.0.0.tgz.asc
release/cordova/plugins/cordova-plugin-device-2.0.0.tgz.md5
release/cordova/plugins/cordova-plugin-device-2.0.0.tgz.sha512
release/cordova/plugins/cordova-plugin-dialogs-2.0.0.tgz
release/cordova/plugins/cordova-plugin-dialogs-2.0.0.tgz.asc
release/cordova/plugins/cordova-plugin-dialogs-2.0.0.tgz.md5
release/cordova/plugins/cordova-plugin-dialogs-2.0.0.tgz.sha512
release/cordova/plugins/cordova-plugin-file-6.0.0.tgz
release/cordova/plugins/cordova-plugin-file-6.0.0.tgz.asc
release/cordova/plugins/cordova-plugin-file-6.0.0.tgz.md5
release/cordova/plugins/cordova-plugin-file-6.0.0.tgz.sha512
release/cordova/plugins/cordova-plugin-geolocation-4.0.0.tgz
release/cordova/plugins/cordova-plugin-geolocation-4.0.0.tgz.asc
release/cordova/plugins/cordova-plugin-geolocation-4.0.0.tgz.md5
release/cordova/plugins/cordova-plugin-geolocation-4.0.0.tgz.sha512
release/cordova/plugins/cordova-plugin-inappbrowser-2.0.0.tgz
release/cordova/plugins/cordova-plugin-inappbrowser-2.0.0.tgz.asc
release/cordova/plugins/cordova-plugin-inappbrowser-2.0.0.tgz.md5
release/cordova/plugins/cordova-plugin-inappbrowser-2.0.0.tgz.sha512
release/cordova/plugins/cordova-plugin-media-5.0.0.tgz
release/cordova/plugins/cordova-plugin-media-5.0.0.tgz.asc
release/cordova/plugins/cordova-plugin-media-5.0.0.tgz.md5
release/cordova/plugins/cordova-plugin-media-5.0.0.tgz.sha512
release/cordova/plugins/cordova-plugin-media-capture-3.0.0.tgz
release/cordova/plugins/cordova-plugin-media-capture-3.0.0.tgz.asc
release/cordova/plugins/cordova-plugin-media-capture-3.0.0.tgz.md5
release/cordova/plugins/cordova-plugin-media-capture-3.0.0.tgz.sha512
release/cordova/plugins/cordova-plugin-network-information-2.0.0.tgz
release/cordova/plugins/cordova-plugin-network-information-2.0.0.tgz.asc
release/cordova/plugins/cordova-plugin-network-information-2.0.0.tgz.md5
release/cordova/plugins/cordova-plugin-network-information-2.0.0.tgz.sha512
release/cordova/plugins/cordova-plugin-screen-orientation-3.0.0.tgz
release/cordova/plugins/cordova-plugin-screen-orientation-3.0.0.tgz.asc
release/cordova/plugins/cordova-plugin-screen-orientation-3.0.0.tgz.md5
release/cordova/plugins/cordova-plugin-screen-orientation-3.0.0.tgz.sha512
release/cordova/plugins/cordova-plugin-splashscreen-5.0.0.tgz
release/cordova/plugins/cordova-plugin-splashscreen-5.0.0.tgz.asc
release/cordova/plugins/cordova-plugin-splashscreen-5.0.0.tgz.md5
release/cordova/plugins/cordova-plugin-splashscreen-5.0.0.tgz.sha512
release/cordova/plugins/cordova-plugin-statusbar-2.4.0.tgz
release/cordova/plugins/cordova-plugin-statusbar-2.4.0.tgz.asc
release/cordova/plugins/cordova-plugin-statusbar-2.4.0.tgz.md5
release/cordova/plugins/cordova-plugin-statusbar-2.4.0.tgz.sha512
release/cordova/plugins/cordova-plugin-vibration-3.0.0.tgz
release/cordova/plugins/cordova-plugin-vibration-3.0.0.tgz.asc
release/cordova/plugins/cordova-plugin-vibration-3.0.0.tgz.md5
release/cordova/plugins/cordova-plugin-vibration-3.0.0.tgz.sha512


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



[cordova-plugin-splashscreen] branch 5.0.x updated (36bf91c -> fb606fe)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch 5.0.x
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-splashscreen.git.


from 36bf91c  CB-13681 Updated version and RELEASENOTES.md for release 
5.0.0 (via coho)
 add 031afc5  Set VERSION to 5.0.1-dev (via coho)
 add 57b553a  CB-13709: Fix to allow 5.0.0 version install (#144)
 add fb606fe  CB-13714 Updated version and RELEASENOTES.md for release 
5.0.1 (via coho)

No new revisions were added by this update.

Summary of changes:
 RELEASENOTES.md  | 232 +--
 package.json |   4 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 6 insertions(+), 234 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-media] branch 5.0.x updated (f4b82af -> 5b7c7d1)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch 5.0.x
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-media.git.


from f4b82af  Bump cordova-plugin-file dependency to 6.0.0
 add 23b02fb  Set VERSION to 5.0.1-dev (via coho)
 add 7753d61  Bump cordova-plugin-file dependency to 6.0.0
 add 470f5ff  CB-13706: Fix to allow 5.0.0 version install (#160)
 add e974e63  CB-13714 Updated version and RELEASENOTES.md for release 
5.0.1 (via coho)
 new 5b7c7d1  Merge branch 'master' into 5.0.x

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASENOTES.md  | 251 +--
 package.json |   4 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 7 insertions(+), 252 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-battery-status] branch 2.0.x updated (8f1872c -> 7fa0fe4)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch 2.0.x
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-battery-status.git.


from 8f1872c  CB-13681 Updated version and RELEASENOTES.md for release 
2.0.0 (via coho)
 add 470427c  Set VERSION to 2.0.1-dev (via coho)
 add 0746160  CB-13700: Fix to allow 2.0.0 version install (#62)
 add 7fa0fe4  CB-13714 Updated version and RELEASENOTES.md for release 
2.0.1 (via coho)

No new revisions were added by this update.

Summary of changes:
 RELEASENOTES.md  | 143 +--
 package.json |   4 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 6 insertions(+), 145 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-file] branch 6.0.x updated (957e1dc -> 2057083)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch 6.0.x
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-file.git.


from 957e1dc  CB-13681 Updated version and RELEASENOTES.md for release 
6.0.0 (via coho)
 add bd4bda0  Set VERSION to 6.0.1-dev (via coho)
 add 4104432  CB-13704: Fix to allow 6.0.0 version install
 add bb4319a  Merge pull request #226 from jcesarmobile/CB-13704
 add 2057083  CB-13714 Updated version and RELEASENOTES.md for release 
6.0.1 (via coho)

No new revisions were added by this update.

Summary of changes:
 RELEASENOTES.md  | 472 +--
 package.json |   4 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 6 insertions(+), 474 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-network-information] branch 2.0.x updated (2cfc366 -> 417d0f2)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch 2.0.x
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-network-information.git.


from 2cfc366  CB-13681 Updated version and RELEASENOTES.md for release 
2.0.0 (via coho)
 add df64dcf  Set VERSION to 2.0.1-dev (via coho)
 add 63a78ba  CB-13708: Fix to allow 2.0.0 version install (#60)
 add 417d0f2  CB-13714 Updated version and RELEASENOTES.md for release 
2.0.1 (via coho)

No new revisions were added by this update.

Summary of changes:
 RELEASENOTES.md  | 174 +--
 package.json |   4 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 6 insertions(+), 176 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-statusbar] branch 2.4.x updated (caf2ae6 -> 4988b6f)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch 2.4.x
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-statusbar.git.


from caf2ae6  CB-13681 Updated version and RELEASENOTES.md for release 
2.4.0 (via coho)
 add 6352d80  Set VERSION to 2.4.1-dev (via coho)
 add 8da38f5  CB-13712 (iOS): fix overlaysWebView reset on rotation (#92)
 add 4988b6f  CB-13714 Updated version and RELEASENOTES.md for release 
2.4.1 (via coho)

No new revisions were added by this update.

Summary of changes:
 RELEASENOTES.md| 167 +
 package.json   |   2 +-
 plugin.xml |   2 +-
 src/ios/CDVStatusBar.m |   8 ++-
 tests/plugin.xml   |   2 +-
 5 files changed, 11 insertions(+), 170 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-inappbrowser] branch 2.0.x updated (d85991a -> 7c1ea3b)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch 2.0.x
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-inappbrowser.git.


from d85991a  CB-13681 Updated version and RELEASENOTES.md for release 
2.0.0 (via coho)
 add e428556  Set VERSION to 2.0.1-dev (via coho)
 add 5f072a7  CB-13699: Fix to allow 2.0.0 version install
 add 3a2c4ef  Merge pull request #255 from jcesarmobile/CB-13699
 add 7c1ea3b  CB-13714 Updated version and RELEASENOTES.md for release 
2.0.1 (via coho)

No new revisions were added by this update.

Summary of changes:
 RELEASENOTES.md  | 656 +--
 package.json |   4 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 6 insertions(+), 658 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-vibration] branch 3.0.x updated (e6be960 -> dd4b6f2)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch 3.0.x
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-vibration.git.


from e6be960  CB-13681 Updated version and RELEASENOTES.md for release 
3.0.0 (via coho)
 add 8482af6  Set VERSION to 3.0.1-dev (via coho)
 add 07611ff  CB-13711: Fix to allow 3.0.0 version install (#63)
 add dd4b6f2  CB-13714 Updated version and RELEASENOTES.md for release 
3.0.1 (via coho)

No new revisions were added by this update.

Summary of changes:
 RELEASENOTES.md  | 187 +--
 package.json |   4 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 6 insertions(+), 189 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-camera] branch 4.0.x updated (4ae0de1 -> fb02f48)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch 4.0.x
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-camera.git.


from 4ae0de1  CB-13681 Updated version and RELEASENOTES.md for release 
4.0.0 (via coho)
 add 82f1c83  Set VERSION to 4.0.1-dev (via coho)
 add 96b7f55  CB-13701Fix to allow 4.0.0 version install
 add 6bf45f0  Merge pull request #303 from jcesarmobile/CB-13701
 add fb02f48  CB-13714 Updated version and RELEASENOTES.md for release 
4.0.1 (via coho)

No new revisions were added by this update.

Summary of changes:
 RELEASENOTES.md  | 391 +--
 package.json |   4 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 6 insertions(+), 393 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-media-capture] branch 3.0.x updated (41129a6 -> 0094e74)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch 3.0.x
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-media-capture.git.


from 41129a6  Bump cordova-plugin-file dependency to 6.0.0
 add 4007078  Set VERSION to 3.0.1-dev (via coho)
 add d5a8aa6  Bump cordova-plugin-file dependency to 6.0.0
 add e0c06eb  CB-13707: Fix to allow 3.0.0 version install (#88)
 add e94dd74  CB-13714 Updated version and RELEASENOTES.md for release 
3.0.1 (via coho)
 new 0094e74  Merge branch 'master' into 3.0.x

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASENOTES.md  | 199 +--
 package.json |   4 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 7 insertions(+), 200 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-dialogs] branch 2.0.x updated (839eb34 -> c4e079d)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch 2.0.x
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-dialogs.git.


from 839eb34  CB-13681 Updated version and RELEASENOTES.md for release 
2.0.0 (via coho)
 add 5041eac  Set VERSION to 2.0.1-dev (via coho)
 add a346846  CB-13703: Fix to allow 2.0.0 version install
 add 46cd65d  Merge pull request #100 from jcesarmobile/CB-13703
 add c4e079d  CB-13714 Updated version and RELEASENOTES.md for release 
2.0.1 (via coho)

No new revisions were added by this update.

Summary of changes:
 RELEASENOTES.md  | 199 +--
 package.json |   4 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 6 insertions(+), 201 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-screen-orientation] branch 3.0.x updated (044e8cc -> 9bd2ef7)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch 3.0.x
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-screen-orientation.git.


from 044e8cc  CB-13681 Updated version and RELEASENOTES.md for release 
3.0.0 (via coho)
 add 338424b  Set VERSION to 3.0.1-dev (via coho)
 add 5b34d06  CB-13710: Fix to allow 3.0.0 version install (#28)
 add 9bd2ef7  CB-13714 Updated version and RELEASENOTES.md for release 
3.0.1 (via coho)

No new revisions were added by this update.

Summary of changes:
 RELEASENOTES.md  | 57 ++--
 package.json |  4 ++--
 plugin.xml   |  2 +-
 tests/plugin.xml |  2 +-
 4 files changed, 6 insertions(+), 59 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-media-capture] 01/01: Merge branch 'master' into 3.0.x

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch 3.0.x
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-media-capture.git

commit 0094e742d3cc057058f55c25b1fd0af6f0849634
Merge: 41129a6 e94dd74
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:49 2017 -0500

Merge branch 'master' into 3.0.x

 RELEASENOTES.md  | 199 +--
 package.json |   4 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 7 insertions(+), 200 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
"commits@cordova.apache.org" <commits@cordova.apache.org>.

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



[cordova-plugin-media] 01/01: Merge branch 'master' into 5.0.x

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch 5.0.x
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-media.git

commit 5b7c7d13c91ba22ffd0c7b025b37d0c47d5d28a7
Merge: f4b82af e974e63
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:49 2017 -0500

Merge branch 'master' into 5.0.x

 RELEASENOTES.md  | 251 +--
 package.json |   4 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 7 insertions(+), 252 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
"commits@cordova.apache.org" <commits@cordova.apache.org>.

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



[cordova-plugin-device] branch 2.0.x updated (753f956 -> ad0821d)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch 2.0.x
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-device.git.


from 753f956  CB-13681 Updated version and RELEASENOTES.md for release 
2.0.0 (via coho)
 add b0c2fa3  Set VERSION to 2.0.1-dev (via coho)
 add 12e5c78  CB-13702: Fix to allow 2.0.0 version install
 add 275da87  Merge pull request #74 from jcesarmobile/CB-13702
 add ad0821d  CB-13714 Updated version and RELEASENOTES.md for release 
2.0.1 (via coho)

No new revisions were added by this update.

Summary of changes:
 RELEASENOTES.md  | 176 +--
 package.json |   4 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 6 insertions(+), 178 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-geolocation] branch 4.0.x updated (0f58680 -> 8167dce)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch 4.0.x
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-geolocation.git.


from 0f58680  CB-13681 Updated version and RELEASENOTES.md for release 
4.0.0 (via coho)
 add a9a266b  Set VERSION to 4.0.1-dev (via coho)
 add 9dd3b32  CB-13705: Fix to allow 4.0.0 version install
 add 2d8a5f0  Merge pull request #101 from jcesarmobile/CB-13705
 add 8167dce  CB-13714 Updated version and RELEASENOTES.md for release 
4.0.1 (via coho)

No new revisions were added by this update.

Summary of changes:
 RELEASENOTES.md  | 199 +--
 package.json |   4 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 6 insertions(+), 201 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-network-information] branch master updated (63a78ba -> 779685e)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-network-information.git.


from 63a78ba  CB-13708: Fix to allow 2.0.0 version install (#60)
 add 417d0f2  CB-13714 Updated version and RELEASENOTES.md for release 
2.0.1 (via coho)
 new 779685e  Set VERSION to 2.0.2-dev (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASENOTES.md  | 174 +--
 package.json |   2 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 5 insertions(+), 175 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-screen-orientation] branch master updated (5b34d06 -> 63fbbf4)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-screen-orientation.git.


from 5b34d06  CB-13710: Fix to allow 3.0.0 version install (#28)
 add 9bd2ef7  CB-13714 Updated version and RELEASENOTES.md for release 
3.0.1 (via coho)
 new 63fbbf4  Set VERSION to 3.0.2-dev (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASENOTES.md  | 57 ++--
 package.json |  2 +-
 plugin.xml   |  2 +-
 tests/plugin.xml |  2 +-
 4 files changed, 5 insertions(+), 58 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-dialogs] 01/01: Set VERSION to 2.0.2-dev (via coho)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-dialogs.git

commit c1b6d3d07bcf8ebb937f8ccd0e18c134859d9892
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:49 2017 -0500

Set VERSION to 2.0.2-dev (via coho)
---
 package.json | 2 +-
 plugin.xml   | 2 +-
 tests/plugin.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package.json b/package.json
index af3160f..17327ea 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-plugin-dialogs",
-  "version": "2.0.1",
+  "version": "2.0.2-dev",
   "description": "Cordova Notification Plugin",
   "types": "./types/index.d.ts",
   "cordova": {
diff --git a/plugin.xml b/plugin.xml
index e8063b9..97189f7 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -20,7 +20,7 @@
 
 http://apache.org/cordova/ns/plugins/1.0;
id="cordova-plugin-dialogs"
-  version="2.0.1">
+  version="2.0.2-dev">
 
 Notification
 Cordova Notification Plugin
diff --git a/tests/plugin.xml b/tests/plugin.xml
index 02b5b5c..63e1ab1 100644
--- a/tests/plugin.xml
+++ b/tests/plugin.xml
@@ -20,7 +20,7 @@
 
 http://apache.org/cordova/ns/plugins/1.0;
 id="cordova-plugin-dialogs-tests"
-version="2.0.1">
+version="2.0.2-dev">
 Cordova Notification Plugin Tests
 Apache 2.0
 

-- 
To stop receiving notification emails like this one, please contact
"commits@cordova.apache.org" <commits@cordova.apache.org>.

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



[cordova-plugin-statusbar] branch master updated (8da38f5 -> bca70c2)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-statusbar.git.


from 8da38f5  CB-13712 (iOS): fix overlaysWebView reset on rotation (#92)
 add 4988b6f  CB-13714 Updated version and RELEASENOTES.md for release 
2.4.1 (via coho)
 new bca70c2  Set VERSION to 2.4.2-dev (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASENOTES.md  | 167 +--
 package.json |   2 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 5 insertions(+), 168 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-geolocation] branch master updated (2d8a5f0 -> 87f5394)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-geolocation.git.


from 2d8a5f0  Merge pull request #101 from jcesarmobile/CB-13705
 add 8167dce  CB-13714 Updated version and RELEASENOTES.md for release 
4.0.1 (via coho)
 new 87f5394  Set VERSION to 4.0.2-dev (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASENOTES.md  | 199 +--
 package.json |   2 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 5 insertions(+), 200 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-battery-status] 01/01: Set VERSION to 2.0.2-dev (via coho)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-battery-status.git

commit b61f8f8b3bdf0d9a1c6a601992268f7889c04ac4
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:49 2017 -0500

Set VERSION to 2.0.2-dev (via coho)
---
 package.json | 2 +-
 plugin.xml   | 2 +-
 tests/plugin.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package.json b/package.json
index 6617d69..36f870b 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-plugin-battery-status",
-  "version": "2.0.1",
+  "version": "2.0.2-dev",
   "description": "Cordova Battery Plugin",
   "types": "./types/index.d.ts",
   "cordova": {
diff --git a/plugin.xml b/plugin.xml
index 127e83a..d50d5d7 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -20,7 +20,7 @@
 
 http://apache.org/cordova/ns/plugins/1.0;
   id="cordova-plugin-battery-status"
-  version="2.0.1">
+  version="2.0.2-dev">
 Battery
 Cordova Battery Plugin
 Apache 2.0
diff --git a/tests/plugin.xml b/tests/plugin.xml
index 10969cc..8847d20 100644
--- a/tests/plugin.xml
+++ b/tests/plugin.xml
@@ -22,7 +22,7 @@
 xmlns:rim="http://www.blackberry.com/ns/widgets;
 xmlns:android="http://schemas.android.com/apk/res/android;
 id="cordova-plugin-battery-status-tests"
-version="2.0.1">
+version="2.0.2-dev">
 Cordova Battery Plugin Tests
 Apache 2.0
 

-- 
To stop receiving notification emails like this one, please contact
"commits@cordova.apache.org" <commits@cordova.apache.org>.

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



[cordova-plugin-camera] 01/01: Set VERSION to 4.0.2-dev (via coho)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-camera.git

commit b00cf97a044c2d9ba34bf2f999e33c7837898647
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:49 2017 -0500

Set VERSION to 4.0.2-dev (via coho)
---
 package.json | 2 +-
 plugin.xml   | 2 +-
 tests/plugin.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package.json b/package.json
index f9ea6dd..4e9121f 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-plugin-camera",
-  "version": "4.0.1",
+  "version": "4.0.2-dev",
   "description": "Cordova Camera Plugin",
   "types": "./types/index.d.ts",
   "cordova": {
diff --git a/plugin.xml b/plugin.xml
index 99db561..5497e4c 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -22,7 +22,7 @@
 xmlns:android="http://schemas.android.com/apk/res/android;
 xmlns:rim="http://www.blackberry.com/ns/widgets;
 id="cordova-plugin-camera"
-version="4.0.1">
+version="4.0.2-dev">
 Camera
 Cordova Camera Plugin
 Apache 2.0
diff --git a/tests/plugin.xml b/tests/plugin.xml
index c6fc7f0..a64262a 100644
--- a/tests/plugin.xml
+++ b/tests/plugin.xml
@@ -22,7 +22,7 @@
 xmlns:android="http://schemas.android.com/apk/res/android;
 xmlns:rim="http://www.blackberry.com/ns/widgets;
 id="cordova-plugin-camera-tests"
-version="4.0.1">
+version="4.0.2-dev">
 Cordova Camera Plugin Tests
 Apache 2.0
 

-- 
To stop receiving notification emails like this one, please contact
"commits@cordova.apache.org" <commits@cordova.apache.org>.

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



[cordova-plugin-media] branch master updated (470f5ff -> 7c9c0c1)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-media.git.


from 470f5ff  CB-13706: Fix to allow 5.0.0 version install (#160)
 add e974e63  CB-13714 Updated version and RELEASENOTES.md for release 
5.0.1 (via coho)
 new 7c9c0c1  Set VERSION to 5.0.2-dev (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASENOTES.md  | 251 +--
 package.json |   2 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 6 insertions(+), 251 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-splashscreen] branch master updated (57b553a -> 5197c66)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-splashscreen.git.


from 57b553a  CB-13709: Fix to allow 5.0.0 version install (#144)
 add fb606fe  CB-13714 Updated version and RELEASENOTES.md for release 
5.0.1 (via coho)
 new 5197c66  Set VERSION to 5.0.2-dev (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASENOTES.md  | 232 +--
 package.json |   2 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 5 insertions(+), 233 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-media-capture] branch master updated (e0c06eb -> d7e7648)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-media-capture.git.


from e0c06eb  CB-13707: Fix to allow 3.0.0 version install (#88)
 add e94dd74  CB-13714 Updated version and RELEASENOTES.md for release 
3.0.1 (via coho)
 new d7e7648  Set VERSION to 3.0.2-dev (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASENOTES.md  | 199 +--
 package.json |   2 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 6 insertions(+), 199 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-vibration] branch master updated (07611ff -> 9227155)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-vibration.git.


from 07611ff  CB-13711: Fix to allow 3.0.0 version install (#63)
 add dd4b6f2  CB-13714 Updated version and RELEASENOTES.md for release 
3.0.1 (via coho)
 new 9227155  Set VERSION to 3.0.2-dev (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASENOTES.md  | 187 +--
 package.json |   2 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 5 insertions(+), 188 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-file] branch master updated (bb4319a -> ffc7740)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-file.git.


from bb4319a  Merge pull request #226 from jcesarmobile/CB-13704
 add 2057083  CB-13714 Updated version and RELEASENOTES.md for release 
6.0.1 (via coho)
 new ffc7740  Set VERSION to 6.0.2-dev (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASENOTES.md  | 472 +--
 package.json |   2 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 5 insertions(+), 473 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-inappbrowser] branch master updated (3a2c4ef -> b9e0a80)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-inappbrowser.git.


from 3a2c4ef  Merge pull request #255 from jcesarmobile/CB-13699
 add 7c1ea3b  CB-13714 Updated version and RELEASENOTES.md for release 
2.0.1 (via coho)
 new b9e0a80  Set VERSION to 2.0.2-dev (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASENOTES.md  | 656 +--
 package.json |   2 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 5 insertions(+), 657 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-device] 01/01: Set VERSION to 2.0.2-dev (via coho)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-device.git

commit 38bf0667b90f3082e8c4a7fd84fa743eb4bb64d2
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:49 2017 -0500

Set VERSION to 2.0.2-dev (via coho)
---
 package.json | 2 +-
 plugin.xml   | 2 +-
 tests/plugin.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package.json b/package.json
index b8b806f..ed27e22 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-plugin-device",
-  "version": "2.0.1",
+  "version": "2.0.2-dev",
   "description": "Cordova Device Plugin",
   "types": "./types/index.d.ts",
   "cordova": {
diff --git a/plugin.xml b/plugin.xml
index 8ee86d8..a3f15e9 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -22,7 +22,7 @@
 xmlns:rim="http://www.blackberry.com/ns/widgets;
 xmlns:android="http://schemas.android.com/apk/res/android;
 id="cordova-plugin-device"
-version="2.0.1">
+version="2.0.2-dev">
 Device
 Cordova Device Plugin
 Apache 2.0
diff --git a/tests/plugin.xml b/tests/plugin.xml
index 64718d1..61e8040 100644
--- a/tests/plugin.xml
+++ b/tests/plugin.xml
@@ -22,7 +22,7 @@
 xmlns:rim="http://www.blackberry.com/ns/widgets;
 xmlns:android="http://schemas.android.com/apk/res/android;
 id="cordova-plugin-device-tests"
-version="2.0.1">
+version="2.0.2-dev">
 Cordova Device Plugin Tests
 Apache 2.0
 

-- 
To stop receiving notification emails like this one, please contact
"commits@cordova.apache.org" <commits@cordova.apache.org>.

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



[cordova-plugin-dialogs] branch master updated (46cd65d -> c1b6d3d)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-dialogs.git.


from 46cd65d  Merge pull request #100 from jcesarmobile/CB-13703
 add c4e079d  CB-13714 Updated version and RELEASENOTES.md for release 
2.0.1 (via coho)
 new c1b6d3d  Set VERSION to 2.0.2-dev (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASENOTES.md  | 199 +--
 package.json |   2 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 5 insertions(+), 200 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-camera] branch master updated (6bf45f0 -> b00cf97)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-camera.git.


from 6bf45f0  Merge pull request #303 from jcesarmobile/CB-13701
 add fb02f48  CB-13714 Updated version and RELEASENOTES.md for release 
4.0.1 (via coho)
 new b00cf97  Set VERSION to 4.0.2-dev (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASENOTES.md  | 391 +--
 package.json |   2 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 5 insertions(+), 392 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-media] 01/01: Set VERSION to 5.0.2-dev (via coho)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-media.git

commit 7c9c0c15c26d7526829cd40e4c7a5d2a2201d913
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:50 2017 -0500

Set VERSION to 5.0.2-dev (via coho)
---
 package.json | 2 +-
 plugin.xml   | 2 +-
 tests/plugin.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package.json b/package.json
index 65222a2..d820b56 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-plugin-media",
-  "version": "5.0.1",
+  "version": "5.0.2-dev",
   "description": "Cordova Media Plugin",
   "types": "./types/index.d.ts",
   "cordova": {
diff --git a/plugin.xml b/plugin.xml
index a4f6502..e05aa07 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -21,7 +21,7 @@
 http://apache.org/cordova/ns/plugins/1.0;
 xmlns:android="http://schemas.android.com/apk/res/android;
 id="cordova-plugin-media"
-version="5.0.1">
+version="5.0.2-dev">
 
 Media
 Cordova Media Plugin
diff --git a/tests/plugin.xml b/tests/plugin.xml
index 43aa3ec..7ecb2b1 100644
--- a/tests/plugin.xml
+++ b/tests/plugin.xml
@@ -22,7 +22,7 @@
 xmlns:rim="http://www.blackberry.com/ns/widgets;
 xmlns:android="http://schemas.android.com/apk/res/android;
 id="cordova-plugin-media-tests"
-version="5.0.1">
+version="5.0.2-dev">
 Cordova Media Plugin Tests
 Apache 2.0
 

-- 
To stop receiving notification emails like this one, please contact
"commits@cordova.apache.org" <commits@cordova.apache.org>.

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



[cordova-plugin-battery-status] branch master updated (0746160 -> b61f8f8)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-battery-status.git.


from 0746160  CB-13700: Fix to allow 2.0.0 version install (#62)
 add 7fa0fe4  CB-13714 Updated version and RELEASENOTES.md for release 
2.0.1 (via coho)
 new b61f8f8  Set VERSION to 2.0.2-dev (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASENOTES.md  | 143 +--
 package.json |   2 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 5 insertions(+), 144 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-device] branch master updated (275da87 -> 38bf066)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-device.git.


from 275da87  Merge pull request #74 from jcesarmobile/CB-13702
 add ad0821d  CB-13714 Updated version and RELEASENOTES.md for release 
2.0.1 (via coho)
 new 38bf066  Set VERSION to 2.0.2-dev (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASENOTES.md  | 176 +--
 package.json |   2 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 5 insertions(+), 177 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-media-capture] 01/01: Set VERSION to 3.0.2-dev (via coho)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-media-capture.git

commit d7e76486f31cddf7ea48d1ac5fbfedf3ae73407e
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:50 2017 -0500

Set VERSION to 3.0.2-dev (via coho)
---
 package.json | 2 +-
 plugin.xml   | 2 +-
 tests/plugin.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package.json b/package.json
index b4d60b6..5e0d1cc 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-plugin-media-capture",
-  "version": "3.0.1",
+  "version": "3.0.2-dev",
   "description": "Cordova Media Capture Plugin",
   "types": "./types/index.d.ts",
   "cordova": {
diff --git a/plugin.xml b/plugin.xml
index 35fd2b6..d17be25 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -22,7 +22,7 @@
 xmlns:android="http://schemas.android.com/apk/res/android;
 xmlns:rim="http://www.blackberry.com/ns/widgets;
id="cordova-plugin-media-capture"
-  version="3.0.1">
+  version="3.0.2-dev">
 Capture
 
 Cordova Media Capture Plugin
diff --git a/tests/plugin.xml b/tests/plugin.xml
index 15f561e..02eaac2 100644
--- a/tests/plugin.xml
+++ b/tests/plugin.xml
@@ -22,7 +22,7 @@
 xmlns:android="http://schemas.android.com/apk/res/android;
 xmlns:rim="http://www.blackberry.com/ns/widgets;
 id="cordova-plugin-media-capture-tests"
-version="3.0.1">
+version="3.0.2-dev">
 Cordova Media Capture Plugin Tests
 Apache 2.0
 

-- 
To stop receiving notification emails like this one, please contact
"commits@cordova.apache.org" <commits@cordova.apache.org>.

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



[cordova-plugin-splashscreen] 01/01: Set VERSION to 5.0.2-dev (via coho)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-splashscreen.git

commit 5197c664c33c71139e455996f81c2c3b63719b30
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:50 2017 -0500

Set VERSION to 5.0.2-dev (via coho)
---
 package.json | 2 +-
 plugin.xml   | 2 +-
 tests/plugin.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package.json b/package.json
index 9f5c30c..914cd1f 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-plugin-splashscreen",
-  "version": "5.0.1",
+  "version": "5.0.2-dev",
   "description": "Cordova Splashscreen Plugin",
   "types": "./types/index.d.ts",
   "cordova": {
diff --git a/plugin.xml b/plugin.xml
index 7b01c33..f2ef75c 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -20,7 +20,7 @@
 
 http://apache.org/cordova/ns/plugins/1.0;
id="cordova-plugin-splashscreen"
-  version="5.0.1">
+  version="5.0.2-dev">
 Splashscreen
 Cordova Splashscreen Plugin
 Apache 2.0
diff --git a/tests/plugin.xml b/tests/plugin.xml
index 969f51d..3a35c8b 100644
--- a/tests/plugin.xml
+++ b/tests/plugin.xml
@@ -20,7 +20,7 @@
 
 http://apache.org/cordova/ns/plugins/1.0;
 id="cordova-plugin-splashscreen-tests"
-version="5.0.1">
+version="5.0.2-dev">
 Cordova Splashscreen Plugin Tests
 Apache 2.0
 

-- 
To stop receiving notification emails like this one, please contact
"commits@cordova.apache.org" <commits@cordova.apache.org>.

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



[cordova-plugin-screen-orientation] 01/01: Set VERSION to 3.0.2-dev (via coho)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-screen-orientation.git

commit 63fbbf45fdb55f2da68e2b74e1ef76661ccf5060
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:50 2017 -0500

Set VERSION to 3.0.2-dev (via coho)
---
 package.json | 2 +-
 plugin.xml   | 2 +-
 tests/plugin.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package.json b/package.json
index 171f58f..62c5ffc 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-plugin-screen-orientation",
-  "version": "3.0.1",
+  "version": "3.0.2-dev",
   "description": "Adds Screen Orientation API lock and unlock functions to the 
global screen object in android, iOS and windows-uwp.",
   "repository": {
 "type": "git",
diff --git a/plugin.xml b/plugin.xml
index 5169065..0bf88b9 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -18,7 +18,7 @@
 
 http://apache.org/cordova/ns/plugins/1.0;
 id="cordova-plugin-screen-orientation"
-version="3.0.1">
+version="3.0.2-dev">
 Screen Orientation
 Adds Screen Orientation API lock and unlock functions to the 
global screen object in android, iOS and windows-uwp.
 Apache 2.0
diff --git a/tests/plugin.xml b/tests/plugin.xml
index 2615c5e..36b1752 100644
--- a/tests/plugin.xml
+++ b/tests/plugin.xml
@@ -22,7 +22,7 @@
 xmlns:rim="http://www.blackberry.com/ns/widgets;
 xmlns:android="http://schemas.android.com/apk/res/android;
 id="cordova-plugin-screen-orientation-tests"
-version="3.0.1">
+version="3.0.2-dev">
 Cordova Screen Orientation Plugin Tests
 Apache 2.0
 

-- 
To stop receiving notification emails like this one, please contact
"commits@cordova.apache.org" <commits@cordova.apache.org>.

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



[cordova-plugin-statusbar] 01/01: Set VERSION to 2.4.2-dev (via coho)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-statusbar.git

commit bca70c21e95cc98da003c37918184fef9cf6e04d
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:50 2017 -0500

Set VERSION to 2.4.2-dev (via coho)
---
 package.json | 2 +-
 plugin.xml   | 2 +-
 tests/plugin.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package.json b/package.json
index bb6d091..30ddbf1 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-plugin-statusbar",
-  "version": "2.4.1",
+  "version": "2.4.2-dev",
   "description": "Cordova StatusBar Plugin",
   "types": "./types/index.d.ts",
   "cordova": {
diff --git a/plugin.xml b/plugin.xml
index b052f4b..4098155 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -22,7 +22,7 @@
 xmlns:rim="http://www.blackberry.com/ns/widgets;
 xmlns:android="http://schemas.android.com/apk/res/android;
 id="cordova-plugin-statusbar"
-version="2.4.1">
+version="2.4.2-dev">
 StatusBar
 Cordova StatusBar Plugin
 Apache 2.0
diff --git a/tests/plugin.xml b/tests/plugin.xml
index 01235c6..609930d 100644
--- a/tests/plugin.xml
+++ b/tests/plugin.xml
@@ -22,7 +22,7 @@
 xmlns:rim="http://www.blackberry.com/ns/widgets;
 xmlns:android="http://schemas.android.com/apk/res/android;
 id="cordova-plugin-statusbar-tests"
-version="2.4.1">
+version="2.4.2-dev">
 Cordova StatusBar Plugin Tests
 Apache 2.0
 

-- 
To stop receiving notification emails like this one, please contact
"commits@cordova.apache.org" <commits@cordova.apache.org>.

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



[cordova-plugin-network-information] 01/01: Set VERSION to 2.0.2-dev (via coho)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-network-information.git

commit 779685eeb6c2d43c63d143fe23897684882e7136
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:50 2017 -0500

Set VERSION to 2.0.2-dev (via coho)
---
 package.json | 2 +-
 plugin.xml   | 2 +-
 tests/plugin.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package.json b/package.json
index e7f1e9f..3222e8a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-plugin-network-information",
-  "version": "2.0.1",
+  "version": "2.0.2-dev",
   "description": "Cordova Network Information Plugin",
   "types": "./types/index.d.ts",
   "cordova": {
diff --git a/plugin.xml b/plugin.xml
index 4c8a5fe..06b67f8 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -21,7 +21,7 @@
 http://apache.org/cordova/ns/plugins/1.0;
 xmlns:android="http://schemas.android.com/apk/res/android;
id="cordova-plugin-network-information"
-  version="2.0.1">
+  version="2.0.2-dev">
 
 Network Information
 Cordova Network Information Plugin
diff --git a/tests/plugin.xml b/tests/plugin.xml
index 016cd3c..bc8571f 100644
--- a/tests/plugin.xml
+++ b/tests/plugin.xml
@@ -21,7 +21,7 @@
 http://apache.org/cordova/ns/plugins/1.0;
 xmlns:android="http://schemas.android.com/apk/res/android;
 id="cordova-plugin-network-information-tests"
-version="2.0.1">
+version="2.0.2-dev">
 Cordova Network Information Plugin Tests
 Apache 2.0
 

-- 
To stop receiving notification emails like this one, please contact
"commits@cordova.apache.org" <commits@cordova.apache.org>.

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



[cordova-plugin-vibration] 01/01: Set VERSION to 3.0.2-dev (via coho)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-vibration.git

commit 9227155ed9ed5c7bb6477a20db6f3e957867ba50
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:50 2017 -0500

Set VERSION to 3.0.2-dev (via coho)
---
 package.json | 2 +-
 plugin.xml   | 2 +-
 tests/plugin.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package.json b/package.json
index 3366d47..23cdf87 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-plugin-vibration",
-  "version": "3.0.1",
+  "version": "3.0.2-dev",
   "description": "Cordova Vibration Plugin",
   "types": "./types/index.d.ts",
   "cordova": {
diff --git a/plugin.xml b/plugin.xml
index 64f6789..3f5c705 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -21,7 +21,7 @@
 http://apache.org/cordova/ns/plugins/1.0;
 xmlns:android="http://schemas.android.com/apk/res/android;
 id="cordova-plugin-vibration"
-version="3.0.1">
+version="3.0.2-dev">
 
 Vibration
 Cordova Vibration Plugin
diff --git a/tests/plugin.xml b/tests/plugin.xml
index 7424282..40d7808 100644
--- a/tests/plugin.xml
+++ b/tests/plugin.xml
@@ -22,7 +22,7 @@
 xmlns:rim="http://www.blackberry.com/ns/widgets;
 xmlns:android="http://schemas.android.com/apk/res/android;
 id="cordova-plugin-vibration-tests"
-version="3.0.1">
+version="3.0.2-dev">
 Cordova Vibration Plugin Tests
 Apache 2.0
 

-- 
To stop receiving notification emails like this one, please contact
"commits@cordova.apache.org" <commits@cordova.apache.org>.

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



[cordova-plugin-inappbrowser] 01/01: Set VERSION to 2.0.2-dev (via coho)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-inappbrowser.git

commit b9e0a808376d4be675cf7feb0bfa428e199b8729
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:50 2017 -0500

Set VERSION to 2.0.2-dev (via coho)
---
 package.json | 2 +-
 plugin.xml   | 2 +-
 tests/plugin.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package.json b/package.json
index 3be2ac9..b43fb22 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-plugin-inappbrowser",
-  "version": "2.0.1",
+  "version": "2.0.2-dev",
   "description": "Cordova InAppBrowser Plugin",
   "types": "./types/index.d.ts",
   "cordova": {
diff --git a/plugin.xml b/plugin.xml
index 644d215..e370904 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -20,7 +20,7 @@
 
 http://apache.org/cordova/ns/plugins/1.0;
id="cordova-plugin-inappbrowser"
-  version="2.0.1">
+  version="2.0.2-dev">
 
 InAppBrowser
 Cordova InAppBrowser Plugin
diff --git a/tests/plugin.xml b/tests/plugin.xml
index 1e7676f..367e3d3 100644
--- a/tests/plugin.xml
+++ b/tests/plugin.xml
@@ -20,7 +20,7 @@
 
 http://apache.org/cordova/ns/plugins/1.0;
 id="cordova-plugin-inappbrowser-tests"
-version="2.0.1">
+version="2.0.2-dev">
 Cordova InAppBrowser Plugin Tests
 Apache 2.0
 

-- 
To stop receiving notification emails like this one, please contact
"commits@cordova.apache.org" <commits@cordova.apache.org>.

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



[cordova-plugin-geolocation] 01/01: Set VERSION to 4.0.2-dev (via coho)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-geolocation.git

commit 87f53941807acbc30c9de9d2466ccc112180c9fa
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:49 2017 -0500

Set VERSION to 4.0.2-dev (via coho)
---
 package.json | 2 +-
 plugin.xml   | 2 +-
 tests/plugin.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package.json b/package.json
index 0aae013..d86002f 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-plugin-geolocation",
-  "version": "4.0.1",
+  "version": "4.0.2-dev",
   "description": "Cordova Geolocation Plugin",
   "cordova": {
 "id": "cordova-plugin-geolocation",
diff --git a/plugin.xml b/plugin.xml
index d4fe505..de47684 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -22,7 +22,7 @@
 xmlns:rim="http://www.blackberry.com/ns/widgets;
 xmlns:android="http://schemas.android.com/apk/res/android;
id="cordova-plugin-geolocation"
-  version="4.0.1">
+  version="4.0.2-dev">
 
 Geolocation
 Cordova Geolocation Plugin
diff --git a/tests/plugin.xml b/tests/plugin.xml
index 5f96978..50e7e77 100644
--- a/tests/plugin.xml
+++ b/tests/plugin.xml
@@ -22,7 +22,7 @@
 xmlns:rim="http://www.blackberry.com/ns/widgets;
 xmlns:android="http://schemas.android.com/apk/res/android;
 id="cordova-plugin-geolocation-tests"
-version="4.0.1">
+version="4.0.2-dev">
 Cordova Geolocation Plugin Tests
 Apache 2.0
 

-- 
To stop receiving notification emails like this one, please contact
"commits@cordova.apache.org" <commits@cordova.apache.org>.

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



[cordova-plugin-file] 01/01: Set VERSION to 6.0.2-dev (via coho)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-file.git

commit ffc77406070705aa7c02651867aad485c91259a6
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:49 2017 -0500

Set VERSION to 6.0.2-dev (via coho)
---
 package.json | 2 +-
 plugin.xml   | 2 +-
 tests/plugin.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package.json b/package.json
index 8676ea8..9dff8a4 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-plugin-file",
-  "version": "6.0.1",
+  "version": "6.0.2-dev",
   "description": "Cordova File Plugin",
   "types": "./types/index.d.ts",
   "cordova": {
diff --git a/plugin.xml b/plugin.xml
index ecd15e9..90ff927 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -21,7 +21,7 @@
 http://apache.org/cordova/ns/plugins/1.0;
 xmlns:android="http://schemas.android.com/apk/res/android;
id="cordova-plugin-file"
-  version="6.0.1">
+  version="6.0.2-dev">
 File
 Cordova File Plugin
 Apache 2.0
diff --git a/tests/plugin.xml b/tests/plugin.xml
index 9074699..fcb3e5b 100644
--- a/tests/plugin.xml
+++ b/tests/plugin.xml
@@ -22,7 +22,7 @@
 xmlns:rim="http://www.blackberry.com/ns/widgets;
 xmlns:android="http://schemas.android.com/apk/res/android;
 id="cordova-plugin-file-tests"
-version="6.0.1">
+version="6.0.2-dev">
 
 Cordova File Plugin Tests
 Apache 2.0

-- 
To stop receiving notification emails like this one, please contact
"commits@cordova.apache.org" <commits@cordova.apache.org>.

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



[cordova-plugin-device] tag 2.0.1 created (now ad0821d)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to tag 2.0.1
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-device.git.


  at ad0821d  (commit)
This tag includes the following new commits:

 new ad0821d  CB-13714 Updated version and RELEASENOTES.md for release 
2.0.1 (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-vibration] tag 3.0.1 created (now dd4b6f2)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to tag 3.0.1
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-vibration.git.


  at dd4b6f2  (commit)
This tag includes the following new commits:

 new dd4b6f2  CB-13714 Updated version and RELEASENOTES.md for release 
3.0.1 (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-battery-status] tag 2.0.1 created (now 7fa0fe4)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to tag 2.0.1
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-battery-status.git.


  at 7fa0fe4  (commit)
This tag includes the following new commits:

 new 7fa0fe4  CB-13714 Updated version and RELEASENOTES.md for release 
2.0.1 (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-screen-orientation] tag 3.0.1 created (now 9bd2ef7)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to tag 3.0.1
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-screen-orientation.git.


  at 9bd2ef7  (commit)
This tag includes the following new commits:

 new 9bd2ef7  CB-13714 Updated version and RELEASENOTES.md for release 
3.0.1 (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-media] tag 5.0.1 created (now e974e63)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to tag 5.0.1
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-media.git.


  at e974e63  (commit)
This tag includes the following new commits:

 new e974e63  CB-13714 Updated version and RELEASENOTES.md for release 
5.0.1 (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-network-information] tag 2.0.1 created (now 417d0f2)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to tag 2.0.1
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-network-information.git.


  at 417d0f2  (commit)
This tag includes the following new commits:

 new 417d0f2  CB-13714 Updated version and RELEASENOTES.md for release 
2.0.1 (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-statusbar] tag 2.4.1 created (now 4988b6f)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to tag 2.4.1
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-statusbar.git.


  at 4988b6f  (commit)
This tag includes the following new commits:

 new 4988b6f  CB-13714 Updated version and RELEASENOTES.md for release 
2.4.1 (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-media-capture] tag 3.0.1 created (now e94dd74)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a change to tag 3.0.1
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-media-capture.git.


  at e94dd74  (commit)
This tag includes the following new commits:

 new e94dd74  CB-13714 Updated version and RELEASENOTES.md for release 
3.0.1 (via coho)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


-- 
To stop receiving notification emails like this one, please contact
['"commits@cordova.apache.org" <commits@cordova.apache.org>'].

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



[cordova-plugin-statusbar] 01/01: CB-13714 Updated version and RELEASENOTES.md for release 2.4.1 (via coho)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to tag 2.4.1
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-statusbar.git

commit 4988b6fec3d9086b553f9b41b7cb8a9359c193e3
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:36 2017 -0500

CB-13714 Updated version and RELEASENOTES.md for release 2.4.1 (via coho)
---
 RELEASENOTES.md  | 167 +--
 package.json |   2 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 5 insertions(+), 168 deletions(-)

diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index fe7cfcc..b0bbf6a 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -1,166 +1,3 @@
-
-# Release Notes
+### 2.4.1 (Dec 27, 2017)
+* [CB-13712](https://issues.apache.org/jira/browse/CB-13712) (iOS): fix 
overlaysWebView reset on rotation (#92)
 
-### 2.4.0 (Dec 15, 2017)
-* [CB-13623](https://issues.apache.org/jira/browse/CB-13623) (iOS): Remove 
**iOS** 6-7 code
-
-### 2.3.0 (Nov 06, 2017)
-* [CB-13476](https://issues.apache.org/jira/browse/CB-13476) (iOS): handle 
double size statusbar on SDK 10 for **iOS 11**
-* [CB-13394](https://issues.apache.org/jira/browse/CB-13394) (iOS): fix 
`iPhone X` StatusBar rendering in landscape
-* [CB-11858](https://issues.apache.org/jira/browse/CB-11858) (android) Add 
`StatusBarStyle` feature support for **Android M+**
-* [CB-13311](https://issues.apache.org/jira/browse/CB-13311) (iOS) Statusbar 
does not overlay correctly on `iPhone X`
-* [CB-13028](https://issues.apache.org/jira/browse/CB-13028) (CI) **Browser** 
builds on Travis and AppVeyor
-* [CB-12812](https://issues.apache.org/jira/browse/CB-12812) (browser) Fix 
statusbar plugin with **Browser** platform
-* [CB-12847](https://issues.apache.org/jira/browse/CB-12847) added `bugs` 
entry to `package.json`.
-
-### 2.2.3 (Apr 27, 2017)
-* [CB-12622](https://issues.apache.org/jira/browse/CB-12622) Added **Android 
6.0** build badge to `README`
-* [CB-10879](https://issues.apache.org/jira/browse/CB-10879) Enable 
overlaysWebView on **Android** API 21+
-* [CB-12685](https://issues.apache.org/jira/browse/CB-12685) added 
`package.json` to tests folder
-
-### 2.2.2 (Feb 28, 2017)
-* [CB-12188](https://issues.apache.org/jira/browse/CB-12188) Status Bar is not 
changing in some specific **Android** phone (Red MI 3s Prime)
-* [CB-12369](https://issues.apache.org/jira/browse/CB-12369) Add plugin 
typings from `DefinitelyTyped` 
-* [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build 
badges for **iOS 9.3** and **iOS 10.0** 
-* [CB-12196](https://issues.apache.org/jira/browse/CB-12196) **iOS** fix 
Status Bar Not Hiding
-* [CB-12141](https://issues.apache.org/jira/browse/CB-12141) **iOS** fix white 
app screen after camera overlay shown on iPad
-* [CB-12230](https://issues.apache.org/jira/browse/CB-12230) Removed **Windows 
8.1** build badges
-
-### 2.2.1 (Dec 07, 2016)
-* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version 
and RELEASENOTES.md for release 2.2.1
-* [CB-10288](https://issues.apache.org/jira/browse/CB-10288) statusbar plugin 
interaction with iOS multitasking
-* [CB-10158](https://issues.apache.org/jira/browse/CB-10158) (ios) fix 
StatusBar issue when recovering from fullscreen video
-* [CB-10341](https://issues.apache.org/jira/browse/CB-10341) ios, document 
statusTap event
-* [CB-11191](https://issues.apache.org/jira/browse/CB-11191) Statusbar plugin 
causing issues with webview size
-* [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull 
request template checklist item: "iCLA has been submitted…"
-* [CB-11832](https://issues.apache.org/jira/browse/CB-11832) Incremented 
plugin version.
-
-### 2.2.0 (Sep 08, 2016)
-* [CB-11795](https://issues.apache.org/jira/browse/CB-11795) Add 'protective' 
entry to cordovaDependencies
-* Handle extended status bar on **iOS**
-* Plugin uses `Android Log class` and not `Cordova LOG class`
-* [CB-11287](https://issues.apache.org/jira/browse/CB-11287) (**ios**) - fix 
webview resize after modal on **iPhones**
-* [CB-11485](https://issues.apache.org/jira/browse/CB-11485) fix resize on 
rotation with popover
-* Add badges for paramedic builds on Jenkins
-* [CB-11197](https://issues.apache.org/jira/browse/CB-11197) Keep status bar 
hidden when keyboard pops up
-* Add pull request template.
-* [CB-10866](https://issues.apache.org/jira/browse/CB-10866) Adding engine 
info to `package.json`
-* patched missing `_ready` method, and changed the way the proxy is installed
-* [CB-10996](https://issues.apache.org/jira/browse/CB-10996) Adding front 
matter to `README.md`
-
-### 2.1.3 (Apr 15, 2016)
-* [CB-11018](https://issues.apache.org/jira/browse/CB-11018) Fix statusbar 
with `inappbrowser` causing incorrect orientation on **iOS8**
-* [CB-10884](https://issues.apache.org/jira/browse/CB-10884) `Inappbrowser` 
breaks UI while Screen orientat

[cordova-plugin-network-information] 01/01: CB-13714 Updated version and RELEASENOTES.md for release 2.0.1 (via coho)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to tag 2.0.1
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-network-information.git

commit 417d0f245f09aa1b4336e607e18af7f9daed5afd
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:36 2017 -0500

CB-13714 Updated version and RELEASENOTES.md for release 2.0.1 (via coho)
---
 RELEASENOTES.md  | 174 +--
 package.json |   2 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 5 insertions(+), 175 deletions(-)

diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 4d106d4..e7affe5 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -1,173 +1,3 @@
-
-# Release Notes
+### 2.0.1 (Dec 27, 2017)
+* [CB-13708](https://issues.apache.org/jira/browse/CB-13708) Fix to allow 
2.0.0 version install (#60)
 
-### 2.0.0 (Dec 15, 2017)
-* [CB-13663](https://issues.apache.org/jira/browse/CB-13663) : Removed 
deprecated platforms
-
-### 1.3.4 (Nov 06, 2017)
-* [CB-12751](https://issues.apache.org/jira/browse/CB-12751) (ios) Fix 
connection type when airplane mode is on
-* [CB-13299](https://issues.apache.org/jira/browse/CB-13299) (CI) Fix 
**Android** builds
-* [CB-12895](https://issues.apache.org/jira/browse/CB-12895) added `eslint` 
and removed `jshint`
-* [CB-13028](https://issues.apache.org/jira/browse/CB-13028) (CI) **Browser** 
builds on Travis and AppVeyor
-* [CB-12847](https://issues.apache.org/jira/browse/CB-12847) added `bugs` 
entry to `package.json`.
-
-### 1.3.3 (Apr 27, 2017)
-* [CB-12622](https://issues.apache.org/jira/browse/CB-12622) Add **Android 
6.0** build badge to `README`
-* [CB-12685](https://issues.apache.org/jira/browse/CB-12685) added 
`package.json` to tests folder
-
-### 1.3.2 (Feb 28, 2017)
-* [CB-12369](https://issues.apache.org/jira/browse/CB-12369) Add plugin 
typings from `DefinitelyTyped` 
-* [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build 
badges for **iOS 9.3** and **iOS 10.0** 
-* [CB-11838](https://issues.apache.org/jira/browse/CB-11838) **iOS:** 
Unregister callback function at the right timing.
-* [CB-12230](https://issues.apache.org/jira/browse/CB-12230) Removed **Windows 
8.1** build badges
-
-### 1.3.1 (Dec 07, 2016)
-* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version 
and RELEASENOTES.md for release 1.3.1
-* [CB-11230](https://issues.apache.org/jira/browse/CB-11230) 
[CB-11505](https://issues.apache.org/jira/browse/CB-11505) iOS: Add 
compatibility with IPv6
-* [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull 
request template checklist item: "iCLA has been submitted…"
-* [CB-11832](https://issues.apache.org/jira/browse/CB-11832) Incremented 
plugin version.
-
-### 1.3.0 (Sep 08, 2016)
-* [CB-11795](https://issues.apache.org/jira/browse/CB-11795) Add 'protective' 
entry to cordovaDependencies
-* [CB-11734](https://issues.apache.org/jira/browse/CB-11734) Network Plugin 
uses `Android Log class` and not `Cordova LOG class`
-* [CB-11300](https://issues.apache.org/jira/browse/CB-11300) (**android**) 
Recognize `2G`, `3G` and `4G` network connection subtype names
-* Update `NetworkManager.java`
-* Detection of Ethernet Network Type on **Android**
-* fixed two potential memory leaks when doing Analyze on **iOS 9**
-* [CB-11384](https://issues.apache.org/jira/browse/CB-11384) **android**: Does 
not pass sonarqube scan
-* Add badges for paramedic builds on Jenkins
-* Add pull request template.
-* Readme: Add fenced code blocks with langauage hints
-* [CB-10996](https://issues.apache.org/jira/browse/CB-10996) Adding front 
matter to README.md
-
-### 1.2.1 (Apr 15, 2016)
-* [CB-10763](https://issues.apache.org/jira/browse/CB-10763) Remove emoji in 
`cordova-plugin-network-information`
-* [CB-10636](https://issues.apache.org/jira/browse/CB-10636) Add `JSHint` for 
plugins
-
-### 1.2.0 (Jan 15, 2016)
-* Adding `CoreTelephony` to `plugin.xml`
-* Adding notification for `CT radio` information
-* Adding `CT radio` information
-* [CB-10160](https://issues.apache.org/jira/browse/CB-10160) Fixed the case 
mismatch issue
-
-### 1.1.0 (Nov 18, 2015)
-* [CB-10035](https://issues.apache.org/jira/browse/CB-10035) Updated 
`RELEASENOTES` to be newest to oldest
-* Fixing contribute link.
-* These notifications are objects so their address always evaluates to true.
-* Update `NetworkManager.java`
-* [CB-9542](https://issues.apache.org/jira/browse/CB-9542) `Browser Proxy` not 
defined correctly
-* Solved `toLowerCase` issue with `Locale.US`
-
-### 1.0.1 (Jun 17, 2015)
-* Adding .ratignore file.
-* [CB-9128](https://issues.apache.org/jira/browse/CB-9128) 
cordova-plugin-network-information documentation translation: 
cordova-plugin-network-information
-* fix npm md issue
-
-### 1.0.0 (Apr 15, 2015)
-* [CB-8746](https://issues.apache.org/jira/browse/CB-8746) gave plugin major 
version bump
-*

[cordova-plugin-battery-status] 01/01: CB-13714 Updated version and RELEASENOTES.md for release 2.0.1 (via coho)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to tag 2.0.1
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-battery-status.git

commit 7fa0fe492d0817a6cd9c90027036462960b1d1d5
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:36 2017 -0500

CB-13714 Updated version and RELEASENOTES.md for release 2.0.1 (via coho)
---
 RELEASENOTES.md  | 143 +--
 package.json |   2 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 5 insertions(+), 144 deletions(-)

diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index f5b293d..9f4344a 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -1,142 +1,3 @@
-
+### 2.0.1 (Dec 27, 2017)
+* [CB-13700](https://issues.apache.org/jira/browse/CB-13700) Fix to allow 
2.0.0 version install (#62)
 
-# Release Notes
-
-### 2.0.0 (Dec 15, 2017)
-* [CB-13667](https://issues.apache.org/jira/browse/CB-13667): Remove 
deprecated platforms
-
-### 1.2.5 (Nov 06, 2017)
-* [CB-13299](https://issues.apache.org/jira/browse/CB-13299) (CI) Fix 
**Android** builds
-* [CB-12895](https://issues.apache.org/jira/browse/CB-12895) added `eslint` 
and removed `jshint`
-* [CB-13028](https://issues.apache.org/jira/browse/CB-13028) (CI) Added 
**Browser** platform to Travis
-* [CB-13000](https://issues.apache.org/jira/browse/CB-13000) (CI) Speed up 
**Android** builds
-* [CB-12991](https://issues.apache.org/jira/browse/CB-12991) (CI) Updated CI 
badges
-* [CB-12847](https://issues.apache.org/jira/browse/CB-12847) added `bugs` 
entry to `package.json`.
-
-### 1.2.4 (Apr 27, 2017)
-* [CB-12622](https://issues.apache.org/jira/browse/CB-12622) (Android) Added 
**Android 6.0** build badge
-* [CB-12685](https://issues.apache.org/jira/browse/CB-12685) added 
`package.json` to tests folder
-* [CB-12639](https://issues.apache.org/jira/browse/CB-12639) (all) Tests: 
console.err() -> console.error()
-
-### 1.2.3 (Feb 28, 2017)
-* [CB-12369](https://issues.apache.org/jira/browse/CB-12369) Add plugin 
typings from `DefinitelyTyped`
-* [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build 
badges for **iOS 9.3** and **iOS 10.0**
-
-### 1.2.2 (Dec 12, 2016)
-* [CB-12227](https://issues.apache.org/jira/browse/CB-12227) (windows) Fixed 
Browserify error
-* [CB-12236](https://issues.apache.org/jira/browse/CB-12236) - Fix 
RELEASENOTES.md for cordova-plugin-battery-status
-* [CB-12230](https://issues.apache.org/jira/browse/CB-12230) Removed Windows 
8.1 build badges
-* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Incremented 
plugin version.
-
-### 1.2.1 (Dec 07, 2016)
-
-* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version 
and RELEASENOTES.md for release 1.2.1
-* [CB-8929](https://issues.apache.org/jira/browse/CB-8929) Fix failing tests 
on iOS
-* [CB-8929](https://issues.apache.org/jira/browse/CB-8929) Use PowerManager to 
get battery state on Win 10
-* [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull 
request template checklist item: "iCLA has been submitted…"
-* [CB-11832](https://issues.apache.org/jira/browse/CB-11832) Incremented 
plugin version.
-
-### 1.2.0 (Sep 08, 2016)
-* [CB-11795](https://issues.apache.org/jira/browse/CB-11795) Add 'protective' 
entry to cordovaDependencies
-* Plugin uses Android Log class and not Cordova LOG class
-* Add badges for paramedic builds on Jenkins
-* Add pull request template.
-* [CB-10996](https://issues.apache.org/jira/browse/CB-10996) Adding front 
matter to README.md
-
-### 1.1.2 (Apr 15, 2016)
-* [CB-10720](https://issues.apache.org/jira/browse/CB-10720) Reorganizing and 
rewording docs.
-* [CB-10636](https://issues.apache.org/jira/browse/CB-10636) Add JSHint for 
plugins
-
-### 1.1.1 (Nov 18, 2015)
-* [CB-10035](https://issues.apache.org/jira/browse/CB-10035) Updated 
`RELEASENOTES` to be newest to oldest
-* Fixing contribute link.
-
-### 1.1.0 (Jun 17, 2015)
-* added missing license headers
-* [CB-7953](https://issues.apache.org/jira/browse/CB-7953) Add 
cordova-plugin-battery-status support for browser platform
-* [CB-9128](https://issues.apache.org/jira/browse/CB-9128) 
cordova-plugin-battery-status documentation translation: 
cordova-plugin-battery-status
-* attempt to fix npm issue
-
-### 1.0.0 (Apr 15, 2015)
-* [CB-8746](https://issues.apache.org/jira/browse/CB-8746) gave plugin major 
version bump
-* [CB-8808](https://issues.apache.org/jira/browse/CB-8808) Fixed tests to pass 
on Windows Phone 8.1
-* [CB-8831](https://issues.apache.org/jira/browse/CB-8831) Adds extra check 
for available API on Windows
-* [CB-8653](https://issues.apache.org/jira/browse/CB-8653) properly updated 
translated docs to use new id
-* [CB-8683](https://issues.apache.org/jira/browse/CB-8683) changed plugin-id 
to pacakge-name
-* [CB-8653](https://issues.apache.org/jira/browse/CB-8653) updated translated 
docs t

[cordova-plugin-media] 01/01: CB-13714 Updated version and RELEASENOTES.md for release 5.0.1 (via coho)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to tag 5.0.1
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-media.git

commit e974e63dbc449edca885dc07472cb069ef8ffd3c
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:36 2017 -0500

CB-13714 Updated version and RELEASENOTES.md for release 5.0.1 (via coho)
---
 RELEASENOTES.md  | 251 +--
 package.json |   2 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 6 insertions(+), 251 deletions(-)

diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index a0d554d..a1b4f19 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -1,249 +1,4 @@
-
-# Release Notes
+### 5.0.1 (Dec 27, 2017)
+* [CB-13706](https://issues.apache.org/jira/browse/CB-13706) Fix to allow 
5.0.0 version install (#160)
+* Bump cordova-plugin-file dependency to 6.0.0
 
-### 5.0.0 (Dec 15, 2017)
-* [CB-13678](https://issues.apache.org/jira/browse/CB-13678) Remove deprecated 
platforms
-
-### 4.0.0 (Nov 06, 2017)
-* [CB-12264](https://issues.apache.org/jira/browse/CB-12264) (README): fix 
`media.getCurrentAmplitude` definition
-* [CB-13265](https://issues.apache.org/jira/browse/CB-13265) Remove **iOS** 
usage description from media plugin
-* [CB-13517](https://issues.apache.org/jira/browse/CB-13517)  (all): Add 
'protective' entry to `cordovaDependencies`
-* [CB-13473](https://issues.apache.org/jira/browse/CB-13473) (CI) Removed 
**Browser** builds from AppVeyor
-* [CB-13294](https://issues.apache.org/jira/browse/CB-13294) Remove 
`cordova-plugin-compat`
-* [CB-13299](https://issues.apache.org/jira/browse/CB-13299) (CI) Fix 
**Android** builds
-* [CB-13028](https://issues.apache.org/jira/browse/CB-13028) (CI) **Browser** 
builds on Travis and AppVeyor
-* [CB-12671](https://issues.apache.org/jira/browse/CB-12671) **iOS**: Fix 
auto-test with stopping media that is in starting state
-* [CB-12847](https://issues.apache.org/jira/browse/CB-12847) added `bugs` 
entry to `package.json`.
-
-### 3.0.1 (Apr 27, 2017)
-* [CB-12542](https://issues.apache.org/jira/browse/CB-12542) (ios) Fix wav 
file recording, add m4a extension. make **iOS** status handling compatible with 
**Android**/Windows
-* [CB-12622](https://issues.apache.org/jira/browse/CB-12622) Added **Android 
6.0** build badges to `README`
-* [CB-12685](https://issues.apache.org/jira/browse/CB-12685) added 
`package.json` to tests folder
-
-### 3.0.0 (Feb 28, 2017)
-* **Android:** fix `NullPointerException` in `AudioPlayer.readyPlayer`
-* **Android:** fix `java.lang.NullPointerException` on `resumeAllGainedFocus`
-* [CB-12493](https://issues.apache.org/jira/browse/CB-12493) (Tests) Fixed 
spec.21 flakyness
-* major version bump, added `cordovaDependencies` requirement for 
`cordova-android>=6.1.0`
-* Add engine tag for checking `cordova-android`
-* Make the output file of **Android** an `acc` file.
-* [CB-12422](https://issues.apache.org/jira/browse/CB-12422) **iOS:** Fix 
readme issue on background needed plist modification
-* [CB-12434](https://issues.apache.org/jira/browse/CB-12434) **Android:** fix 
Stoping a Paused Recording throws exception
-* [CB-12411](https://issues.apache.org/jira/browse/CB-12411) Stoping a Paused 
Recording throws illegal state exception
-* [CB-1187](https://issues.apache.org/jira/browse/CB-1187) **iOS:** Fix unused 
recording settings
-* [CB-12353](https://issues.apache.org/jira/browse/CB-12353) Corrected merges 
usage in `plugin.xml`
-* [CB-12369](https://issues.apache.org/jira/browse/CB-12369) Add plugin 
typings from DefinitelyTyped
-* [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build 
badges for **iOS 9.3** and **iOS 10.0** 
-* [CB-12230](https://issues.apache.org/jira/browse/CB-12230) Removed **Windows 
8.1** build badges
-
-### 2.4.1 (Dec 07, 2016)
-* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version 
and RELEASENOTES.md for release 2.4.1
-* [CB-12034](https://issues.apache.org/jira/browse/CB-12034) (ios) Add 
mandatory iOS 10 privacy description
-* [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull 
request template checklist item: "iCLA has been submitted…"
-* [CB-11529](https://issues.apache.org/jira/browse/CB-11529) ios: Make 
available setting volume for player on ios device
-* [CB-11832](https://issues.apache.org/jira/browse/CB-11832) Incremented 
plugin version.
-
-### 2.4.0 (Sep 08, 2016)
-* [CB-11795](https://issues.apache.org/jira/browse/CB-11795) Add 'protective' 
entry to cordovaDependencies
-* [CB-11793](https://issues.apache.org/jira/browse/CB-11793) fixed **android** 
build issue with last commit
-* [CB-11085](https://issues.apache.org/jira/browse/CB-11085) Fix error output 
using `println` to `LOG.e`
-* [CB-11757](https://issues.apache.org/jira/browse/CB-11757) (**ios**) Error 
out if trying to stop playback while in a wrong state

[cordova-plugin-media-capture] 01/01: CB-13714 Updated version and RELEASENOTES.md for release 3.0.1 (via coho)

2017-12-27 Thread macdonst
This is an automated email from the ASF dual-hosted git repository.

macdonst pushed a commit to tag 3.0.1
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-media-capture.git

commit e94dd74aea3a53206d01bcdc3b9d5cce1c346ef8
Author: Simon MacDonald <simon.macdon...@gmail.com>
AuthorDate: Wed Dec 27 19:13:36 2017 -0500

CB-13714 Updated version and RELEASENOTES.md for release 3.0.1 (via coho)
---
 RELEASENOTES.md  | 199 +--
 package.json |   2 +-
 plugin.xml   |   2 +-
 tests/plugin.xml |   2 +-
 4 files changed, 6 insertions(+), 199 deletions(-)

diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 45ce074..e59bdd7 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -1,197 +1,4 @@
-
-# Release Notes
+### 3.0.1 (Dec 27, 2017)
+* [CB-13707](https://issues.apache.org/jira/browse/CB-13707) Fix to allow 
3.0.0 version install (#88)
+* Bump cordova-plugin-file dependency to 6.0.0
 
-### 3.0.0 (Dec 15, 2017)
-* [CB-13669](https://issues.apache.org/jira/browse/CB-13669) : Remove 
deprecated plugins
-
-### 2.0.0 (Nov 06, 2017)
-* [CB-13520](https://issues.apache.org/jira/browse/CB-13520) (all): Add 
'protective' entry to `cordovaDependencies`
-* [CB-13266](https://issues.apache.org/jira/browse/CB-13266) (ios): Remove 
**iOS** usage descriptions
-* [CB-13473](https://issues.apache.org/jira/browse/CB-13473) (CI) Removed 
**Browser** builds from AppVeyor
-* [CB-13294](https://issues.apache.org/jira/browse/CB-13294) Remove 
`cordova-plugin-compat`
-* [CB-13299](https://issues.apache.org/jira/browse/CB-13299) (CI) Fix 
**Android** builds
-* [CB-12895](https://issues.apache.org/jira/browse/CB-12895) added `eslint` 
and removed `jshint`
-* [CB-13028](https://issues.apache.org/jira/browse/CB-13028) (CI) **Browser** 
builds on Travis and AppVeyor
-* [CB-12882](https://issues.apache.org/jira/browse/CB-12882) (ios): adds 
support for permissions checks for `captureVideo` and `captureImage` methods
-* [CB-12847](https://issues.apache.org/jira/browse/CB-12847) added `bugs` 
entry to `package.json`.
-
-### 1.4.3 (Apr 27, 2017)
-* [CB-12622](https://issues.apache.org/jira/browse/CB-12622) Added **Android 
6.0** build badges to `README`
-* [CB-12685](https://issues.apache.org/jira/browse/CB-12685) added 
`package.json` to tests folder
-
-### 1.4.2 (Feb 28, 2017)
-* [CB-12353](https://issues.apache.org/jira/browse/CB-12353) Corrected merges 
usage in `plugin.xml`
-* [CB-12369](https://issues.apache.org/jira/browse/CB-12369) Add plugin 
typings from `DefinitelyTyped` 
-* [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build 
badges for **iOS 9.3** and **iOS 10.0** 
-* [CB-12230](https://issues.apache.org/jira/browse/CB-12230) Removed **Windows 
8.1** build badges
-
-### 1.4.1 (Dec 07, 2016)
-* [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version 
and RELEASENOTES.md for release 1.4.1
-* [CB-10701](https://issues.apache.org/jira/browse/CB-10701) 
[CB-7117](https://issues.apache.org/jira/browse/CB-7117) android: Add manual 
test to check getting metadata
-* [CB-10489](https://issues.apache.org/jira/browse/CB-10489) Fix for 
MediaFile.getFormatData / audio recording support
-* [CB-10488](https://issues.apache.org/jira/browse/CB-10488) Fix for 
MediaFile.getFormatData
-* [CB-11996](https://issues.apache.org/jira/browse/CB-11996) Added a new 
manual test to capture multiple images
-* [CB-11995](https://issues.apache.org/jira/browse/CB-11995) (android) Do not 
pass a file URI to the camera
-* [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull 
request template checklist item: "iCLA has been submitted…"
-* [CB-11832](https://issues.apache.org/jira/browse/CB-11832) Incremented 
plugin version.
-
-### 1.4.0 (Sep 08, 2016)
-* Add mandatory **iOS 10** privacy description for microphone
-* [CB-11795](https://issues.apache.org/jira/browse/CB-11795) Add 'protective' 
entry to cordovaDependencies
-* [CB-11821](https://issues.apache.org/jira/browse/CB-11821) (ios) Add 
mandatory **iOS 10** privacy description
-* Plugin uses `Android Log class` and not `Cordova LOG class`
-* Add badges for paramedic builds on Jenkins
-* [CB-11396](https://issues.apache.org/jira/browse/CB-11396) - Audio Media 
Capture Crashes if app stores file on external storage
-* Add pull request template.
-* [CB-11212](https://issues.apache.org/jira/browse/CB-11212) **iOS**: 
Explicitly set the bundle for images
-* [CB-10554](https://issues.apache.org/jira/browse/CB-10554) Implementing 
plugin `save/restore` API for Android
-* [CB-11165](https://issues.apache.org/jira/browse/CB-11165) removed peer 
dependency
-* [CB-10996](https://issues.apache.org/jira/browse/CB-10996) Adding front 
matter to README.md
-
-### 1.3.0 (Apr 15, 2016)
-* Replace `PermissionHelper.java` with `cordova-plugin-compat`
-* CB-10670, [CB-10994](https://issues.apache.org/jira/browse/CB-10994) 
**Android**, Marshmallow permissions
-* 

  1   2   3   >