Release v0.5.3

This commit is contained in:
Sebastián Katzer 2014-07-13 14:23:17 +02:00
parent b829872179
commit 10c1238e64
3 changed files with 12 additions and 8 deletions

View File

@ -1,10 +1,12 @@
##ChangeLog ##ChangeLog
#### Version 0.6.0 (not yet released) #### Version 0.6.0 (not yet released)
- [bugfix]: Printing wasn't possible because `isServiceAvailable` returns False IOS
- [bugfix]: Using plugin prevents openDatabase() on Android
- [feature]: Added Windows8 support<br> - [feature]: Added Windows8 support<br>
*Thanks to* ***pirvudoru*** *Thanks to* ***pirvudoru***
#### Version 0.5.3 (13.07.2014)
- [bugfix]: Printing wasn't possible because `isServiceAvailable` returns False IOS
- [bugfix]: Using plugin prevents openDatabase() on Android
#### Version 0.5.2 (22.03.2014) #### Version 0.5.2 (22.03.2014)
- [bugfix:] `isServiceAvailable` on Android did not return a list of available printing apps. - [bugfix:] `isServiceAvailable` on Android did not return a list of available printing apps.

View File

@ -53,11 +53,13 @@ cordova plugin rm de.appplant.cordova.plugin.printer
## ChangeLog ## ChangeLog
#### Version 0.6.0 (not yet released) #### Version 0.6.0 (not yet released)
- [bugfix]: Printing wasn't possible because `isServiceAvailable` returns False IOS
- [bugfix]: Using plugin prevents openDatabase() on Android
- [feature]: Added Windows8 support<br> - [feature]: Added Windows8 support<br>
*Thanks to* ***pirvudoru*** *Thanks to* ***pirvudoru***
#### Version 0.5.3 (13.07.2014)
- [bugfix]: Printing wasn't possible because `isServiceAvailable` returns False IOS
- [bugfix]: Using plugin prevents openDatabase() on Android
#### Further informations #### Further informations
- See [CHANGELOG.md][changelog] to get the full changelog for the plugin. - See [CHANGELOG.md][changelog] to get the full changelog for the plugin.

View File

@ -3,7 +3,7 @@
<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.6.0dev"> version="0.5.3">
<name>Printer</name> <name>Printer</name>
@ -46,10 +46,10 @@
<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>
<!-- windows8 --> <!-- windows8
<platform name="windows8"> <platform name="windows8">
<js-module src="src/windows8/PrinterProxy.js" name="PrinterProxy"> <js-module src="src/windows8/PrinterProxy.js" name="PrinterProxy">
<clobbers target="" /> <clobbers target="" />
</js-module> </js-module>
</platform> </platform>-->
</plugin> </plugin>