Re: [sqlite] Next Release? Visual release timeline?

2020-01-16 Thread Dominique Devienne
On Wed, Jan 15, 2020 at 4:54 PM R Smith wrote: > On 2020/01/15 1:24 PM, Richard Hipp wrote: > >> (2) Assume the data is a JSON array of pairs. The first element of > >> each pair is the release name (ex: "3.30.0") and the second element is > >> the time as a fractional year (ex: "2019.7775"). No

Re: [sqlite] Next Release? Visual release timeline?

2020-01-15 Thread R Smith
On 2020/01/15 1:24 PM, Richard Hipp wrote: On 1/15/20, Dominique Devienne wrote: I like Lua's way to graphically visualize releases at https://www.lua.org/versions.html Please send javascript that will generate such a graph, either as SVG or as an HTML Canvas. (1) For improved display on mob

Re: [sqlite] Next Release? Visual release timeline?

2020-01-15 Thread Richard Hipp
On 1/15/20, Dominique Devienne wrote: > I like Lua's way to graphically visualize releases at > https://www.lua.org/versions.html > > Makes it very easy to get a sense of the frequency. Any chance SQLite > would do that, perhaps with "major" (excluding the leading 3.) > releases on one side, and m

[sqlite] Next Release? Visual release timeline?

2020-01-15 Thread Dominique Devienne
I like Lua's way to graphically visualize releases at https://www.lua.org/versions.html Makes it very easy to get a sense of the frequency. Any chance SQLite would do that, perhaps with "major" (excluding the leading 3.) releases on one side, and minor ones on the other? It's been a quarter since

Re: [sqlite] Next release

2018-08-25 Thread Joe Mistachkin
Roger Schlueter wrote: > > What about System.Data.SQLite? > I would estimate that the next System.Data.SQLite release, which will include SQLite 3.25, will be released within two to three weeks after SQLite 3.25 itself is released, barring an unforeseen complications. -- Joe Mistachkin ___

Re: [sqlite] Next release

2018-08-25 Thread Roger Schlueter
What about System.Data.SQLite? On 8/25/2018 13:04, Richard Hipp wrote: On 8/25/18, R Smith wrote: A quick dev question: Any idea on the eta for the next release? My best guess at the moment is 4 or 5 weeks. ___ sqlite-users mailing list sqlite-u

Re: [sqlite] Next release

2018-08-25 Thread Richard Hipp
On 8/25/18, R Smith wrote: > A quick dev question: Any idea on the eta for the next release? My best guess at the moment is 4 or 5 weeks. -- D. Richard Hipp d...@sqlite.org ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org http://mail

[sqlite] Next release

2018-08-25 Thread R Smith
A quick dev question: Any idea on the eta for the next release? Reason for asking:  We're planning a DB tool release soon and can release omitting the Windowing functions, or if it's going to arrive soon, simply wait a bit and include it. This answer, even if vague, will help us make that dec

[sqlite] Next release add flag for building LSM1?

2017-11-07 Thread Charles Leifer
I was wondering if there were plans for adding a simple toggle for building the LSM virtual table? For example, to build json1, one can: export CFLAGS="... -DSQLITE_ENABLE_JSON1 ..." Be handy to have a SQLITE_ENABLE_LSM1 as well. Thanks for all your hard work. ___