Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Changes to the display format for chronology of releases. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
8e47ab6c5ed4a14d30d88b5465cc46e9 |
User & Date: | drh 2016-07-01 19:17:48.164 |
Context
2016-07-09
| ||
20:28 | Mention the win32-none VFS and the CACHE_USED_SHARED enhancements in the change log. (check-in: a5f2c520a7 user: drh tags: trunk) | |
2016-07-01
| ||
19:17 | Changes to the display format for chronology of releases. (check-in: 8e47ab6c5e user: drh tags: trunk) | |
12:54 | Further tweaks to the "Common Links" area of the homepage. (check-in: 6c1a5a2528 user: drh tags: trunk) | |
Changes
Changes to pages/about.in.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <title>About SQLite</title> <h1 align=center>About SQLite</h1> <table align="right" border="1" cellpadding="10" hspace="20" cellspacing="0"> <tr><td> <b>See Also...</b> <p><ul> <li> <a href="index.html">Home</a> </li> <li> <a href="features.html">Features</a> </li> <li> <a href="whentouse.html">When to use SQLite</a> </li> <li> <a href="faq.html">Frequently Asked Questions</a> </li> <li> <a href="famous.html">Well-known Users</a> </li> | | | | 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 31 32 33 34 35 36 37 38 | <title>About SQLite</title> <h1 align=center>About SQLite</h1> <table align="right" border="1" cellpadding="10" hspace="20" cellspacing="0"> <tr><td> <b>See Also...</b> <p><ul> <li> <a href="index.html">Home</a> </li> <li> <a href="features.html">Features</a> </li> <li> <a href="whentouse.html">When to use SQLite</a> </li> <li> <a href="faq.html">Frequently Asked Questions</a> </li> <li> <a href="famous.html">Well-known Users</a> </li> <li> <a href="chronology.html">Prior Releases</a> <li> <a href="quickstart.html">Getting Started</a> </li> <li> <a href="lang.html">SQL Syntax</a> <ul> <li> <a href="pragma.html#toc">Pragmas</a> <li> <a href="lang_corefunc.html">SQL functions</a> <li> <a href="lang_datefunc.html">Date & time functions</a> <li> <a href="lang_aggfunc.html">Aggregate functions</a> </ul> </li> <li> <a href="c3ref/intro.html">C/C++ Interface Spec</a> <ul> <li> <a href="cintro.html">Introduction</a> <li> <a href="c3ref/funclist.html">List of C-language APIs</a> </ul> </li> <li> <a href="tclsqlite.html">The TCL Interface Spec</a> <li> <a href="http://www.sqlite.org/src/timeline">Commit History</a> </li> <li> <a href="http://www.sqlite.org/src/wiki?name=Bug+Reports">Report a Bug</a> </li> <li> <a href="news.html">News</a> </li> <li> <a href="sitemap.html">Sitemap</a> </li> </ul></p> </table> <p>SQLite is an in-process library that implements a |
︙ | ︙ | |||
105 106 107 108 109 110 111 112 113 114 115 116 117 | The developers continue to expand the capabilities of SQLite and enhance its reliability and performance while maintaining backwards compatibility with the <a href="c3ref/intro.html">published interface spec</a>, <a href="lang.html">SQL syntax</a>, and database [file format]. The source code is absolutely free to anybody who wants it, but [professional support] is also available.</p> <p>We the developers hope that you find SQLite useful and we charge you to use it well: to make good and beautiful products that are fast, reliable, and simple to use. Seek forgiveness for yourself as you forgive others. And just as you have received SQLite for free, so also freely give, paying the debt forward.</p> | > > > > > > | 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | The developers continue to expand the capabilities of SQLite and enhance its reliability and performance while maintaining backwards compatibility with the <a href="c3ref/intro.html">published interface spec</a>, <a href="lang.html">SQL syntax</a>, and database [file format]. The source code is absolutely free to anybody who wants it, but [professional support] is also available.</p> <p>The SQLite project was started on [https://www.sqlite.org/src/timeline?c=2000-05-29+14:26:00|2000-05-09]. The future is always hard to prodict, but the intent of the developers is to support SQLite through the year 2050. Design decisions are made with that objective in mind.</p> <p>We the developers hope that you find SQLite useful and we charge you to use it well: to make good and beautiful products that are fast, reliable, and simple to use. Seek forgiveness for yourself as you forgive others. And just as you have received SQLite for free, so also freely give, paying the debt forward.</p> |
Changes to pages/chronology.in.
1 | <title>Chronology Of SQLite Releases</title> | | < < < < < | | > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <title>Chronology Of SQLite Releases</title> <tcl>hd_keywords {chronology} {prior releases}</tcl> <h1 align=center>Chronology Of SQLite Releases</h1> <center> <table border=0 cellspacing=0> <thead> <tr><th>Date<th><th align='left'>Version </thead> <tbody> <tcl> set chnglog_fn [file dir $::infile]/changes.in set chnglog_in [open $chnglog_fn] while {![eof $chnglog_in]} { set line [gets $chnglog_in] if {![regexp {^chng } $line]} continue regsub -all {[{}()]} $line {} line |
︙ | ︙ |