若海
1c084fac73
fix the version check failed ( #236 )
...
android-sdk version check failed (".\platforms\android\cordova\android_sdk_version"), continuing anyways.
2017-02-05 10:47:34 +01:00
Sebastián Katzer
892b4150ff
Release v0.7.2
2017-02-02 15:29:28 +01:00
Sebastián Katzer
711ed27e1a
Re-added crosswalk-webview
2017-02-02 15:23:25 +01:00
Sebastián Katzer
b7a911a974
Fix app freeze on iOS using wkwebview-engine
2017-02-02 15:22:12 +01:00
Sebastián Katzer
2801364ed8
Avoid reflections
2017-02-02 13:05:43 +01:00
Sebastián Katzer
974d6c4e2a
Release v0.7.1
2017-01-30 12:08:53 +01:00
Sebastián Katzer
4cd3302853
More code refactoring
2017-01-30 12:05:25 +01:00
Sebastián Katzer
9eb7f9f755
Crosswalk lib seems to be unavailable
2017-01-30 11:42:27 +01:00
Sebastián Katzer
96efffb319
Code refactoring
2017-01-30 11:36:10 +01:00
Sebastián Katzer
510518a42f
Update changelog
2017-01-30 09:43:49 +01:00
Sebastián Katzer
d132215100
Fix invalid string format
2017-01-30 09:41:45 +01:00
Sebastián Katzer
4b31ee3097
Fix potential init bug in js interface
2017-01-30 09:37:21 +01:00
Sebastián Katzer
891fa51cb2
Fix threading issue on iOS9
2017-01-30 09:19:15 +01:00
Sebastián Katzer
18fc64fddb
Allow app from being excluded from recent list
2017-01-29 11:19:08 +01:00
Sebastián Katzer
c2fedef6d2
Fix wrong event name in sample
2017-01-28 00:15:53 +01:00
Sebastián Katzer
b1e2080a1d
Fire failure event on service disconnected
2017-01-27 16:50:20 +01:00
Sebastián Katzer
17fbc6981d
Remove unused constant kAPPBackgroundEventFailure
2017-01-27 16:47:52 +01:00
Sebastián Katzer
eeacef9ade
Release v0.7.0
2017-01-27 14:49:22 +01:00
Sebastián Katzer
fe1cf9291c
Tweak some specs
2017-01-27 14:46:53 +01:00
Sebastián Katzer
83f6cc9d1b
Fix wrong scope in overrideBackButton
2017-01-27 14:45:34 +01:00
Sebastián Katzer
916a46b69b
Add codebeat badge button
2017-01-27 12:49:48 +01:00
Sebastián Katzer
0db148518e
Add support for the browser platform
2017-01-27 12:30:52 +01:00
Sebastián Katzer
bcda9ed6a6
Fix Error: Malformed comment
2017-01-27 09:45:19 +01:00
Sebastián Katzer
5f8430f65c
Fix travis
2017-01-27 00:13:24 +01:00
Sebastián Katzer
4cba412ee9
Add travis file
2017-01-26 16:47:54 +01:00
Sebastián Katzer
fc49b48d14
Update readme to be up-to-date
2017-01-26 14:54:32 +01:00
Sebastián Katzer
c005ed9d06
Update specs
2017-01-26 14:54:13 +01:00
Sebastián Katzer
5bc07f17fb
Add hidden flag - Fixes #224
2017-01-26 14:45:01 +01:00
Sebastián Katzer
35c1e63baf
Determine platform first
2017-01-23 10:17:25 +01:00
Sebastián Katzer
e4ae47505b
Move default values to constants
2017-01-23 10:12:42 +01:00
Sebastián Katzer
009854bb22
Support for Amazon FireOS
2017-01-23 10:08:05 +01:00
Sebastián Katzer
096d2b2557
Support windows platform - requires windows 10.14393 or newer
2017-01-21 18:00:10 +01:00
Sebastián Katzer
0ed766a91c
Manually fire enable event on iOS WebKit after deviceready event
2017-01-19 10:57:28 +01:00
Sebastián Katzer
e2a8ab038a
Add setEnabled
function
2017-01-19 10:56:26 +01:00
Sebastián Katzer
ca3530d232
Prefer setProperty over the private setter
2017-01-19 10:09:17 +01:00
Sebastián Katzer
d7dd8a913c
Decode private method name
2017-01-18 18:14:30 +01:00
Sebastián Katzer
e25beda8c9
With webkit the plugin is enabled by default without the need to play audio
2017-01-18 18:00:57 +01:00
Sebastián Katzer
4764ffe14c
Fix find&replace issue
2017-01-18 17:11:46 +01:00
Sebastián Katzer
cbe2ab16f2
Update changelog
2017-01-18 16:52:23 +01:00
Sebastián Katzer
82cfbabbab
Remove wp8 and comment out windows platform
2017-01-17 14:05:49 +01:00
Sebastián Katzer
b76f70a9e6
Make it work with WKWebView #198
2017-01-17 14:02:16 +01:00
Sebastián Katzer
a2bcdb8942
Small ios code updates
2017-01-16 20:44:46 +01:00
Sebastián Katzer
f2016a7c33
Pass json settings as an argument
2017-01-16 15:18:19 +01:00
Sebastián Katzer
a5e60b235d
Fix fireEvent on ios
2017-01-16 15:15:15 +01:00
Sebastián Katzer
8b434e041c
Dont crash if color has wrong format
2017-01-16 10:17:25 +01:00
Sebastián Katzer
337e39b2db
enable/disable event
2017-01-15 14:20:26 +01:00
Thib
6dabe3427d
Fix ios other apps audio interruption ( #209 )
...
* Fix ios other apps audio interruption
Other apps audio was interrupted when the background mode was enabled. I found the solution on this post http://stackoverflow.com/questions/10180500/how-to-use-kaudiosessionproperty-overridecategorymixwithothers
If we don't disable the audio session before that the option AVAudioSessionCategoryOptionMixWithOthers is set, it interrupts the other apps audio. Because the category 'AVAudioSessionCategoryPlayback' is set and by default the session is already active and this category interrupts other apps audio without the option 'mix with others'.
* Update APPBackgroundMode.m
2017-01-15 10:29:51 +01:00
Sebastián Katzer
a9877ec0a1
Allow app to move to foreground (Android)
2017-01-03 22:06:50 +01:00
Sebastián Katzer
5bd6b1f0d8
Allow app to override backbutton behaviour
2017-01-03 21:56:57 +01:00
Sebastián Katzer
d012080d2b
Allow app to move to background (Android)
2017-01-03 21:45:58 +01:00