@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Restore green color on mobile calendar month view when a day contains events you are invited to

Summary: Ref T11816. This got dropped somewhere along the way, so the mobile month view no longer showed a green-colored hint if a day has events you're invited to.

Test Plan: Viewed Calendar month view on mobile, saw green circles for days with invited events.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11816

Differential Revision: https://secure.phabricator.com/D16852

+1
+1
src/applications/calendar/query/PhabricatorCalendarEventSearchEngine.php
··· 373 373 ->setURI($event->getURI()) 374 374 ->setIsAllDay($event->getIsAllDay()) 375 375 ->setIcon($event->getDisplayIcon($viewer)) 376 + ->setViewerIsInvited($event->getIsUserInvited($viewer->getPHID())) 376 377 ->setIconColor($event->getDisplayIconColor($viewer)); 377 378 378 379 $month_view->addEvent($event_view);