@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.

Highlight also lines that were added on the other side in diff of diffs

vrana 273211ae a2f4d661

+2 -2
+2 -2
src/applications/differential/parser/DifferentialChangesetParser.php
··· 165 165 if (isset($olds[$i])) { 166 166 list($n, $type) = $olds[$i]; 167 167 if ($type == '+' || 168 - ($type == ' ' && isset($news[$i]) && $news[$i][1] == '-')) { 168 + ($type == ' ' && isset($news[$i]) && $news[$i][1] != ' ')) { 169 169 $highlight_old[] = $offsets_old[$n]; 170 170 } 171 171 } 172 172 if (isset($news[$i])) { 173 173 list($n, $type) = $news[$i]; 174 174 if ($type == '+' || 175 - ($type == ' ' && isset($olds[$i]) && $olds[$i][1] == '-')) { 175 + ($type == ' ' && isset($olds[$i]) && $olds[$i][1] != ' ')) { 176 176 $highlight_new[] = $offsets_new[$n]; 177 177 } 178 178 }