Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add a link from the download page to System.Data.SQLite.org. Also change the name of precompiled Mac binaries from *-mac-* to *-osx-*. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
5235a1ff9112580e81358db56730e3a1 |
User & Date: | drh 2011-04-12 13:28:02.462 |
Context
2011-04-12
| ||
18:17 | Add the "How To Corrupt And SQLite Database" document. (check-in: bc040b36db user: drh tags: trunk) | |
13:28 | Add a link from the download page to System.Data.SQLite.org. Also change the name of precompiled Mac binaries from *-mac-* to *-osx-*. (check-in: 5235a1ff91 user: drh tags: trunk) | |
13:27 | Fix a typo in the news for version 3.7.6. (check-in: 79c9cada16 user: drh tags: trunk) | |
Changes
Changes to pages/download.in.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <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 VVV $pattern {*} p3 regsub DATE $p3 {20*} p3 regsub VVV $pattern {(30\d{5})} pattern regsub DATE $pattern {(\d{12})} pattern set p2 [string map {* .*} $pattern] set flist [glob -nocomplain $p3] | > | 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} set nDownload 0 proc Product {pattern desc {frag {}}} { regsub VVV $pattern {*} p3 regsub DATE $p3 {20*} p3 regsub VVV $pattern {(30\d{5})} pattern regsub DATE $pattern {(\d{12})} pattern set p2 [string map {* .*} $pattern] set flist [glob -nocomplain $p3] |
︙ | ︙ | |||
49 50 51 52 53 54 55 56 57 58 59 60 61 62 | set frag {} } hd_puts "<a href=\"$file\">$file</a><br>($size $units)</td>" hd_puts "<td width=\"5\"></td>" regsub -all VERSION $desc $version d2 hd_puts "<td valign=\"top\">[string trim $d2]" hd_puts "<br>(sha1: $sha1sum)</td></tr>" } if {$frag!=""} { eval hd_keywords [lrange $frag 1 end] } } cd $::DEST | > | 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | set frag {} } hd_puts "<a href=\"$file\">$file</a><br>($size $units)</td>" hd_puts "<td width=\"5\"></td>" regsub -all VERSION $desc $version d2 hd_puts "<td valign=\"top\">[string trim $d2]" hd_puts "<br>(sha1: $sha1sum)</td></tr>" incr ::nDownload } if {$frag!=""} { eval hd_keywords [lrange $frag 1 end] } } cd $::DEST |
︙ | ︙ | |||
149 150 151 152 153 154 155 | Product sqlite-analyzer-linux-x86-VVV.zip { An analysis program for database files compatible with all SQLite versions through VERSION and beyond. } Heading {Precompiled Binaries For Mac OS X (x86)} | | | > > > > > > > > > > > > > > > > | 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | Product sqlite-analyzer-linux-x86-VVV.zip { An analysis program for database files compatible with all SQLite versions through VERSION and beyond. } Heading {Precompiled Binaries For Mac OS X (x86)} Product sqlite-shell-osx-x86-VVV.zip { A <a href="sqlite.html">command-line shell</a> for accessing and modifying SQLite databases. This program is compatible with all versions of SQLite through VERSION and beyond. } Product sqlite-analyzer-osx-x86-VVV.zip { An analysis program for database files compatible with all SQLite versions through VERSION and beyond. } Heading {Precompiled Binaries For Windows} set start $nDownload Product sqlite-shell-win32-x86-VVV.zip { A <a href="sqlite.html">command-line shell</a> for accessing and modifying SQLite databases. This program is compatible with all versions of SQLite through VERSION and beyond. } Product sqlite-dll-win32-x86-VVV.zip { This ZIP archive contains a DLL for the SQLite library version VERSION. } Product sqlite-analyzer-win32-x86-VVV.zip { An analysis program for database files compatible with all SQLite versions through VERSION and beyond. } if {$nDownload>$start} { hd_puts {<tr><td colspan="4"><b>Precompiled Binaries For .NET</b></td></tr>} hd_puts "<tr><td width=\"10\"></td>" hd_puts "<td valign=\"top\" align=\"right\">" set url http://System.Data.SQLite.org/index.html/doc/trunk/www/downloads.wiki hd_puts "<a href=\"$url\">System.Data.SQLite.org</a></td>" hd_puts "<td width=\"5\"></td>" hd_puts "<td valign=\"top\">" hd_puts " Visit the <a href=\"http://System.Data.SQLite.org/\">System.Data.SQLite.org </a> website and especially the <a href=\"$url\">download page</a> for source code an binaries of SQLite for .NET.</td></tr> " } Heading {Legacy Source Code Distribution Formats (Not Recommended)} Product {sqlite-src-VVV.zip} { A ZIP archive of the complete source tree for SQLite version VERSION as extracted from the version control system. <i>The Makefile and configure script in this tarball are not supported</i>. Their use |
︙ | ︙ |