-
Notifications
You must be signed in to change notification settings - Fork 291
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add ability to set timezone on events in iOS. necessary for recurrenc… #335
Conversation
…e expansion to work correctly across daylight savings time transitions
Hi @mcarlson, could you add some documentation? And maybe adjust index.d.ts for the signature? Thank you! |
I added some documentation. Let me know what else you need, thank you! |
Thanks @mcarlson! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a small change and a minor issue in TS definition but I will fix that on master :)
Thanks for this!
@@ -388,7 +389,7 @@ If you encounter something that is not listed here, try [searching in GitHub iss | |||
This might be related to a sync issue. | |||
You need to be sure that the event you saved is matching what your device will keep in sync. | |||
|
|||
For iOS, you might have not all event synced. You might need to update this iOS settings in _Settings_ > _Calendar_ > _Sync_ > **All Events**. If that's not enough, it might be worth checking [iOS iCloud sync documentation](https://support.apple.com/en-us/HT203521). | |||
For iOS, you might have not all event synced. You might need to update this iOS settings in _Settings_ > _Calendar_ > _Sync_ > **All Events**. If that's not enough, it might be worth checking [iOS iCloud sync documentation](https://support.apple.com/en-us/HT203521). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For iOS, you might have not all event synced. You might need to update this iOS settings in _Settings_ > _Calendar_ > _Sync_ > **All Events**. If that's not enough, it might be worth checking [iOS iCloud sync documentation](https://support.apple.com/en-us/HT203521). | |
For iOS, you might have not all event synced. You might need to update this iOS settings in _Settings_ > _Calendar_ > _Sync_ > **All Events**. If that's not enough, it might be worth checking [iOS iCloud sync documentation](https://support.apple.com/en-us/HT203521). |
@@ -95,6 +95,8 @@ interface CalendarEventBase { | |||
notes?: string; | |||
/** ANDROID ONLY - The description associated with the calendar event. */ | |||
description?: string; | |||
/** iOS ONLY - The time zone associated with the event |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/** iOS ONLY - The time zone associated with the event | |
/** iOS ONLY - The time zone associated with the event. */ |
Available in 2.2.0, thanks again! |
…e expansion to work correctly across daylight savings time transitions