Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add the snapshot tarball to the list of possible download files. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | branch-3.10 |
Files: | files | file ages | folders |
SHA1: |
6af983fad9aa38c44a0ddba6cb84d444 |
User & Date: | drh 2016-02-10 13:38:13.422 |
Context
2016-02-12
| ||
05:17 | Change "Universal App Platform" to "Universal Windows Platform". (Leaf check-in: 4802ce4c0a user: drh tags: branch-3.10) | |
2016-02-10
| ||
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:47 | Fix typos in the fileformat2.html document. (check-in: 7ee2137b43 user: drh tags: branch-3.10) | |
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} { |
︙ | ︙ |