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
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
Ernie Hershey
3472fe5d86
Fix README syntax
2012-08-06 15:34:21 -04:00
Ernie Hershey
573c1ae9c6
updated for phonegap 2.0
2012-08-06 15:29:49 -04:00
RandyMcMillan
948db0e614
PayPal (iOS) CDV 2.0 compliance
2012-08-04 02:07:46 -04:00
Kieran Shaw
cc44244108
Fix for #704 : Upgrade GoogleAnalyticsPlugin to Cordova 2.0
2012-08-02 17:23:07 +01:00
Jesse MacFadyen
74cbbb2690
Merge pull request #681 from nuttyknot/master
...
update iOS barcodescanner to support PhoneGap 2.0
2012-08-02 08:57:39 -07:00
Josemando Sobral
fa3a32cce1
fixing problem with share method
2012-08-02 09:29:54 -03:00
RandyMcMillan
8d1ea688db
Twitter (iOS) CDV 2.0 Compliance
2012-07-31 17:07:42 -04:00
RandyMcMillan
b4c386fd7e
SMS Composer CDV 2.0 Compliance
2012-07-31 15:17:28 -04:00
RandyMcMillan
682f3329c5
Email Composer (iOS) CDV 2.0 compliance
2012-07-31 15:01:03 -04:00
RandyMcMillan
2749a2a8c5
README.md update
2012-07-31 03:08:29 -04:00
RandyMcMillan
cbdfc970bd
README.md update
2012-07-31 03:06:50 -04:00
RandyMcMillan
31082f2cdd
README.md update
2012-07-31 02:51:42 -04:00