Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update download.in to look for products with version numbers starting with "31" instead of "30". |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
55ba3b7506680beeff4d43dac44e0d7c |
User & Date: | dan 2016-01-06 12:23:05.575 |
Context
2016-01-06
| ||
16:09 | Fix an error regarding operator precedence in fts5.html. (check-in: a44bb18833 user: dan tags: trunk) | |
12:23 | Update download.in to look for products with version numbers starting with "31" instead of "30". (check-in: 55ba3b7506 user: dan tags: trunk) | |
11:05 | Add the "News" for the 3.10.0 release and fix some typos. Add hashes and correct dates to the change log. (check-in: ecbe9a0cbc user: drh tags: trunk, release, version-3.10.0) | |
Changes
Changes to pages/download.in.
︙ | ︙ | |||
10 11 12 13 14 15 16 | unset -nocomplain href unset -nocomplain href_cnt set href_cnt 0 proc Product {pattern desc {frag {}}} { regsub VVV $pattern {*} p3 regsub DATE $p3 {20*} p3 regsub YEAR $p3 {20[134][0-9]} p3 | | | | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | unset -nocomplain href unset -nocomplain href_cnt set href_cnt 0 proc Product {pattern desc {frag {}}} { regsub VVV $pattern {*} p3 regsub DATE $p3 {20*} p3 regsub YEAR $p3 {20[134][0-9]} p3 regsub VVV $pattern {(3\d{6})} pattern regsub DATE $pattern {(\d{12})} 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]} { set version "$year-$month-$day $hour:$min UTC" } elseif {[regexp {^3(\d\d)(\d\d)(\d\d)$} $version \ all major minor patch]} { scan $major %d m1 scan $minor %d m2 scan $patch %d m3 set version 3.$m1.$m2 if {$patch>0} { append version .$m3 |
︙ | ︙ |