Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch user-color-revamp Excluding Merge-Ins
This is equivalent to a diff from eb1415d8c5 to 54509f8bed
|
2021-02-04
| ||
| 01:00 | Split off the automatic background color chooser into a separate source file "color.c". Add a separate routine "user_color()" to choose background colors based on user name. Abandon the "color-hash-seed" setting. Instead, provide the "user-color-map" setting for overriding the automatic color choices for a few users, which color collisions occur between key project members. check-in: da0d7f7460 user: drh tags: trunk | |
| 00:58 | Oops. Add in the omitted "color.c" source file. Closed-Leaf check-in: 54509f8bed user: drh tags: user-color-revamp | |
| 00:57 | Split off the automatic background color chooser into a separate source file "color.c". Add a separate routine "user_color()" to choose background colors based on user name. Abandon the "color-hash-seed" setting. Instead, provide the "user-color-map" setting for overriding the automatic color choices for a few users, which color collisions occur between key project members. check-in: 4d0af2a68f user: drh tags: user-color-revamp | |
|
2021-02-03
| ||
| 23:51 | Paint backgrounds with the hash_color for the login name when the "ubg" query parameter is given on the /setup_ulist page. check-in: eb1415d8c5 user: drh tags: trunk | |
| 14:23 | Disable triggers using SQLITE_DBCONFIG_ENABLE_TRIGGERS for defense in depth. SQLite 3.35.0 is required due to Fossil's use of TEMP triggers. Also, use the new RETURNING clause for queries where it makes sense, again requiring SQLite 3.35.0. check-in: 8a3dc1a975 user: drh tags: trunk | |
Changes to src/chat.c.
| ︙ | |||
596 597 598 599 600 601 602 | 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 | - + |
}
blob_appendf(&json, "{\"msgid\":%d,", id);
blob_appendf(&json, "\"mtime\":\"%.10sT%sZ\",", zDate, zDate+11);
if( zLMtime && zLMtime[0] ){
blob_appendf(&json, "\"lmtime\":%!j,", zLMtime);
}
blob_appendf(&json, "\"xfrom\":%!j,", zFrom);
|
| ︙ |
Added src/color.c.