Commit Graph

269 Commits

Author SHA1 Message Date
Andreas Sommer
7ca8ace205 Merge branch 'master' of git://github.com/phonegap/phonegap-plugins 2012-10-12 21:30:05 +02:00
Andreas Sommer
5553ea9e9e Added correct NSNull/nil checks 2012-10-06 20:41:03 +02:00
Andreas Sommer
ace09589e9 Implemented changing tint color of tab bar 2012-10-05 19:48:59 +02:00
Andreas Sommer
c7dbd09b2a Cordova 2.1.0 compatibility 2012-10-05 18:56:23 +02:00
Andreas Sommer
42eb2ce8bc Cordova 2.1.0 compatibility 2012-10-05 18:52:31 +02:00
Andreas Sommer
f30a3ed574 Fix incorrect call for right navigation button 2012-10-05 18:37:42 +02:00
Max Ogden
beff916fcd use newer jsonkit API in ios pushnotification 2012-10-02 20:58:26 +02:00
Max Ogden
94ec94efc9 use 2.1 compatible imports in ios pushnotification plugin. fixes #807 2012-09-25 09:40:51 -07:00
Shazron Abdullah
d4ce61db03 Updated iOS ChildBrowser: 1. Fixed iOS 6 orientation issue, 2. ARC/non-ARC compatibility 3. Uncrustified 2012-09-20 18:39:23 -07:00
Becky Gibson
7817afe4d5 Update iOS MapKit.js to have proper ref to cordovaRef 2012-09-17 14:49:40 -04:00
macdonst
254a0b510d Merge pull request #795 from Wikitude/master
Added Augmented Reality Wikitude SDK Plugin for iOS & Android
2012-09-17 06:29:01 -07:00
Wolfgang Damm
312c6213eb Initial plugin 2012-09-17 14:00:51 +02:00
Max Ogden
5de6ede74c add example response data to ios pushnotification js docs 2012-09-15 10:16:42 +02:00
AndreasSchacherbauerWikitude
67fffdf46c Initial Plugin commit
The Wikitude SDK PhoneGap plugin will be available very soon!
2012-09-14 11:17:01 +02:00
Max Ogden
4e39187cde add statusbarnotifier plugin for ios6 2012-09-12 22:45:39 -07:00
Max Ogden
d1ca95a49e add iOS device details plugin 2012-09-12 21:03:01 -07:00
Andreas Sommer
f3d6e8d418 Missing addition for tint color support 2012-09-05 14:51:08 +02:00
Andreas Sommer
fe5505f0c2 Added support to change tint color of navigation bar 2012-09-04 17:23:24 +02:00
Andreas Sommer
cf130b38e1 Fixed layout when starting in landscape mode 2012-09-04 17:22:48 +02:00
tommy-carlos williams
d93c03cbf9 Merge pull request #768 from sicruise/master
[iOS] ScreenOrientation Plugin
2012-09-03 21:06:52 -07:00
tommy-carlos williams
c88f6eb908 Merge pull request #764 from definitionstudio/master
[iOS] Fix GoogleAnalyticsPlugin reference error in Cordova 2.0.0 (#763)
2012-09-03 21:05:06 -07:00
sicruise
3c15c724ca Update iOS/ScreenOrientation/README.md 2012-08-31 12:54:15 +02:00
Simon Cruise
06e76c92fb Adding README.md file 2012-08-31 11:11:24 +01:00
Simon Cruise
a799d552c8 Screen Orientation Plugin to rotate screen to portrait and landscape mode
The status bar and screen will be rotated with animation to the desired
orientation.

To use the AppDelegate must have the main view controller that extends
CDVViewController as a member variable called viewController.

This main view controller must also have the following modifications.

Header file should have the below allowed orientations variable
introduced.

@interface MainViewController : CDVViewController {
    NSMutableArray *allowedOrientations;
}

@property (nonatomic, retain) NSMutableArray *allowedOrientations;

Source file should have the allowedOrientations synthesized.

@synthesize allowedOrientations;

Then perform setup in viewDidLoad method. UIDeviceOrientationPortrait
can be replaced with UIDeviceOrientationLandscapeRight depending on
desired start up orientation.

- (void) viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view from its nib.
    self.allowedOrientations =  [NSMutableArray array];
    [self.allowedOrientations addObject:[NSNumber
numberWithInt:UIDeviceOrientationPortrait]];
}

Finally implement shouldAutorotateToInterfaceOrientation method with
the following.

- (BOOL)
shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interface
Orientation
{
    // Return YES for supported orientations
    return [allowedOrientations containsObject:[NSNumber
numberWithInt:interfaceOrientation]];
}
2012-08-31 10:55:31 +01:00
robdiciuccio
0353056e77 update iOS GoogleAnalyticsPlugin headers for 2.0.0 2012-08-29 21:15:38 -07:00
James Gregory
ee5a83debd Change CDVPlugin.h import to use correct filename
Plugin doesn't compile because it's trying to import a CDVlugin.h.
Changed to correct filename.
2012-08-28 17:57:06 +10:00
Shazron Abdullah
858dae27e1 Merge pull request #516 from kissthink/master
[iOS] call  vendor app by  Custom URL Schemes if not exits and goto a url to download
2012-08-27 15:15:26 -07:00
Shazron Abdullah
65669671e6 Merge pull request #606 from poblcreative/master
[iOS] Zip file plugin for iOS, using SSZipArchive
2012-08-27 15:15:01 -07:00
Shazron Abdullah
c37ea6da8c Merge pull request #652 from jesses16/master
[iOS] Fixed ShareToMail plugin function to properly accept email parameters
2012-08-27 15:10:17 -07:00
Shazron Abdullah
761cdb4d9b Merge pull request #703 from josemando/master
[iOS] ShareKit - Fixing 'share' method
2012-08-27 15:06:49 -07:00
Shazron Abdullah
2f57931cb4 Merge pull request #705 from kieranshaw/master
[iOS] Fix for issue #704: GoogleAnalyticsPlugin upgrade to Cordova 2.0
2012-08-27 15:05:50 -07:00
Shazron Abdullah
7429c53308 Merge pull request #715 from ehershey/master
[iOS] Modified applicationPreferences ios plugin to work with phonegap 2.0
2012-08-27 15:04:30 -07:00
Shazron Abdullah
94401082c4 Merge pull request #724 from duncanmcdougall/master
[iOS] DatePicker - Added allowFutureDates option.
2012-08-27 15:03:19 -07:00
Shazron Abdullah
6a7d3d8941 Merge pull request #739 from thoolihan/master
[iOS] Add getCalendarList and add calendar title parameter to createEvent
2012-08-27 15:02:54 -07:00
Shazron Abdullah
5b657ea54f Merge pull request #727 from triceam/master
[Android] Updated LowLatencyAudio for Android to use Cordova namespace
2012-08-27 14:51:37 -07:00
tommy-carlos williams
a74af6d5ef Merge pull request #746 from josafafilho/message-box-prompt-email
Add the email text field type to prompt MessageBox
2012-08-20 22:22:14 -07:00
tommy-carlos williams
dae3f90578 Merge pull request #747 from AndiDog/master
Support tab bar tint color, documented using retina-quality tab images
2012-08-20 22:20:38 -07:00
Andreas Sommer
9d9f9a6f32 Documented usage of retina quality images 2012-08-20 20:53:29 +02:00
Josafa Filho
7448e3f433 Add the email text field type to prompt MessageBox 2012-08-20 11:34:47 -03:00
RandyMcMillan
dd5a7b17ef CDV 2.0 (iOS) iAdPlugin
added CDV 2.0 /www example
2012-08-20 08:33:46 -04:00
Tim Hoolihan
c29ffb7979 Added method to fetch calendar list, and optional calendar name for create event 2012-08-17 14:52:14 -04:00
Becky Gibson
2422b3cfb9 Merge pull request #719 from mow415/master
Updates to Globalization plugin for Blackberry, Android, and iOS
2012-08-17 09:43:13 -07:00
Andreas Sommer
0621d259ad Add support for tab bar tint (only on iOS 5 or newer) 2012-08-17 15:16:15 +01:00
Andrew Trice
c1cda6a855 updated readme 2012-08-15 15:43:25 -04:00
Andrew Trice
54022f9204 updated url in readme 2012-08-15 15:39:09 -04:00
Andrew Trice
83f33d4655 added ExternalFileUtil native plugin 2012-08-15 15:37:15 -04:00
Andrew Trice
78de9d8c72 updated phone gap file references 2012-08-13 11:20:40 -04:00
Andrew Trice
90ab3140c2 updated ExternalScreen plugin for Cordova naming conventions, updated multi-screen fleet manager demo, moved PGLowLatencyAudio samples to the iOS directory
Updated ExternalScreen plugin for Cordova naming conventions - works
with PhoneGap 2.0

Updated multi-screen fleet manager demo - uses updated ExternalScreen
plugin, uses Leaflet instead of google maps (better animation, no api
key dependency)

Moved PGLowLatencyAudio samples to the iOS directory
2012-08-13 11:09:47 -04:00
Duncan McDougall
3a68c714c3 [DatePicker iOS] Added allowFutureDates option.
Previously the options only allowed setting whether old dates can be
selected. This adds support for disabling selected of dates in the
future.
2012-08-11 17:54:47 +01:00
mow415
770070ba16 Updated Globalization plugin for use with Cordova 2.0 and add
getPreferredLanguage API
2012-08-08 09:32:22 -07:00