Releases: BuildFire/eventsManualPlugin
Bug Fix: background image resize
- Bug Fix: background image resize
April 25th, 2017
Fix Apple Maps
- Fix Apple Maps
February 8th, 2017
Bug fixes: Lat/Long; more than 50 events/month; timezone issues
Bug fixes:
- Lat/Long
- More than 50 events/month
- Timezone issues
September 23rd, 2016
Add to Calendar Bug Fix
Events Manual: Adding more than 50 events and Add to Calendar Bug Fix
- Events Manual: Adding more than 50 events and Add to Calendar Bug Fix
September 12, 2016
HF
EVENTS MANUAL: Time Jump
Implement pull to refresh on all plugins.
Remove Unnecessary data in the plugins to improve the app's startup loading time QA Ready
Events Manual Cut off Fix
EVENTS MANUAL/FEED: Item layout 3 - Text that sits over the overlay should always be white
HotfIX
Review the recurring event solution provided by Matt
[Events Manual]Implement breadcrumbs on your plugin
Repeating events that end after a certain amount of occurances.
Changing Repeating Events does not update
Changing month doesn't show data accordingly from calendar on phone.
[GAT-BFW040-45] End date is set to 01-01-1970 when user click on (x) symbol in end date
[GAT-BFW040-33] [Events manual]: Webpage crashes when repeat every filed is set to zero.
[GAT-BFW040-32] [Events manual]: Possible to ignore a required field while creating an event.
[GAT-BFW040-33] [Events manual]: Webpage crashes when repeat every filed is set to zero.
[GAT-BFW040-31] [Events manual]: Webpage crashes when number of occurences is set to zero.
Duplicate events in widget side while changing months from calendar
Event Manual: Repeat event is showing even After it has passed
[GAT-BFA023-5] Event: Calendar back and forward is not working as expected
[GAT-BFI023-3] Event Manual Plugin: The blue button to save event to Calendar in the Event summary syncs with the position of the Events opened and not with the event date
[GAT-BFW040-52] Event: Event start date can be greater than Repeat starts on date
. [GAT-BFI023-1] Events Manual Plugin: The circle mark of a date is carried over to the previous month.
Events manual: The events are not always displayed under the calendar, only after refresh/reopen of the plugin.
Events manual: Some events created for the next month are displayed under the calendar of June (event in July)
[GAT-BFW040-61](Unknown Expected Behaviour) [Events Manual] Error is shown while adding the plugin
[GAT-BFW040-23] [Events manual plugin]: Events can be created selecting wrong time.
[GAT-BFA023-8] Events: Events added are displayed twice for the same month.
. [GAT-BFW040-29] Event manual: Unable to view body content of the event because of the background image, which is overlapping the text.
[GAT-BFW040-30] Events manual: No restrictions on input for "repeat every" field.
Not specifying start date for repeating shows inconsistency's
Done cannot be clicked
HotFix
EVENTS: Manual Events listed as the Wrong Day
URGENT EVENTS MANUAL: Event time on app is showing 1 hour later than it should
scope:" Made the changes and uploaded on beta. I have uploaded the "TIMEZONE-FIX" branch on beta. Please test and verify. Also we can have a full regression test by QA for this new change:
Just to give an idea what we will be testing for is :
The timezone field shows the current user's timezone and all events will be created in that timezone.
In widget section user will see the event according to their timezone. So when viewing on web, user should wee same date and time in content as well as widget. While viewing on phone, if devices timezone is set to another, they will see the event according to that."
HotFix
EVENTS MANUAL AND FEED: Reserve space for calendar so the events don't snap down
[GAT-BFW022-10] [Events Manual] Going back from viewing event reloads plugin
After editing an event and returning to home. It creates 2 copies of that event. On refresh it becomes normal again.
HotFix
Correct JSON:
we need to go over all plugins and that use datastore search api , and make sure the filter sent in the right way in order to get result , here is the example from the event plugin :
the wrong search option
searchOptions.filter = {"$or": [{"data.startDate": {"$gt": timeStampInMiliSec}}, {"data.startDate": {"$eq": timeStampInMiliSec}}]};
the correct search option :
searchOptions.filter = {"$or": [{"$json.startDate": {"$gt": timeStampInMiliSec}}, {"$json.startDate": {"$eq": timeStampInMiliSec}}]};
we need to replace all "data." with "$json."