Skip to content
This repository was archived by the owner on Mar 12, 2019. It is now read-only.
Open
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
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
* NOTE - I am sorry, I just can't find the time to fully test the plugin and develop it further. Small updates are constantly integrated. *

# Image Resizer plugin for Phonegap/Cordova 3.0+ #

This plugin resizes images natively using the phonegap / cordova architecture.
Expand All @@ -10,9 +8,9 @@ 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/RaananW/PhoneGap-Image-Resizer
phonegap plugin add cordova-plugin-image-resizer

cordova plugin add https://github.com/RaananW/PhoneGap-Image-Resizer
cordova plugin add cordova-plugin-image-resizer
```

## Using the plugin ##
Expand Down
35 changes: 35 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"name": "cordova-plugin-image-resizer",
"version": "1.0.0",
"description": "Cordova / Phonegap plugin for resizing images",
"cordova": {
"id": "cordova-plugin-image-resizer",
"platforms": [
"ios",
"android"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/wymsee/cordova-imageResizer.git"
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi man,
Sorry for a late answer, but don't you find it a bit... rude to change the repository URL on the original repository?

},
"keywords": [
"cordova",
"device",
"ecosystem:cordova",
"cordova-ios",
"cordova-android"
],
"engines": [
{
"name": "cordova",
"version": ">=3.0.0"
}
],
"author": "Wymsee",
"license": "MIT",
"bugs": {
"url": "https://github.com/wymsee/cordova-imageResizer/issues"
},
"homepage": "https://github.com/wymsee/cordova-imageResizer#readme"
}
6 changes: 3 additions & 3 deletions plugin.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.raananw.imageResizer"
version="0.1.2">
id="cordova-plugin-image-resizer"
version="1.0.0">

<name>ImageResizer</name>

Expand All @@ -14,7 +14,7 @@
<engine name="cordova" version=">=3.0.0" />
</engines>

<dependency id="org.apache.cordova.file" version="1.0.1" />
<dependency id="cordova-plugin-file" version=">=2.0.0" />

<js-module src="www/imageresize.js" name="ImageResizePlugin">
<clobbers target="plugins.imageResizer" />
Expand Down