Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Olli committed Nov 23, 2020
1 parent 52c1b55 commit 26c7020
Show file tree
Hide file tree
Showing 5 changed files with 367 additions and 196 deletions.
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,23 @@ state syncing, debugging executed statements, static binding to sqlite3.c of you
http://htmlpreview.github.io/?https://github.com/olliNiinivaara/SQLiteral/blob/master/doc/sqliteral.html

## Installation
latest stable release (1.2.0): `nimble install sqliteral`
`nimble install sqliteral`

## Change log

## Roadmap
**1.2.0 (2020-11-23)**
* requires nim 1.4.0+ (older versions might work too, but not tested)
* supports string views with --experimental:views compile flag
* onCommitCallback
* Text deprecated
* partition states deprecated

## Roadmap

**1.3.0**
* backups in background thread: https://sqlite.org/backup.html example 2
* remove partition states

**1.4.0** https://www.sqlite.org/json1.html

**2.0.0** When views become officially supported in nim, remove Text
34 changes: 24 additions & 10 deletions doc/nimdoc.out.css
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,13 @@ Modified by Boyd Greenfield and narimiran
.theme-switch-wrapper {
display: flex;
align-items: center;
}

em {
margin-left: 10px;
font-size: 1rem;
}
.theme-switch-wrapper em {
margin-left: 10px;
font-size: 1rem;
}

.theme-switch {
display: inline-block;
height: 22px;
Expand Down Expand Up @@ -153,10 +154,12 @@ body {
margin-left: 0; }

.three.columns {
width: 19%; }
width: 22%;
line-break: anywhere;
}

.nine.columns {
width: 80.0%; }
width: 77.0%; }

.twelve.columns {
width: 100%;
Expand Down Expand Up @@ -419,7 +422,7 @@ ul.simple-boot li {
}

ol.simple > li, ul.simple > li {
margin-bottom: 0.25em;
margin-bottom: 0.2em;
margin-left: 0.4em }

ul.simple.simple-toc > li {
Expand All @@ -438,9 +441,19 @@ ul.simple-toc > li {

ul.simple-toc-section {
list-style-type: circle;
margin-left: 1em;
margin-left: 0.8em;
color: #6c9aae; }

ul.nested-toc-section {
list-style-type: circle;
margin-left: -0.75em;
color: var(--text);
}

ul.nested-toc-section > li {
margin-left: 1.25em;
}


ol.arabic {
list-style: decimal; }
Expand Down Expand Up @@ -581,6 +594,7 @@ table th {

table th.docinfo-name {
background-color: transparent;
text-align: right;
}

table tr:hover {
Expand Down Expand Up @@ -644,7 +658,7 @@ div.topic {
margin: 2em; }

div.search_results {
background-color: antiquewhite;
background-color: var(--third-background);
margin: 3em;
padding: 1em;
border: 1px solid #4d4d4d;
Expand Down Expand Up @@ -888,4 +902,4 @@ span.pragmawrap {
span.attachedType {
display: none;
visibility: hidden;
}
}
Loading

0 comments on commit 26c7020

Please sign in to comment.