Moved to new plugin id cordova-plugin-printer

This commit is contained in:
Sebastián Katzer 2016-07-20 19:58:05 +02:00
parent 1d5800c694
commit 831d855cec
2 changed files with 45 additions and 37 deletions

View File

@ -1,40 +1,31 @@
{
"name": "de.appplant.cordova.plugin.printer",
"version": "0.7.1-dev",
"description": "Cordova plugin to print HTML documents using AirPrint and Android Printing Framework.",
"cordova": {
"id": "de.appplant.cordova.plugin.printer",
"platforms": [
"ios",
"android"
]
},
"name": "cordova-plugin-printer",
"version": "0.7.2dev",
"description": "Prints HTML documents",
"repository": {
"type": "git",
"url": "https://github.com/katzer/cordova-plugin-printer.git"
"url": "git+https://github.com/katzer/cordova-plugin-printer.git"
},
"keywords": [
"appplant",
"print",
"printer",
"cordova",
"ecosystem:cordova"
],
"platforms": [
"ios",
"android",
"google cloud",
"air print",
"ecosystem:cordova",
"cordova-ios",
"cordova-android"
"android"
],
"engines": [
{
"name": "cordova",
"version": ">=3.0.0"
"version": ">=6.0.0"
}
],
"author": "Sebastián Katzer",
"license": "Apache 2.0",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/katzer/cordova-plugin-printer/issues"
},
"homepage": "https://github.com/katzer/cordova-plugin-printer"
"homepage": "https://github.com/katzer/cordova-plugin-printer#readme"
}

View File

@ -1,24 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
<!--
* Copyright (c) 2013-2016 by appPlant GmbH. All rights reserved.
*
* @APPPLANT_LICENSE_HEADER_START@
*
* This file contains Original Code and/or Modifications of Original Code
* as defined in and that are subject to the Apache License
* Version 2.0 (the 'License'). You may not use this file except in
* compliance with the License. Please obtain a copy of the License at
* http://opensource.org/licenses/Apache-2.0/ and read it before using this
* file.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
* INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
* Please see the License for the specific language governing rights and
* limitations under the License.
*
* @APPPLANT_LICENSE_HEADER_END@
-->
<plugin id="cordova-plugin-printer"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="de.appplant.cordova.plugin.printer"
version="0.7.1">
version="0.7.2-dev">
<name>Printer</name>
<description>
Cordova plugin to print HTML documents using AirPrint
and Android Printing Framework.
</description>
<description>Prints HTML documents</description>
<repo>
https://github.com/katzer/cordova-plugin-printer.git
</repo>
<repo>https://github.com/katzer/cordova-plugin-printer.git</repo>
<keywords>
print, printer, ios, android, google cloud, air print
</keywords>
<keywords>appplant, printer, cordova</keywords>
<license>Apache 2.0</license>
@ -26,7 +42,7 @@
<!-- cordova -->
<engines>
<engine name="cordova" version=">=3.0.0" />
<engine name="cordova" version=">=6.0.0" />
</engines>
<!-- interface -->
@ -56,6 +72,7 @@
</feature>
</config-file>
<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>
</plugin>