Update plugin spec

This commit is contained in:
Sebastián Katzer 2014-09-07 22:53:04 +02:00
parent 33b4c14557
commit b903683486

View File

@ -3,17 +3,28 @@
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0" <plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
id="de.appplant.cordova.plugin.printer" id="de.appplant.cordova.plugin.printer"
version="0.5.0"> version="0.7.0-dev">
<name>Printer</name> <name>AirPrint and Android Printing Framework</name>
<description>
Cordova plugin to print HTML documents using AirPrint for iOS
and Android Printing Framework.
</description>
<repo>
https://github.com/katzer/cordova-plugin-printer.git
</repo>
<keywords>
print, printer, ios, android, google cloud, air print
</keywords>
<description>A bunch of printig plugins for Cordova 3.x.x</description>
<repo>https://github.com/katzer/cordova-plugin-printer.git</repo>
<keywords>print, printer, ios, android, kitkat</keywords>
<license>Apache 2.0</license> <license>Apache 2.0</license>
<author>Sebastián Katzer</author> <author>Sebastián Katzer</author>
<!-- cordova -->
<engines> <engines>
<engine name="cordova" version=">=3.0.0" /> <engine name="cordova" version=">=3.0.0" />
</engines> </engines>
@ -21,15 +32,15 @@
<!-- interface --> <!-- interface -->
<js-module src="www/printer.js" name="Printer"> <js-module src="www/printer.js" name="Printer">
<clobbers target="plugin.printer" /> <clobbers target="plugin.printer" />
<clobbers target="cordova.plugins.printer" />
</js-module> </js-module>
<!-- ios --> <!-- ios -->
<platform name="ios"> <platform name="ios">
<config-file target="config.xml" parent="/*"> <config-file target="config.xml" parent="/*">
<feature name="Printer"> <feature name="Printer">
<param name="ios-package" value="APPPrinter"/> <param name="ios-package" value="APPPrinter"/>
</feature> </feature>
</config-file> </config-file>
<header-file src="src/ios/APPPrinter.h" /> <header-file src="src/ios/APPPrinter.h" />
@ -47,5 +58,4 @@
<source-file src="src/android/Printer.java" target-dir="src/de/appplant/cordova/plugin/printer" /> <source-file src="src/android/Printer.java" target-dir="src/de/appplant/cordova/plugin/printer" />
</platform> </platform>
</plugin> </plugin>