Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a harmless compiler warning. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
ba15af450d33b2fdba45fc3cc68ef96c |
| User & Date: | drh 2011-07-23 22:13:12.942 |
Context
|
2011-07-25
| ||
| 11:21 | Merge the ge-tarfix changes into trunk. This fixes tarball generation for repos that have very long filenames. ... (check-in: a26940c22e user: drh tags: trunk) | |
|
2011-07-24
| ||
| 00:36 | Improvements to tar generation. Uses the format documented in Posix.1-2008 to handle long file names and UTF-8. ... (check-in: 2ef37b3b2a user: ge tags: ge-tarfix) | |
|
2011-07-23
| ||
| 22:13 | Fix a harmless compiler warning. ... (check-in: ba15af450d user: drh tags: trunk) | |
| 22:05 | Improvements to the automatic background color chooser. Provide a setting which alters the algorithm to work with a light-color foreground. ... (check-in: ce4a44d931 user: drh tags: trunk) | |
Changes
Changes to src/timeline.c.
| ︙ | ︙ | |||
217 218 219 220 221 222 223 |
int isLeaf = db_column_int(pQuery, 5);
const char *zBgClr = db_column_text(pQuery, 6);
const char *zDate = db_column_text(pQuery, 2);
const char *zType = db_column_text(pQuery, 7);
const char *zUser = db_column_text(pQuery, 4);
const char *zTagList = db_column_text(pQuery, 8);
int tagid = db_column_int(pQuery, 9);
| | | 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 |
int isLeaf = db_column_int(pQuery, 5);
const char *zBgClr = db_column_text(pQuery, 6);
const char *zDate = db_column_text(pQuery, 2);
const char *zType = db_column_text(pQuery, 7);
const char *zUser = db_column_text(pQuery, 4);
const char *zTagList = db_column_text(pQuery, 8);
int tagid = db_column_int(pQuery, 9);
const char *zBr = 0; /* Branch */
int commentColumn = 3; /* Column containing comment text */
char zTime[8];
if( tagid ){
if( tagid==prevTagid ){
if( tmFlags & TIMELINE_BRIEF ){
suppressCnt++;
continue;
|
| ︙ | ︙ |