Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | On the download page, use sha3 instead of sha1. And deemphasize the text. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | branch-3.32 |
Files: | files | file ages | folders |
SHA3-256: |
0de47c19a51981003368bfa7cc66413f |
User & Date: | drh 2020-07-26 16:08:16.215 |
Context
2020-08-06
| ||
11:12 | In the search script, remove all punctuation from the search string before injecting it into TCL. (Leaf check-in: 382a046780 user: drh tags: branch-3.32) | |
2020-07-26
| ||
16:11 | Merge branch-3.32 fixed into trunk. (check-in: ace42c454f user: drh tags: trunk) | |
16:08 | On the download page, use sha3 instead of sha1. And deemphasize the text. (check-in: 0de47c19a5 user: drh tags: branch-3.32) | |
2020-07-20
| ||
17:18 | Fix typo on the quirks.in page. (check-in: 586df7805b user: drh tags: branch-3.32) | |
Changes
Changes to pages/download.in.
︙ | ︙ | |||
38 39 40 41 42 43 44 | set version 3.$m1.$m2 if {$patch>0} { append version .$m3 } } if {$datetag=="" && [regexp DATETAG $desc]} continue set size [file size $file] | | | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | set version 3.$m1.$m2 if {$patch>0} { append version .$m3 } } if {$datetag=="" && [regexp DATETAG $desc]} continue set size [file size $file] set sha3sum [lindex [exec fossil sha3sum $file] 0] 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)}]] set units KiB |
︙ | ︙ | |||
78 79 80 81 82 83 84 | set href(a$href_cnt) $file hd_puts "<a id='a$href_cnt' href='hp1.html'>[file tail $file]</a><br>($size $units)</td>\n" hd_puts "<td width=\"5\"></td>" regsub -all VERSION $desc $version d2 regsub -all DATETAG $d2 $datetag d2 hd_puts "\n<td valign=\"top\">" hd_resolve [string trim $d2] | | | 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | set href(a$href_cnt) $file hd_puts "<a id='a$href_cnt' href='hp1.html'>[file tail $file]</a><br>($size $units)</td>\n" hd_puts "<td width=\"5\"></td>" regsub -all VERSION $desc $version d2 regsub -all DATETAG $d2 $datetag d2 hd_puts "\n<td valign=\"top\">" hd_resolve [string trim $d2] hd_puts "<br><small style='color: #999;'>(sha3: $sha3sum)</small></td></tr>\n" incr ::nDownload if {$disable_flag} { set ::disable_more 1 } } if {$frag!=""} { eval hd_keywords [lrange $frag 1 end] |
︙ | ︙ |