[PATCH] gitk: different color for boundary commits

2017-07-29 Thread Stefan Dotterweich
makes it hard to just quickly skim a list of commits, especially when looking at dates and authors which are further to the right. Therefore, to make boundary commits easier to recognise, display their text in a different color. Signed-off-by: Stefan Dotterweich --- I made this change for myself

[PATCH v3] gitk: Fix missing commits when using -S or -G

2016-06-04 Thread Stefan Dotterweich
or this in closevargs() by adding missing parent (boundary) commits. However, it does not change $numcommits, which limits how many commits are shown. In the end, some commits at the end of the commit list are simply not shown. Change $numcommits whenever a missing parent is added. Signed-off-

Re: [PATCH v2] gitk: Fix missing commits when using -S or -G

2016-05-08 Thread Stefan Dotterweich
Nice catch; however, we should only update numcommits if the commits are for the current view, i.e. if $v == $curview. Do you want to update the patch? If you prefer, I can update the patch and put a note in the commit message about the issue. Sure, feel free to update the patch as you see fit

Re: [PATCH v2] gitk: Fix missing commits when using -S or -G

2016-05-06 Thread Stefan Dotterweich
or this in closevargs() by adding missing parent (boundary) commits. However, it does not change $numcommits, which limits how many commits are shown. In the end, some commits at the end of the commit list are simply not shown. Change $numcommits whenever a missing parent is added. Signed-off-

[PATCH] gitk: Fix missing commits when using -S or -G

2016-05-06 Thread Stefan Dotterweich
or this in closevargs() by adding missing parent (boundary) commits. However, it does not change $numcommits, which limits how many commits are shown. In the end, some commits at the end of the commit list are simply not shown. Change $numcommits whenever a missing parent is added. Signed-off-