Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | In /timeline, the cherrypicks query parameter puts the graph into "disjoint" mode, which displays much better for the data it is presenting. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
35e892b4f3b56947c240277814ad5672 |
User & Date: | drh 2018-12-28 02:01:46.677 |
Context
2018-12-28
| ||
16:21 | Improved graph display when a single checkin is the parent of both a normal and a cherrypick merge. ... (check-in: 30aec47a user: drh tags: trunk) | |
02:01 | In /timeline, the cherrypicks query parameter puts the graph into "disjoint" mode, which displays much better for the data it is presenting. ... (check-in: 35e892b4 user: drh tags: trunk) | |
01:25 | Improvements to /timeline generation of cherrypick merges. Cherrypicks are now shown with the f= query parameter. Add the cherrypicks query parameter to /timeline. Add test cases to the graph-test-1.wiki page. ... (check-in: ee64832f user: drh tags: trunk) | |
Changes
Changes to src/timeline.c.
︙ | ︙ | |||
2104 2105 2106 2107 2108 2109 2110 | } if( bisectOnly ){ blob_appendf(&desc, " in the most recent bisect"); tmFlags |= TIMELINE_DISJOINT; } if( cpOnly && showCherrypicks ){ blob_appendf(&desc, " that participate in a cherrypick merge"); | | | 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 | } if( bisectOnly ){ blob_appendf(&desc, " in the most recent bisect"); tmFlags |= TIMELINE_DISJOINT; } if( cpOnly && showCherrypicks ){ blob_appendf(&desc, " that participate in a cherrypick merge"); tmFlags |= TIMELINE_CHPICK|TIMELINE_DISJOINT; } if( zUser ){ blob_appendf(&desc, " by user %h", zUser); tmFlags |= TIMELINE_DISJOINT; } if( zTagSql ){ if( matchStyle==MS_EXACT ){ |
︙ | ︙ |