Skip to content

Commit 3f33551

Browse files
committed
Bump version and change id to publish
1 parent 9f0d86f commit 3f33551

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ You can also open the Xcode project on platforms/iOs folder clicking the .xcodep
3131
Installation:
3232
============
3333

34-
cordova plugin add https://github.com/jcesarmobile/FilePicker-Phonegap-iOS-Plugin.git
34+
`cordova plugin add cordova-plugin-filepicker`
3535

3636

3737
Usage:
@@ -56,7 +56,7 @@ If you don't pass any params, public.data UTI will be used
5656

5757
```
5858
FilePicker.pickFile(successCallback,errorCallback);
59-
var successCallback = function(path) {
59+
function successCallback(path) {
6060
alert("You picked this file: " + path);
6161
}
6262
```

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "FilePicker-Phonegap-iOS-Plugin",
3-
"version": "1.1.3",
2+
"name": "cordova-plugin-filepicker",
3+
"version": "1.1.4",
44
"description": "\n This plugin makes possible to pick files from iCloud or other document providers\n ",
55
"cordova": {
6-
"id": "com.jcesarmobile.filepicker",
6+
"id": "cordova-plugin-filepicker",
77
"platforms": [
88
"ios"
99
]

plugin.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
3-
id="com.jcesarmobile.filepicker"
4-
version="1.1.1">
3+
id="cordova-plugin-filepicker"
4+
version="1.1.4">
55

66
<name>File Picker</name>
77
<author>jcesarmobile</author>

0 commit comments

Comments
 (0)