Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add the ability to include development snapshot amalgamations on the download page. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3a3f77dd1d5de088e1d3e5f29b9d6711 |
User & Date: | drh 2010-06-24 11:49:38.000 |
Context
2010-06-24
| ||
17:51 | Improve explanation of page_size limitations in WAL mode. Fix a broken link in fileformat2.in. (check-in: c079123bb9 user: drh tags: trunk) | |
11:49 | Add the ability to include development snapshot amalgamations on the download page. (check-in: 3a3f77dd1d user: drh tags: trunk) | |
2010-06-21
| ||
19:17 | Clarify the sqlite3_unlock_notify() documentation. (check-in: 5345d71214 user: drh tags: trunk) | |
Changes
Changes to pages/download.in.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <title>SQLite Download Page</title> <h2>SQLite Download Page</h2> <table width="100%" cellpadding="5"> <tcl> hd_keywords {download page} proc Product {pattern desc {frag {}}} { regsub {V[23]} $pattern {*} p3 regsub V2 $pattern {(2[0-9a-z._]+)} pattern regsub V3 $pattern {(3[0-9a-z._]+)} pattern set p2 [string map {* .*} $pattern] set flist [glob -nocomplain $p3] foreach file [lsort -dict $flist] { if {![regexp ^$p2\$ $file all version]} continue | > > > > > > | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | <title>SQLite Download Page</title> <h2>SQLite Download Page</h2> <table width="100%" cellpadding="5"> <tcl> hd_keywords {download page} proc Product {pattern desc {frag {}}} { regsub {V[23]} $pattern {*} p3 regsub {DATE} $p3 {20*} p3 regsub V2 $pattern {(2[0-9a-z._]+)} pattern regsub V3 $pattern {(3[0-9a-z._]+)} pattern regsub DATE $pattern {(\d{12})} 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]} { set version "$year-$month-$day $hour:$min UTC" } else { regsub -all _ $version . version } set size [file size $file] set units bytes if {$size>1024*1024} { set size [format %.2f [expr {$size/(1024.0*1024.0)}]] set units MiB } elseif {$size>1024} { set size [format %.2f [expr {$size/(1024.0)}]] |
︙ | ︙ | |||
56 57 58 59 60 61 62 63 64 65 66 67 68 69 | This ZIP archive contains all preprocessed C code combined into a single source file (the <a href="amalgamation.html">amalgamation</a>). This is the <b>recommended</b> way of acquiring the SQLite source code. It is suggested that you use this packing option unless you have a compelling reason to use one of the other packaging options below. } Product {sqlite-amalgamation-V3.tar.gz} { A tarball containing the <a href="amalgamation.html">amalgamation</a> together with an configure script and makefile for building it. This is the <b>recommended</b> source distribution for all Unix and Unix-like platforms. } {amalgtarball {amalgamation tarball}} | > > > > > > > | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | This ZIP archive contains all preprocessed C code combined into a single source file (the <a href="amalgamation.html">amalgamation</a>). This is the <b>recommended</b> way of acquiring the SQLite source code. It is suggested that you use this packing option unless you have a compelling reason to use one of the other packaging options below. } Product {sqlite-snapshot-DATE.zip} { This is a snapshot (as of VERSION) of the current SQLite code under development. Use this snapshot for testing only. This is not a release. This ZIP archive contains all preprocessed C code combined into a single source file (the <a href="amalgamation.html">amalgamation</a>). } Product {sqlite-amalgamation-V3.tar.gz} { A tarball containing the <a href="amalgamation.html">amalgamation</a> together with an configure script and makefile for building it. This is the <b>recommended</b> source distribution for all Unix and Unix-like platforms. } {amalgtarball {amalgamation tarball}} |
︙ | ︙ |