Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename to cordova-webintent for consistency; bump version to 2.0.0 #18

Merged
merged 1 commit into from
May 30, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ canonical upstream, and submit PRs for any changes you'd like merged.**
1. To install the plugin, use the Cordova CLI:

```bash
cordova plugin add https://github.com/cordova-misc/cordova-webintent.git
cordova plugin add github:cordova-misc/cordova-webintent.git
```

1. Confirm that the following is now in your `config.xml` file:
1. Confirm that the following is now in your `package.json` file:

```xml
<plugin name="WebIntent" value="com.borismus.webintent.WebIntent" />
```json
"cordova-webintent": "github:cordova-misc/cordova-webintent
```

## Sample code
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-webintent",
"version": "1.1.0",
"version": "2.0.0",
"description": "WebIntent Android Plugin for Cordova 3.X",
"main": "index.js",
"scripts": {
Expand All @@ -16,7 +16,7 @@
"intent"
],
"author": "borismus",
"license": "ISC",
"license": "MIT",
"bugs": {
"url": "https://github.com/cordova-misc/cordova-webintent/issues"
},
Expand Down
6 changes: 3 additions & 3 deletions plugin.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>

<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
id="com.borismus.webintent"
version="1.1.0">
<name>WebIntent</name>
id="cordova-webintent"
version="2.0.0">
<name>cordova-webintent</name>
<description>Web intents for Cordova</description>
<license>Apache</license>
<keywords>cordova,webintent</keywords>
Expand Down