Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
50 check-ins related to "trunk" occurring on or before 2022-03-22 15:53:09.
2022-03-22
| ||
15:53 | In the graph, when a merge riser comes up out of a leaf on a different rail, try to shift the branch rail to be directly underneath the merge riser. ... (check-in: 1e70f826b9 user: drh tags: trunk) | |
13:45 | Fix a bug in graph display for when a merge descender is on rail zero, for example the merge descender on the bottom node of [/timeline?b=e5b1c70e2a6e0434&n=22]. ... (check-in: 2bbd70da66 user: drh tags: trunk) | |
13:30 | Improved comments on the graph layout rail shuffling. ... (check-in: ebbfe7d997 user: drh tags: trunk) | |
11:46 | For MSVC build, use /utf-8 option for CL (because some sources need it and this helps when some codepages are in effect) ... (check-in: 0324515b59 user: larrybr tags: trunk) | |
2022-03-21
| ||
17:36 | Typo and link fixes via [forum:09c35aec52377b41 | forum post 09c35aec52377b41]. ... (check-in: 1b13f430c6 user: stephan tags: trunk) | |
16:42 | Typo fix from [forum:a7a52ce98a | forum post a7a52ce98a]. ... (check-in: c3d321fb6f user: stephan tags: trunk) | |
2022-03-17
| ||
12:01 | Update the fossil_prompt.sh script so that it keeps the username and hostname part of the prompt green and only changes the path from red to green. ... (check-in: cca805fa89 user: drh tags: trunk) | |
2022-03-12
| ||
20:11 | Fix to the uintnocase collating sequence. See [forum:/forumpost/56250e7ff0|forum post 56250e7ff0]. ... (check-in: b39475b625 user: drh tags: trunk) | |
14:20 | Update the built-in SQLite to the latest trunk version which includes all of the patches associated with version 3.38.1 plus additional performance enhancements. ... (check-in: b731e1f65b user: drh tags: trunk) | |
2022-03-10
| ||
12:50 | Graph layout: Reduce the top-margin requirement for a merge arrow that comes straight up out of the top of a leaf node. ... (check-in: 6b56d89058 user: drh tags: trunk) | |
12:35 | Graph layout: Strive harder for merge arrows to come straight up out of the top of leaf nodes. ... (check-in: a3bfe425e0 user: drh tags: trunk) | |
2022-03-08
| ||
20:47 | On file listing pages, sort files that have numbers as part of their name in numeric order. ... (check-in: 59dfca5ed5 user: drh tags: trunk) | |
13:08 | Faster implementation of start_of_branch() using a CTE. ... (check-in: 8736de8baa user: drh tags: trunk) | |
12:04 | Fix the case eType==1 (find the first check-in of the branch). ... (Closed-Leaf check-in: 5e34c99828 user: danield tags: start-of-branch-cte) | |
01:07 | Timeline graph layout changes that strive to do better a communicating the merging and branching activity between multiple branches. ... (check-in: d1d7fce64e user: drh tags: trunk) | |
2022-03-07
| ||
21:12 | Fix the display of cherrypick links that are on the same rail as their origin node but then go left. ... (check-in: 632d07c6a9 user: drh tags: trunk) | |
21:01 | Fix very minor comment typos. ... (check-in: 680837fae7 user: drh tags: trunk) | |
20:00 | When displaying the graph for a branch such that the rail for that branch is on the left margin, try to draw merge lines coming into that branch on rails just to the right of the branch itself. ... (check-in: 8b1e14df0b user: drh tags: trunk) | |
19:01 | Update to the latest SQLite 3.39.0 alpha with its performance enhancements and bug fixes. ... (check-in: 14da62eeb5 user: drh tags: trunk) | |
2022-03-03
| ||
23:19 | Use a CTE instead of querying the database in a loop when finding the start of a branch. This can bring significant speedup on some machines. ... (check-in: c7749bb0a3 user: danield tags: start-of-branch-cte) | |
2022-03-02
| ||
02:00 | Update the built-in SQLite to the latest trunk version that includes various performance enhancements. The purpose here is to test the recent SQLite enhancements in a real-world application. ... (check-in: ad744440dc user: drh tags: trunk) | |
2022-03-01
| ||
21:02 | Ensure that db_open()'s db-is-an-appendvfs-binary check uses canonicalized filenames to avoid the problem reported in [forum:16880a28aad1a868 | forum post 16880a28aad1a868]. ... (check-in: ab7ad2348c user: stephan tags: trunk) | |
17:21 | Allow optional "-" characters in the huge string argument to bid= on /timeline so that when the hyperlink will have wrap opportunities when pasted into the chat. ... (check-in: adfc1a6b60 user: drh tags: trunk) | |
16:21 | Fix an unused var warning in windows ... (Closed-Leaf check-in: 169a3dabcf user: mgagnon tags: nameofexe-appendvfs-check) | |
2022-02-28
| ||
23:32 | Calling db_open() to determine if a given repository is valid rather than a hand-rolled sqlite3_open() call. This then allows us to call db_looks_like_a_repository() to determine if the DB is a valid repo rather than duplicate the checks it already has in another nearby context. This is part of the apndvfs vs normal-case stuff done in prior commits, consolidating the notion of "valid" to a single spot in the code. ... (check-in: 69145d9d99 user: wyoung tags: trunk) | |
21:30 | Resolve the bug revealed in [forum:16880a28aad1a868 | forum post 16880a28aad1a868] in which the db_open() appendvfs check can misinteract with g.nameOfExe. This is in a branch until a Windows user can confirm that the g.nameOfExe change in main.c behaves as desired on Windows. This was a collaborative bug fix via /chat, not my own. Edit: test success on Windows reported by Martin G. ... (check-in: ec02acfd09 user: stephan tags: nameofexe-appendvfs-check) | |
20:49 | Since checkin [d8c32ebdff], file_fullexename() function is supported windows, remove comment saying otherwize. (no code change) ... (check-in: 491b986d0d user: mgagnon tags: trunk) | |
20:35 | Simplified an overly-clever test for a file size being an even multiple of 512 bytes. Compiler Explorer says GCC 11 generates the same code both ways, at least, and it isn't in a CPU-critical code path anyway. Also added a comment referring to this new, simplified code, to prevent a recurrence of the problem fixed by the prior commit. ... (check-in: c67d54010d user: wyoung tags: trunk) | |
19:23 | Reverted a check for the repository size being an even multiple of 512 bytes as a test for validity. Introduced in [/info/bd7f2727ba25912e | an omnibus commit] for obscure reasons, it causes some valid clone operations to fail, as originally reported [forum:/forumpost/16880a28aad1a868 | on the forum]. ... (check-in: 4a2d0e7878 user: wyoung tags: trunk) | |
14:05 | /md_rules: replaced 'complex' with 'more', per /chat discussion. ... (check-in: 369d7d1a20 user: stephan tags: trunk) | |
2022-02-26
| ||
14:37 | Removed ENABLE_JSON1 flag from tools/sqlcompattest.c because that flag is no longer in sqlite3 as of 3.38, which is the current minimum required version. Reported in [forum:549da79dd9 | forum post 549da79dd9]. ... (check-in: 8af827342f user: stephan tags: trunk) | |
01:36 | globs.md: clarified that globs apply to the whole dir/filename combination without any awareness/special treatment of the directory part, as suggested in [forum:6637b92a6a17a6bc | forum post 6637b92a6a17a6bc]. ... (check-in: d862cb71d6 user: stephan tags: trunk) | |
2022-02-25
| ||
17:43 | Increase the version number to 2.19 to begin the next development cycle. ... (check-in: 8f0a7ace0c user: drh tags: trunk) | |
11:24 | Update the version number on the homepage. ... (check-in: 93768c1b67 user: drh tags: trunk) | |
2022-02-23
| ||
17:18 | Spelling corrections caught by Debian's automated tools, thanks to Barak A. Pearlmutter. ... (check-in: 9993c43b5c user: danshearer tags: trunk) | |
13:22 | Version 2.18 ... (check-in: 84f25d7eb1 user: drh tags: trunk, release, version-2.18) | |
13:09 | The --share-links option seems to be causing no end of confusion. So we'll just make it undocumented and perhaps remove it or document it properly later. ... (check-in: 0a91005e35 user: drh tags: trunk) | |
13:01 | Include the '<html>' rule in the Miscellaneous section of [/md_rules]. ... (check-in: f0fa7f21f8 user: drh tags: trunk) | |
12:50 | Improvements to the change log for 2.18. Fix the aboutcgi.wiki document so that it correctly shows the scope of REQUEST_URI. ... (check-in: d0491fd0b4 user: drh tags: trunk) | |
2022-02-22
| ||
21:44 | Improved organization and grouping of the change list for version 2.18. ... (check-in: 1841ce6747 user: drh tags: trunk) | |
21:20 | Adjustments to the "/md_rules" page, suggested on the SQLite forum: <https://sqlite.org/forum/forumpost/b8e93aa66d> ... (check-in: c5e4c8b63a user: drh tags: trunk) | |
19:13 | Update the built-in SQLite to version 3.38.0 final. ... (check-in: c55e0f6ca3 user: drh tags: trunk) | |
2022-02-21
| ||
20:54 | docs: a typo fix and an updated date reference. ... (check-in: 841c78d2cd user: stephan tags: trunk) | |
20:44 | antibot.wiki: changed 'billions' to 'millions', per /chat discussion. ... (check-in: d4f3babea9 user: stephan tags: trunk) | |
20:36 | Per chat discussion and [forum:fd49a822db5bc522 | forum post fd49a822db5bc522], removed PellesC build from makemake.tcl and the corresponding makefile. ... (check-in: fcb33239b5 user: stephan tags: trunk) | |
2022-02-20
| ||
19:14 | Fix typo in the output of "fossil help -o". ... (check-in: 5b4a729b71 user: drh tags: trunk) | |
2022-02-19
| ||
23:03 | Adjust padding in /chat CSS to eliminate an unsightly dead zone between the chat area scrollbar and the right side of the page, as reported in /chat. ... (check-in: 46ec28aca9 user: stephan tags: trunk) | |
01:59 | Fix hyperlinks on the [/help?cmd=/winfo|/winfo] page. These were broken when a page was accessed through [/help?cmd=/info|/info/HASH] or <code>/winfo/HASH</code> aliases. ... (check-in: 356a4845b3 user: george tags: trunk) | |
2022-02-18
| ||
22:05 | Do not try to uncompress generic HTTP content when the NOCOMPRESS flag is set. ... (check-in: 66ef906118 user: drh tags: trunk) | |
20:49 | Rename the "fossil chat backup" command to "fossil chat pull". ... (check-in: 8ee8f03a77 user: drh tags: trunk) | |