Joe Bowser
7840448133
Work-around Feature for Classic PhoneGap 320x480 resolution
2011-11-25 14:38:11 -08:00
macdonst
e77e552293
Fix for Issue #33 : onReceivedError incorrectly sets openExternal to true
2011-11-25 14:38:09 -08:00
William Shen
5ceb6e2cfa
Changed createCaptureFile to explicitly check for PNG and to throw an IllegalArgumentException if it is not a JPEG nor a PNG
2011-11-25 14:38:09 -08:00
Bryce Curtis
035ad08c69
Optimize enumerations as suggested by @plowman.
2011-11-25 14:38:08 -08:00
Bryce Curtis
80d0a0cb4c
Change API to postMessage() to call a plugin's onMessage() method.
2011-11-25 14:38:07 -08:00
macdonst
05e233bf1d
Fix for issue #281 of phonegap/phonegap-android: Detect for localStorage if Java has disabled it
2011-11-25 14:38:06 -08:00
macdonst
853a734f82
Fix for Issue #33 : onReceivedError incorrectly sets openExternal to true
2011-11-25 05:29:24 +08:00
William Shen
d5580557f1
removed unused import
2011-11-23 11:25:53 -08:00
William Shen
7a6a59383b
removed a couple extra semicolons
2011-11-23 11:03:14 -08:00
macdonst
c70a1e8594
Fix for phonegap-android issue #261 : Wrong application scale
2011-11-24 02:56:00 +08:00
William Shen
cd5bf6195e
cleaning up handling of exceptions. removing unnecessary exception declaration in FileUtils. removing try-catch that should not have been done in HttpHandler
2011-11-23 10:52:43 -08:00
William Shen
7c8db0ea44
fixing redundant assignment of variable
2011-11-23 10:39:20 -08:00
macdonst
119f6cca85
Merge pull request #14 from willshen/master
...
Modified createCaptureFile in CameraLauncher to Improve Encoding Type Safety
2011-11-22 17:24:51 -08:00
Bryce Curtis
4a25d780ce
Optimize enumerations as suggested by @plowman.
2011-11-22 14:36:24 -06:00
Bryce Curtis
798cb3e347
Change API to postMessage() to call a plugin's onMessage() method.
2011-11-22 14:36:00 -06:00
macdonst
63ae953432
Fix for issue #281 of phonegap/phonegap-android: Detect for localStorage if Java has disabled it
2011-11-23 03:50:26 +08:00
Joe Bowser
36caaf366f
Merge pull request #25 from infil00p/minor_menu_tweak
...
Change based on new message passing API in IPlugin
2011-11-21 16:07:30 -08:00
macdonst
3ebfb6717c
Fix for CB-17: WebView caching resized pictures
2011-11-22 05:30:24 +08:00
Joe Bowser
9409caad69
Change based on new message passing API in IPlugin
2011-11-16 14:50:26 -08:00
macdonst
5406d6c98f
Linting the JS code
2011-11-17 04:38:11 +08:00
Joe Bowser
29c7e12505
Merge pull request #15 from infil00p/master
...
Working on Compliance, Removed the Crypto Library! Seriously guys, please read this!
2011-11-16 10:09:24 -08:00
Bryce Curtis
cbdd400fe7
Fix Issue #23 - Crash when using splash screen.
2011-11-15 23:13:49 -06:00
Bryce Curtis
a6db1112c6
Fix bug with showing loadingDialog property.
2011-11-15 23:06:29 -06:00
Bryce Curtis
bfef72a7c4
Add onload attribute to plugin in plugins.xml to create the plugin at load time instead of lazy loading.
2011-11-15 14:29:32 -06:00
Bryce Curtis
7ce2a8cb71
Make sure we clear appView history too.
2011-11-15 13:55:08 -06:00
Bryce Curtis
2a866e2a7c
Refactor backHistory() code so calling navigator.app.backHistory() has consistent behavior with backbutton.
2011-11-09 23:37:16 -06:00
Bryce Curtis
827af8a920
Deprecate addService().
2011-11-09 23:12:53 -06:00
Bryce Curtis
0caca9ae55
Remove old code.
2011-11-09 15:46:45 -06:00
Bryce Curtis
0bbcf5cfd2
Add onMessage(id, data) to plugin API.
...
A solution was needed to notify the audio player to pause when a phone call comes in. The option was to add a specific onPhone() method or generalize it. Since there are other "events" that are useful to plugins, a generalized solution was used. It is also extensible without changing the plugin API again.
Any plugin can call DroidGap.onMessage() to send a message/event to all other plugins. NetworkManager was updated to send changes in connection status to plugins, so they can intelligently handle lost connections.
2011-11-09 10:34:49 -06:00
Bryce Curtis
fd93404c7c
Backbutton should go back in appview history before going back in our history stack.
...
JQMobile uses htmlPage#div to navigate "multipage" apps. When the webview navigates between tags in the same page, it is added to the webview history.
2011-11-09 09:14:13 -06:00
Bryce Curtis
e9fcb296bb
Merge branch 'master' of github.com:callback/callback-android
2011-11-07 15:03:56 -06:00
Joe Bowser
d5d95ad489
Merging changes
2011-11-04 13:46:44 -07:00
macdonst
db0a1919f3
Remove PhoneGap.stringify, replace with JSON.stringify
...
Since we don't support Android 1.5/1.6 anymore we don't need to check to see if JSON.stringify is around as it is included in Android 2.1+. By removing this check for JSON.stringify we remove two conditional checks on each call to PhoneGap.exec.
As well we get rid of 60 lines of code which are currently bloating phonegap.js.base.
2011-11-04 13:40:52 -07:00
Bryce Curtis
141b8355ac
Don't fire resume upon init - only when returning from background.
...
Lifecycle behavior for PhoneGap app:
window.onload = loading html page
pause = html page entering background (not displayed)
resume = html page entering foreground (displayed)
window.onunload = leaving html page
2011-11-04 13:40:51 -07:00
William Shen
affab67ca3
Changed createCaptureFile to explicitly check for PNG and to throw an IllegalArgumentException if it is not a JPEG nor a PNG
2011-11-03 18:41:08 -07:00
macdonst
cf9848bd59
Remove PhoneGap.stringify, replace with JSON.stringify
...
Since we don't support Android 1.5/1.6 anymore we don't need to check to see if JSON.stringify is around as it is included in Android 2.1+. By removing this check for JSON.stringify we remove two conditional checks on each call to PhoneGap.exec.
As well we get rid of 60 lines of code which are currently bloating phonegap.js.base.
2011-11-04 04:30:46 +08:00
Bryce Curtis
7ad3f76d9a
Don't fire resume upon init - only when returning from background.
...
Lifecycle behavior for PhoneGap app:
window.onload = loading html page
pause = html page entering background (not displayed)
resume = html page entering foreground (displayed)
window.onunload = leaving html page
2011-11-03 14:22:29 -05:00
Joe Bowser
7244a5a727
Merge branch 'master' of github.com:callback/callback-android
2011-11-02 13:10:50 -07:00
Fil Maj
538cdb03fc
No -e caused the bash script to fail
2011-11-02 12:01:36 -07:00
Bryce Curtis
8057bca4f2
Merge pull request #11 from nisc/remote-issue-11
...
Fixes to make example project build
2011-11-01 19:42:07 -07:00
nisc
546b33c936
Fixes to make example project build and compile
...
On Ubuntu 11.04, that is.
2011-11-01 22:04:28 +01:00
Bryce Curtis
9b5a63e8e4
Updated readme.
2011-10-31 21:14:05 -05:00
Bryce Curtis
798d502083
Update for 1.2.0.
2011-10-31 20:46:22 -05:00
Bryce Curtis
813637eb78
Update to download and run callback-test repository.
2011-10-31 20:45:38 -05:00
Bryce Curtis
e4a5000f9e
This is an informative message, not an error message. It is normal to get this when leaving a page.
2011-10-31 20:39:42 -05:00
Bryce Curtis
fd07cfc461
Update version to 1.2.0.
2011-10-31 17:29:08 -05:00
Bryce Curtis
d1ec1f7693
Don't fire resume at app startup.
2011-10-31 14:18:32 -05:00
Joe Bowser
e1d3f1491f
Accidentally added stray char when changing the licence
2011-10-28 16:31:48 -07:00
Joe Bowser
5075a3e087
Merge branch 'master' of github.com:callback/callback-android
2011-10-28 13:26:17 -07:00
Joe Bowser
a35a33c05e
Adding the Apache Headers
2011-10-27 14:04:39 -07:00