Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Change pre-release snapshot descriptions to include links to change logs. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | 3.7.17 |
Files: | files | file ages | folders |
SHA1: |
e847b395477225bd535fba9e710a1804 |
User & Date: | drh 2013-08-03 18:42:59.224 |
Context
2013-08-07
| ||
15:02 | Use javascript to delay setting href on anchors for deliverables on the download page. This is designed to prevent robots from downloading the deliverables. (check-in: ea86d36c1c user: drh tags: 3.7.17) | |
2013-08-03
| ||
18:42 | Change pre-release snapshot descriptions to include links to change logs. (check-in: e847b39547 user: drh tags: 3.7.17) | |
2013-07-23
| ||
13:45 | Add a missing "not" to the text in the download page. (check-in: 53bc857d09 user: drh tags: 3.7.17) | |
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-05-20 (3.7.17)} { <li>Add support for [memory-mapped I/O]. <li>Add the [sqlite3_strglob()] convenience interface. <li>Assigned the integer at offset 68 in the [database header] as the [Application ID] for when SQLite is used as an [application file-format]. | > > > > | 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 exists $DEST/$filename]} { file copy -force $DEST/$filename $DEST/releaselog/current.html } } } chng {2013-05-20 (3.7.17)} { <li>Add support for [memory-mapped I/O]. <li>Add the [sqlite3_strglob()] convenience interface. <li>Assigned the integer at offset 68 in the [database header] as the [Application ID] for when SQLite is used as an [application file-format]. |
︙ | ︙ |
Changes to pages/download.in.
︙ | ︙ | |||
86 87 88 89 90 91 92 | set Caution #fff1c8 Heading {Pre-release Snapshots} {} $Caution Product {snapshot/sqlite-amalgamation-DATE.zip} { | | | > > > > | > > > > > | < | 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | set Caution #fff1c8 Heading {Pre-release Snapshots} {} $Caution Product {snapshot/sqlite-amalgamation-DATE.zip} { This is a snapshot (as of VERSION) of the current SQLite source code under development. See the <a href="http://www.sqlite.org/draft/releaselog/current.html">pending change log</a> or the <a href="http://www.sqlite.org/src/timeline?t=trunk&n=1000&a=release">timeline</a> for a summary of updates since the last release. This ZIP archive contains all preprocessed C code combined into a single source file (the [amalgamation]). } Product {snapshot/sqlite-amalgamation32k-DATE.zip} { This is a snapshot (as of VERSION) of the current SQLite source code under development. See the <a href="http://www.sqlite.org/draft/releaselog/current.html">pending change log</a> or the <a href="http://www.sqlite.org/src/timeline?t=trunk&n=1000&a=release">timeline</a> for a summary of updates since the last release. The code in this ZIP archive is split into a small number of source files, such that no single source file is longer than 32767 lines of code. } Product {snapshot/sqlite-tea-DATE.zip} { This is a snapshot (as of VERSION) of the current SQLite code under development, packaged and ready to build using the <a href="http://www.tcl.tk/doc/tea/">Tcl Extension Architecture (TEA)</a>. Use this snapshot for testing only. This is not a release. } |
︙ | ︙ |