Michael Trilus
fd8107b79a
feat(appodeal): adds Appodeal SDK wrappers for iOS and Android ( #1031 )
...
* feat(Appodeal) bootrapping
* starting docs
* more docs
* feat(appodeal): add event Observables
* feat(appodeal): replace Cordova Observable events with #.fromEvent()
* feat(appodeal): update decorator metadata
2017-03-01 21:11:00 -05:00
Tom Sundstrom
4f86320696
feat(text-to-speech): Add stop method ( #1063 )
...
https://github.com/vilic/cordova-plugin-tts/pull/32
2017-03-01 21:01:39 -05:00
Ibby
39f1971471
fix plugin
2017-03-01 21:00:49 -05:00
David Pfeffer
60db10c1d3
feat(unique-device-add): add UniqueDeviceId plugin ( #1064 )
2017-03-01 20:59:41 -05:00
Rob
2a32624d9d
feat(local-notifications): support for icon background color ( #1079 )
...
The Cordova plugin Ionic Natives uses allows specifying the background color of the smallIcon. By not including it in your interface you force users to use the default color for their version of Android. While the LocalNotification plugin is not well documented, it does include this feature, see Options.java line 253:
```
/**
* @return
* The notification background color for the small icon
* Returns null, if no color is given.
*/
public int getColor() {
String hex = options.optString("color", null);
if (hex == null) {
return NotificationCompat.COLOR_DEFAULT;
}
int aRGB = Integer.parseInt(hex, 16);
return aRGB + 0xFF000000;
}
```
I've simply added the option to the interface as well as a short description.
This lets you go from the default color (varies by Android version): https://goo.gl/photos/nERcj4GZgapy8aee9
To any color you'd like: https://goo.gl/photos/t8V9WVba8jDU49aHA
And also works if you also specify a large icon: https://goo.gl/photos/gWQYwa12djmdXfYcA
2017-03-01 20:58:53 -05:00
Jan
2fba915b88
fix(file): platform Browser will raise a an DOMException ( #1082 )
...
fix(File): Platform Browser will raise a an DOMException on resoleLocalFilesystemUrl and tries to write on readonly property DOMException err.message in fillErrorMessage
2017-03-01 20:58:09 -05:00
Andrew Martin
318ad3f4e0
feat(google-maps): add constant for map type
2017-03-01 20:57:44 -05:00
Vegard Andreas Larsen
c1748bbc28
fix(file): remove FileError from return type ( #1086 )
...
Promises that reject with a `FileError` are not of the type `Promise<T|FileError>`, but `Promise<T>`.
The previous declarations of `Promise<T|FileError>` would break typing further down the chain where you are trying to use the value that the typing says could be `T|FileError` but in reality could only be `T`.
2017-03-01 20:56:21 -05:00
PERRONCEL
06fa7452dd
docs(google-maps): improve docs ( #1095 )
...
Move `map.moveCamera(position);` inside the MAP_READY event.
Allow to zoom the map on first launch (both iOS and Android).
2017-03-01 20:55:42 -05:00
Xueron Nee
2eea3df2c4
feat(alipay): add alipay support. ( #1097 )
...
* add cordova-alipay-base plugin. to support Alipay payment
* change ALI_PID to APP_ID, make it same with the latest SDK
* rewrite comments
2017-03-01 20:54:27 -05:00
Ibby
13484f9843
docs(app-update): add docs
2017-03-01 20:33:21 -05:00
Ibby
91ee5bde5f
Merge branch 'master' of github.com:driftyco/ionic-native
2017-03-01 20:29:44 -05:00
Xueron Nee
21d40888d8
feat(app-update): add cordova-plugin-app-update support ( #1105 )
...
* add new app-update plugin
* update plugin info
2017-03-01 20:29:38 -05:00
Ibby
f0e219570e
feat(file): add system paths
2017-03-01 20:26:55 -05:00
JiaLiPassion
104532e1d7
fix(plugin): revert changes to support stable version ( #1116 )
...
fix #1001
2017-03-01 20:10:05 -05:00
Ibby
9c5b593d6b
fix(contacts): allow passing asterisk as contact field type
...
closes #1093
2017-03-01 20:06:03 -05:00
Ibby
07c867d98e
docs(background-geolocation): add return types and platforms
2017-03-01 19:53:50 -05:00
Ibby
fc879926b2
fix(background-geolocation): configure returns a promise
...
closes #1118
2017-03-01 19:50:40 -05:00
Ibby
281e37ee04
docs(browser-tab): add proper docs
2017-03-01 19:45:46 -05:00
Aaron Czichon
8de37939fb
feat(browser-tab): add browser tab plugin ( #1126 )
...
* feature: added hasPermission function to Firebase fixes #1115
* feat: Implemented support for BrowserTab #1077
2017-03-01 19:41:54 -05:00
Ibby
448ec7a72b
add success/error indices
2017-03-01 19:40:18 -05:00
Thomas Kemmer
da72500c4b
fix(serial): Serial.requestPermission() options are optional ( #1128 )
2017-03-01 19:39:39 -05:00
idroxid
0c466d9739
refactor(paypal): fix type of items ( #1125 )
...
Type of items should be Array<PayPalItem> instead of string.
2017-03-01 19:38:43 -05:00
jsteffensen
8e0027b974
docs(stripe): fix type and naming issues ( #1129 )
2017-03-01 19:37:57 -05:00
Shane Smith
234ed6e9e7
fix(media): add missing pauseRecord and resumeRecord methods ( #1122 )
2017-02-28 17:31:35 -05:00
Ibby Hadeed
4426e59176
docs(google-maps): fix param type
...
closes #1110
2017-02-23 18:57:29 -05:00
Michael Nishikawa
f22874342a
refactor(file): accept ArrayBuffer for data to write ( #1109 )
2017-02-23 18:56:26 -05:00
coreyroth
6bcd5d3183
Move marker code inside MAP_READY ( #1108 )
...
The code to set the camera position and marker should be moved inside the function handling MAP_READY. Otherwise they execute before the event is fired and it doesn't work.
2017-02-23 18:55:19 -05:00
Robert Coie
407659a3ef
update device orientation docs to reflect renaming of CompassHeading interface ( #1107 )
2017-02-23 04:30:18 -05:00
Musa Haidari
5ef669ae91
Update sqlite.ts ( #1106 )
...
Added a bracket to remove the syntax error
2017-02-23 04:30:02 -05:00
Eric Horodyski
4a39ebd873
Add InAppBrowserOptions interface to documentation. ( #1103 )
2017-02-23 04:29:33 -05:00
Josep Sayol
23b97f6b4a
fix(file): add missing exports ( #1101 )
...
Any declaration that is not being exported is missing from the resulting d.ts declaration files.
2017-02-23 03:54:57 -05:00
Markus Wagner
093c8a8231
Update ibeacon.ts ( #1099 )
...
Return type of `getAuthorizationStatus()` made more explicit.
2017-02-23 03:53:11 -05:00
Noel De Martin
85a3a40795
fix(facebook): fixes issue when not supplying default params ( #1088 )
...
* Fix default facebook logEvent parameters
* Implement correct parameters format in facebook logEvent method
2017-02-23 03:52:49 -05:00
Xueron Nee
b4b7cfa473
fix(imagepicker): add outputType option ( #1098 )
2017-02-23 03:51:44 -05:00
Tommertom
884ce54181
docs(badge): fix example ( #1096 )
...
Error in code example (supplied parameters do not match call signature)
2017-02-23 03:50:05 -05:00
3dd13
70847d1b2b
fix(push): add the missing option clearBadge ( #1087 )
2017-02-18 17:14:57 -05:00
Grisha Rozhnov
ff26f2a019
docs(media): update method usage ( #1089 )
2017-02-17 13:11:04 -05:00
Eric Horodyski
f4b8236c8d
feat(inappbrowser): add interface for IAB options ( #1065 )
...
* Add InAppBrowserOptions Interface for better tooling.
* feat(inappbrowser): add interface for IAB options
* Add more constructor tests.
* Add missing iOS options.
2017-02-15 16:57:16 -05:00
Tine
03ff0a58cf
docs(device-motion): update interface names ( #1076 )
...
AccelerationData interface is wrongly named in docs. It should be DeviceMotionAccelerationData. And I added it to import statement.
2017-02-15 15:41:48 -05:00
Tedy Kanjirathinkal
c7a888e2de
Update file-chooser.ts ( #1071 )
...
Removed semicolon after .then() in usage instructions
2017-02-13 18:18:52 -05:00
John Woodruff
439cceea23
fix(apprate): add missing Windows Store option ( #1072 )
2017-02-13 18:17:43 -05:00
Ibby Hadeed
83f57b9820
fix(zip): progress callback is optional ( #1049 )
2017-02-13 15:06:33 -05:00
Ibby
b7701cdb16
fix(pin-dialog): add missing errorIndex
2017-02-07 10:19:32 -05:00
Ibby Hadeed
434a6c8ad3
Update stepcounter.ts
2017-02-06 08:33:10 -05:00
Tom Sundstrom
97489ba573
feat(barcodescanner): add option disableSuccessBeep ( #1035 )
...
https://github.com/phonegap/phonegap-plugin-barcodescanner/pull/408
2017-02-05 05:41:49 -05:00
Ibby Hadeed
f525a25b49
refractor(google-maps): use Observable.fromEvent instead of addEventListener ( #1032 )
2017-02-04 04:32:41 -05:00
Ibby
add49e8b4d
refractor(): use Observable.fromEvent in wrapEventObservable
2017-02-04 04:16:57 -05:00
Eds
4ab87d8abb
feat(inappbrowser): add hide function ( #1018 )
2017-02-01 01:42:07 -05:00
Prateek Kathal
69ff7afb48
docs(file): add link to additional information ( #1022 )
...
Adding a link to **cordova plugin file** for ease of understanding file management using cordova.
It took me almost a day to figure out how to properly save things like a pdf/image in a publicly accessible directory. Having a link to the main **cordova file** documentation will save a lot of time.
2017-02-01 01:40:55 -05:00
Ibby
62a30c7d8f
Merge branch 'master' of github.com:driftyco/ionic-native
2017-01-31 04:14:40 -05:00
Ibby
dc37d8f71c
fix(safari-view-controller): fix issue caused by calling show without options
2017-01-31 04:14:28 -05:00
Huan LI
8864d1360a
docs(streaming-media): add missing method name ( #1016 )
2017-01-31 01:39:21 -05:00
Ibby
613141998a
docs(header-color): fix doc name
2017-01-30 11:45:36 -05:00
Ibby
c2fbb4fb64
docs(geolocation): update watchPosition example
2017-01-30 11:43:58 -05:00
Josh Strange
f0cf86076c
feat(background-geolocation): add missing properties for Android
2017-01-30 05:45:42 -05:00
Ibby
a03afcf0fa
fix(pinterest): fix PinterestPin interface
2017-01-29 06:49:28 -05:00
Ibby
3abe0bb97d
Merge branch 'master' of github.com:driftyco/ionic-native
2017-01-26 20:30:51 -05:00
Ibby
a5b4632ceb
fix(file-transfer): fix return type of upload method
...
fixes #1002
2017-01-26 20:30:44 -05:00
Ibby Hadeed
1c78f77c0f
docs(stepcounter): update repo and plugin
...
closes #1003
2017-01-25 22:22:05 -05:00
Ibby
b85393de89
chore(): add CordovaOptions interface
2017-01-24 15:12:35 -05:00
Ibby
68c535fd79
style(): missing semicolon
2017-01-24 15:00:43 -05:00
Ibby
1c09ee1fbc
fix(screen-orientation): lockOrientation returns a promise
...
closes #939
2017-01-24 15:00:20 -05:00
Ibby
416071a5a1
fix(google-maps): fix event listeners
...
fixes #999
2017-01-24 00:46:37 -05:00
Ibby
93fdb7eabb
fix typo
2017-01-23 23:00:56 -05:00
Ibby
466437a683
feat(pinterest): add pinterest plugin
2017-01-23 22:59:37 -05:00
Ibby
c3127d35bb
fix(googlemaps): fix GoogleMapsLaLngBounds
...
closes #972
2017-01-23 22:02:31 -05:00
Ibby
3da0efe38e
fix(battery-status): add missing pluginRef
2017-01-22 17:27:52 -05:00
Ibby
b983de2145
feat(core): add PluginConfig interface
...
closes #996
2017-01-22 17:24:43 -05:00
Guille
9f98f8ef46
feat(google-maps): add base class functions ( #993 )
2017-01-22 17:17:13 -05:00
Ibby
3e2964b385
Merge branch 'master' of github.com:driftyco/ionic-native
2017-01-22 17:13:59 -05:00
Guille
77ab2c21da
refractor(): name to pluginName ( #994 )
2017-01-22 17:13:42 -05:00
guille
94025a7fd2
fix(plugin): adds subscribe() and unsubscribe()
2017-01-22 17:13:13 -05:00
guille
8c021bcaa0
fix(): add clearAllNotifications()
2017-01-22 17:13:13 -05:00
Ibby
da7a3707fa
fix(core): fix plugin check
2017-01-22 17:12:24 -05:00
Peter Kelly
cb293639bc
fix(core): fix exception in CordovaProperty ( #998 )
...
This reverts part of commit 67adb23
, which moved the call to getPlugin()
from within CordovaProperty() to a point where it was called too early.
When the CordovaProperty decorator is called on a property, the class
containing that call has not yet had its Plugin decorator called. Only
when the latter happens does pluginRef get set. Thus, attempting to
access pluginRef within CordovaProperty at the time of the call will
give undefined, and attemping to call getPlugin with an undefined value
will throw an exception:
Runtime Error
Cannot read property 'split' of undefined
TypeError: Cannot read property 'split' of undefined
at get
at getPlugin
at CordovaProperty
at __decorate
...
The above message can be seen in the browser after running the 'ionic
serve' command.
This commit moves the getPlugin call back to the getters and setters
established by CordovaProperty, which are only called *after* the Plugin
decorator has finished executing.
closes #992
2017-01-22 17:11:52 -05:00
Ibby
a8258ec998
docs(): add beta tags
2017-01-20 16:33:43 -05:00
Ibby
09747cd746
docs(firebase): improve docs
2017-01-20 16:29:15 -05:00
Ibby
2f89ae0e84
Merge branch 'master' of github.com:driftyco/ionic-native
2017-01-20 16:24:22 -05:00
Megan Kearl
ac748abf78
feat(serial): add Serial plugin ( #952 )
...
* style: fix whitespace lint issue
* feat(serial): add serial plugin
* docs(serial): remove unnecessary comments
2017-01-20 16:16:12 -05:00
Guillaume
1279114b73
feat(backlight): add Backlight plugin ( #973 )
...
* feat(backlight): add Backlight plugin
* fix(backlight): set as beta
2017-01-20 16:14:29 -05:00
Peter Bakondy
7c30718369
feat(speech-recognition): add SpeechRecognition plugin ( #897 )
2017-01-20 16:13:58 -05:00
Kim Biesbjerg
9c75a06131
feat(launch-review): add LaunchReview plugin ( #949 )
...
* Add LaunchReview
* Fix pluginRef
2017-01-20 16:11:57 -05:00
Guillaume
1e38a6c005
feat(broadcaster): add Broadcaster plugin ( #877 )
...
* feat(broadcaster): add Broadcaster plugin
* fix(broadcaster): return Obserable for addEventListener
- also remove the listener when clearing observable
2017-01-20 16:11:19 -05:00
Ibby
23639ee859
docs(): add beta tag
2017-01-20 16:10:39 -05:00
Ibby
be20c51996
Merge branch 'master' of github.com:driftyco/ionic-native
2017-01-20 16:09:27 -05:00
Niklas Merz
1615b74065
feat(fingerprint-aio): add cordova-plugin-fingerprint-aio ( #845 )
2017-01-20 16:09:21 -05:00
Ibby
5638f90783
refractor(): remove default value from optional param
2017-01-20 16:07:28 -05:00
Ibby
47b6164e99
docs(): add beta tags
2017-01-20 16:07:05 -05:00
Lucas A. Moulin
229f5509e9
feat(rollbar): add Rollbar plugin ( #832 )
...
* Add Rollbar plugin
* Add documentation
* Add return type to init function
* Remove init params
2017-01-20 16:05:06 -05:00
John-Luke
70c15c31ca
feat(navigationbar): add NavigationBar plugin ( #826 )
...
* feat(navigationbar): add NavigationBar plugin
* fix(navigationbar) typo in chore
* Implement changes requested
* fix(): add return
* fix(docs): remove callback parameter
* Update navigationbar.ts
2017-01-20 16:04:31 -05:00
Ibby
538ebfe9fe
fix merge conflict
2017-01-20 16:03:58 -05:00
Ibby Hadeed
8e98481609
feat(firebase): add firebase plugin ( #914 )
...
closes #608
2017-01-20 16:02:33 -05:00
Ibby Hadeed
0ec46b03b5
feat(stripe): add stripe plugin ( #913 )
...
* feat(stripe): add stripe plugin
* add stripe to index
* add param doc
2017-01-20 16:02:17 -05:00
Ibby
f10f152d2c
docs(native-geocoder): add interfaces
2017-01-20 16:01:54 -05:00
Ibby
d746a98ef4
refractor(native-geocoder): refractor interface names
2017-01-20 16:01:29 -05:00
Ibby
dbf95ea4bd
fix(native-geocoder): fix callback order
2017-01-20 16:00:05 -05:00
Sebastian Baar
911537b61b
feat(nativegeocoder): add NativeGeocoder plugin ( #800 )
2017-01-20 15:56:16 -05:00
John-Luke
2e926f4a94
Update headercolor.ts
2017-01-19 09:06:58 -03:00
John-Luke
292a9f08e9
solve conflict
2017-01-18 19:06:27 -02:00