Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Always publish the most recent changes in releaselog/current.html. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
27f4c1dbbc787527f3262e0e87d63f46 |
User & Date: | drh 2013-08-03 18:42:24.930 |
Context
2013-08-07
| ||
00:21 | Clarifications and typo-fixes in the NGQP document. (check-in: 5cbddcc945 user: drh tags: trunk) | |
2013-08-03
| ||
18:42 | Always publish the most recent changes in releaselog/current.html. (check-in: 27f4c1dbbc user: drh tags: trunk) | |
2013-08-02
| ||
23:41 | Updates to requirements marks. (check-in: 498cd0709e user: drh tags: trunk) | |
Changes
Changes to pages/changes.in.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <title>Release History Of SQLite</title> <h1 align=center>Release History</h1> <p> This page provides a high-level summary of changes to SQLite. For more detail, refer the Fossil checkin logs at <a href="http://www.sqlite.org/src/timeline"> http://www.sqlite.org/src/timeline</a> and <a href="http://www.sqlite.org/src/timeline?t=release"> http://www.sqlite.org/src/timeline?t=release</a> </p> <tcl> proc chng {date desc} { | > | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | <title>Release History Of SQLite</title> <h1 align=center>Release History</h1> <p> This page provides a high-level summary of changes to SQLite. For more detail, refer the Fossil checkin logs at <a href="http://www.sqlite.org/src/timeline"> http://www.sqlite.org/src/timeline</a> and <a href="http://www.sqlite.org/src/timeline?t=release"> http://www.sqlite.org/src/timeline?t=release</a> </p> <tcl> set nChng 0 proc chng {date desc} { global DEST nChng if {[regexp {\(([0-9.]+)\)} $date all vers]} { set label [string map {. _} $vers] hd_fragment version_$label } hd_puts "<h3>$date</h3>" hd_resolve "<p><ul>$desc</ul></p>" if {[regexp {\((3\.\d+\.[.0-9]+)[ a-zA-Z]*\)} $date all vers]} { |
︙ | ︙ | |||
35 36 37 38 39 40 41 42 43 44 45 46 47 48 | in a single page is also available. A detailed history of every check-in is available at <a href="http://www.sqlite.org/src/timeline"> http://www.sqlite.org/src/timeline</a>.</p> } hd_close_aux hd_enable_main 1 } } chng {2013-08-29 (3.8.0)} { <li>Add support for [partial indexes]</li> <li>Cut-over to the [next generation query planner] for faster and better query plans. <li>The [EXPLAIN QUERY PLAN] output no longer shows an estimate of the number of | > > > > | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | in a single page is also available. A detailed history of every check-in is available at <a href="http://www.sqlite.org/src/timeline"> http://www.sqlite.org/src/timeline</a>.</p> } hd_close_aux hd_enable_main 1 incr nChng if {$nChng==1} { file copy -force $DEST/$filename $DEST/releaselog/current.html } } } chng {2013-08-29 (3.8.0)} { <li>Add support for [partial indexes]</li> <li>Cut-over to the [next generation query planner] for faster and better query plans. <li>The [EXPLAIN QUERY PLAN] output no longer shows an estimate of the number of |
︙ | ︙ |