From b944643412678151254719a6e0a7b368fafb0985 Mon Sep 17 00:00:00 2001 From: Andrew Stephan Date: Mon, 22 Feb 2016 13:00:18 -0500 Subject: [PATCH 1/3] updated versiona dn name --- plugin.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin.xml b/plugin.xml index 4a7924e..743731c 100644 --- a/plugin.xml +++ b/plugin.xml @@ -1,8 +1,8 @@ + id="cordova-plugin-image-picker" + version="1.0.8"> ImagePicker From 14f7f6c4a130538afbc7a2c887e90512dfd3c64f Mon Sep 17 00:00:00 2001 From: Dan McNamara Date: Mon, 22 Feb 2016 13:09:29 -0500 Subject: [PATCH 2/3] Add package.json file so we can actually publish this to NPM --- package.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..448c094 --- /dev/null +++ b/package.json @@ -0,0 +1,33 @@ +{ + "name": "cordova-plugin-image-picker", + "version": "1.1.0", + "description": "This plugin allows selection of multiple images from the camera roll / gallery in a phonegap app", + "cordova": { + "id": "cordova-plugin-image-picker", + "platforms": [ + "ios", + "android" + ] + }, + "repository": { + "type": "git", + "url": "git+https://github.com/wymsee/cordova-imagePicker.git" + }, + "keywords": [ + "ecosystem:cordova", + "cordova-ios", + "cordova-android" + ], + "engines": [ + { + "name": "cordova", + "version": ">=3.0.0" + } + ], + "author": "Wymsee", + "license": "MIT", + "bugs": { + "url": "https://github.com/wymsee/cordova-imagePicker/issues" + }, + "homepage": "https://github.com/wymsee/cordova-imagePicker#readme" +} From 103875b5c859e897e8003700b461b2c5345a4772 Mon Sep 17 00:00:00 2001 From: Dan McNamara Date: Wed, 24 Feb 2016 13:51:58 -0500 Subject: [PATCH 3/3] Update installation instructions in readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 440e3ab..17eec97 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,9 @@ Cordova Plugin For Multiple Image Selection - implemented for iOS and Android 4. The plugin conforms to the Cordova plugin specification, it can be installed using the Cordova / Phonegap command line interface. - phonegap plugin add https://github.com/wymsee/cordova-imagePicker.git + phonegap plugin add cordova-plugin-image-picker - cordova plugin add https://github.com/wymsee/cordova-imagePicker.git + cordova plugin add cordova-plugin-image-picker ## Using the plugin @@ -109,4 +109,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. \ No newline at end of file +THE SOFTWARE.