Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Merge download page enhancements from the 3.10 branch. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
dd43be4becd067303866a49faafda72a |
User & Date: | drh 2016-02-10 13:51:38.559 |
Context
2016-02-10
| ||
19:16 | Update the change log to comment on the NOT NULL and CHECK constraint optimization. (check-in: 83657094be user: drh tags: trunk) | |
13:51 | Merge download page enhancements from the 3.10 branch. (check-in: dd43be4bec user: drh tags: trunk) | |
13:38 | Add the snapshot tarball to the list of possible download files. (check-in: 6af983fad9 user: drh tags: branch-3.10) | |
03:48 | Merge typo fixes from the 3.10 branch. (check-in: f26e661484 user: drh tags: trunk) | |
Changes
Changes to pages/download.in.
︙ | ︙ | |||
11 12 13 14 15 16 17 | unset -nocomplain href_cnt set href_cnt 0 set disable_more 0 proc Product {pattern desc {frag {}} {disable_flag 0}} { if {$::disable_more} return regsub VVV $pattern {*} p3 regsub DATE $p3 {20*} p3 | | | | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | unset -nocomplain href_cnt set href_cnt 0 set disable_more 0 proc Product {pattern desc {frag {}} {disable_flag 0}} { if {$::disable_more} return regsub VVV $pattern {*} p3 regsub DATE $p3 {20*} p3 regsub YEAR $p3 {20[1234][0-9]} p3 regsub VVV $pattern {(3\d{6})} pattern regsub DATE $pattern {(\d{12,17})} pattern regsub YEAR $pattern {\d{4}} pattern set p2 [string map {* .*} $pattern] set flist [glob -nocomplain $p3] foreach file [lsort -dict $flist] { if {![regexp ^$p2\$ $file all version]} continue if {[regexp {^(\d\d\d\d)(\d\d)(\d\d)(\d\d)(\d\d)$} $version \ all year month day hour min]} { |
︙ | ︙ | |||
97 98 99 100 101 102 103 104 105 106 107 108 109 110 | } set Caution #fff1c8 Heading {Pre-release Snapshots} {} $Caution Product {snapshot/sqlite-amalgamation-DATE.zip} { The [amalgamation]: complete source code a single "sqlite3.c" file. } # The [amalgamation] as of VERSION. # See the <a href="http://www.sqlite.org/draft/releaselog/current.html">pending # change log</a> for details. Product {snapshot/sqlite-amalgamation32k-DATE.zip} { | > > > > | 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | } set Caution #fff1c8 Heading {Pre-release Snapshots} {} $Caution Product {snapshot/sqlite-snapshot-DATE.tar.gz} { The [amalgamation] source code, the [command-line shell] source code, configure/make scripts for unix, and a Makefile.msc for Windows. } Product {snapshot/sqlite-amalgamation-DATE.zip} { The [amalgamation]: complete source code a single "sqlite3.c" file. } # The [amalgamation] as of VERSION. # See the <a href="http://www.sqlite.org/draft/releaselog/current.html">pending # change log</a> for details. Product {snapshot/sqlite-amalgamation32k-DATE.zip} { |
︙ | ︙ |