Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
50 most recent check-ins
2025-03-13
| ||
17:06 | Add admin-only alert subscription for notification when a user's permissions are elevated. Leaf check-in: d96055cc33 user: stephan tags: trunk | |
10:34 | Fix multiple bugs associated with the versioned manifest setting. check-in: dfc0f1b41f user: drh tags: trunk | |
00:59 | Fix a compiler warning about possible use of an uninitialized variable. Looks like GCC 12 is confused though. check-in: a4cc6e098c user: george tags: trunk | |
00:45 | A couple of minor fixes for (not) showing associated wikis. This amends [25f43cc634]. check-in: 3c2aba79a7 user: george tags: trunk | |
00:43 | In git-export, when the versioned manifest setting changes, be sure to delete manifest files that have become obsolete. Closed-Leaf check-in: 175009a5be user: drh tags: versioned-manifest-setting | |
00:26 | Further simplification of db_get_manifest_setting(): No need to check in global_config because manifest cannot be set globally. check-in: b89520f227 user: drh tags: versioned-manifest-setting | |
2025-03-12
| ||
23:58 | Simplifications to db_get_manifest_setting(). check-in: ed6b0c0b5c user: drh tags: versioned-manifest-setting | |
21:48 | Here is a possible solution to the versioned "manifest" setting. Needs lots of testing. check-in: eb41a9f3c4 user: drh tags: versioned-manifest-setting | |
21:39 | Fix positioning of 'show/hide' checkboxes for the /vinfo pages. This amends [a11d24547826] check-in: e21f096c61 user: george tags: trunk | |
19:45 | Rollback the change that converted the "manifest" setting to unversioned, as Stephan points out that maybe it does work after all. check-in: e8dc1dfe0e user: drh tags: trunk | |
19:37 | When searching for a repository to open based on the request URI, do not mistake directories whose names end with ".fossil" as repositories. This resolves the issue mentioned in [forum:/forumpost/3724e6175b7f6163|forum post 3724e6175b]. check-in: dc21949fa3 user: drh tags: trunk | |
18:50 | add mention of ticket-wikis to changelog check-in: c23741ac5d user: jkosche tags: trunk | |
18:22 | Incorrect analysis. Rolled back. check-in: eec84c1c2c user: drh tags: trunk | |
18:05 | Add 'win/build32.bat' and 'win/build64.bat' to the .fossil-settings/crlf-glob for consistency with [a2db4285da55]. check-in: a1bda9eb6c user: george tags: trunk | |
14:56 | Always puts "{...}" around the action of an if() statement when the action is on a separate line. Add column labels on the output of "--numstat". check-in: 7bcd6626bd user: drh tags: trunk | |
13:35 | For 'fossil diff', when --numstat is combined with --brief, show only the total row. check-in: 37327906e7 user: danield tags: trunk | |
09:49 | For consistency, use the spelling 'descendant' for the noun usage. check-in: c9d3900367 user: danield tags: trunk | |
09:26 | Fix a hyperlink in the /timeline title. check-in: 254dfbd2ba user: danield tags: trunk | |
2025-03-11
| ||
18:04 | Update the change log to talk about all the latest enhancement. check-in: faf1982916 user: drh tags: trunk | |
10:44 | For the console-based timeline, run comment text through wiki_convert() and then through html_to_plaintext() before display, in order to translate markup. check-in: 6ab9994de6 user: drh tags: trunk | |
01:26 | Fix typo in error message from the previous commit. check-in: 403a3aeb35 user: drh tags: trunk | |
00:01 | Ensure that "fossil info arg" not occurring in a check-out does not try to access a repository that does not exist. [forum:/forumpost/6ddeec566b|forum post 6ddeec566b]. check-in: c6a0e669f8 user: drh tags: trunk | |
2025-03-10
| ||
18:42 | The "fossil commit" command looks for suspicious and/or broken hyperlinks in comments and gives the user an opportunity to continue editing the comment. check-in: 3e87f78e60 user: drh tags: trunk | |
14:43 | Merge the latest trunk enhancements into the comment-markdown-links branch. Leaf check-in: 652362e97c user: drh tags: comment-markdown-links | |
14:14 | In /timeline allow p= and d= to have separate values, and the result is showing all check-ins that are both ancenstors of p= and descendents of d=. check-in: d1d4cc7529 user: drh tags: trunk | |
12:36 | In the /timeline with p=/bt= or d=/ft=, show the termination check-in even if it is not a ancestor or descendent of the starting point. check-in: e2e57aa973 user: drh tags: trunk | |
10:23 | Make the (help platform-specific-command-or-page) output more generic so that it applies equally to commands, settings, and web pages. check-in: 7919a44d53 user: stephan tags: trunk | |
10:21 | Teach the help command and /help page to be able to distinguish completely unknown commands from commands which are only conditionally available depending on their platform or build flags. Based on a /chat discussion. check-in: e5ace41107 user: stephan tags: trunk | |
10:06 | Merge from trunk. Leaf check-in: 4850a59591 user: brickviking tags: bv-infotool | |
09:55 | In help texts, mention that 'winsrv' is only available on Windows. check-in: e2c161bafb user: danield tags: trunk | |
07:56 | (Typos) Corrected two phrases, one for American spelling. check-in: b33f0d55ec user: brickviking tags: trunk | |
2025-03-09
| ||
23:04 | First cut at the /logsummary page. Provides a count of the various error log message types. Need to gather more examples in order to figure out how to deduce more types. Access by admins only. check-in: 55d476abf5 user: drh tags: trunk | |
19:28 | Add the "min" query parameter to /timeline. Other minor bug fixes found while working on the new feature. The priority queue implementation was rewritten. Minimum SQLite increased to 3.49.0. check-in: 4e23c2a91a user: drh tags: trunk | |
18:03 | Increase the minimum SQLite version to 3.49.0. Really we only need to go to 3.47.0 (due to the previous check-in on this branch) but 3.49.0 is a better choice so let's just require it. Closed-Leaf check-in: 3c03634ee9 user: drh tags: min-from-to | |
17:55 | Fix a bug in recursive CTE used to help implement from=,bt= which which might result in an incorrect answer. The original query was put in place prior to the "subquery-order-by-optimization" patch to SQLite ([src:/info/20240816185146|2024-08-16]) version 3.47.0. Without that optimization, the query runs slowly. Also: a comment typo fix. check-in: 29f946923e user: drh tags: min-from-to | |
10:34 | Improved subtitle for /timeline graphs that use "min": Now tells the total number of nodes on the path including those that were skipped. check-in: 2229b2f6f1 user: drh tags: min-from-to | |
10:20 | Fix the "min" and "shortest" query parameters so that they operate independently of one another. check-in: 93269c9f89 user: drh tags: min-from-to | |
10:04 | Add support for ticket/... wiki pages to /wikiedit. check-in: f01d60fd17 user: stephan tags: trunk | |
09:33 | add fields for priority and subsystem to tktnew-form, if user has Write-Tkt rights, which allows them to edit these fields in tktedit Leaf check-in: 1b7033ffa5 user: jkosche tags: tktnew-template | |
07:39 | Update change log. Doc updates related to the user elevation subscription. Closed-Leaf check-in: a5d2c9e826 user: stephan tags: useredit-note-elevation | |
07:12 |
Cleanups, mostly docs, in the user elevation alerts. Document the currently-known ways which this particular alert differs from others. This needs more sanding-down | |
2025-03-08
| ||
23:58 | Restore the "shortest" query parameter on /timeline. Make it actually show the path with the fewest number of nodes, as it was originally intended. Improve the /help for /timeline. check-in: a91586d256 user: drh tags: min-from-to | |
22:49 | In the timeline, remove the "shortest" flag on the from=,to= configuration, as it is not useful. Simplify the implementation of the "min" flag. check-in: e09d965fe0 user: drh tags: min-from-to | |
21:36 | Improvements to the new path_shortest() implementation, include many enhancements to debugging and analysis capabilities. check-in: 923dca3014 user: drh tags: min-from-to | |
19:03 | always set private_contact initially to the contact in the user check-in: 136f1441fe user: jkosche tags: tktnew-template | |
18:56 | add submenu to tktview to copy that ticket as template for a new one, as suggested in https://fossil-scm.org/forum/forumpost/d53ffe93722333b1 check-in: 933a6f3ad8 user: jkosche tags: tktnew-template | |
18:44 | Reimplement path_shortest() using the new PQueue with pointer content. check-in: 14372167c9 user: drh tags: min-from-to | |
16:01 | Create new branch named "tktnew-template" check-in: 27a0a1d11f user: jkosche tags: tktnew-template | |
14:47 | Send the alert for new users even if they have empty permissions. check-in: 5772d2f132 user: stephan tags: useredit-note-elevation | |
14:43 | Slight simplification to the previous check-in. check-in: 28b4382e23 user: stephan tags: useredit-note-elevation | |