Skip to content

Commit 6ac0ace

Browse files
committed
Final tweaks responding to @justinclift comments
1 parent 9e1f924 commit 6ac0ace

30 files changed

+496
-758
lines changed

Dockerfile-build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# Build Hugo site with: docker run --rm -v $(pwd):/home/hugo/app hugo-build
1313

1414
# Base image
15-
FROM alpine:3.16
15+
FROM alpine:latest
1616

1717
ENV VERSION=0.111.3 \
1818
ARCH=linux-amd64

Dockerfile-server

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# Run interactively: docker run -it --rm -p 1313:1313 -v $(pwd):/home/hugo/app hugo-server
1313

1414
# Base image
15-
FROM alpine:3.16
15+
FROM alpine:latest
1616

1717
ENV VERSION=0.111.3 \
1818
ARCH=linux-amd64

README.md

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,17 @@ This repo contains the source for the [sqlitebrowser.org](sqlitebrowser.org)
44
website. It uses [CommonMark](https://en.wikipedia.org/wiki/Markdown)
55
(also known as Markdown) for the content. It uses Hugo (version 0.111.3)
66
to format the pages.
7-
There are Dockfiles for both interactive development and final builds.
7+
_(Note: Earlier versions of this site started to use
8+
[blogdown](https://bookdown.org/yihui/blogdown/),
9+
but never embraced it. Vestiges may remain, but are not used.)_
10+
11+
There are Dockerfiles for both interactive development and final builds.
812

913
Feel free to change things around, and submit PR's as desired.
1014

11-
License not yet decided. It'll probably be CC0, or maybe
12-
the same as DB4S itself.
15+
The license for the DB4S website directory is the same as for DB4S itself:
16+
DB Browser for SQLite is bi-licensed under the Mozilla Public License
17+
Version 2, as well as the GNU General Public License Version 3 or later.
1318

1419
## Editing the site
1520

@@ -44,10 +49,12 @@ Set the proper date in the full header above.
4449
Docker encapsulates all the necessary tools for running Hugo
4550
into a single container
4651
without affecting any other software on the host operating system.
47-
This is also important because Hugo versions don't always preservee
48-
backward compatibility.
49-
Using Docker ensures that you and all your collaborators are always using
52+
A Docker container also "locks in" all the versions of the tools
53+
so you can be sure that they all work together,
54+
and that all your collaborators are always using
5055
the same versions of the tool.
56+
This is also important for this website because Hugo versions don't always preserve
57+
backward compatibility.
5158

5259
To use Docker, install it on your computer using any of the guides on the Internet.
5360

@@ -56,8 +63,8 @@ and one for creating the final build.
5663
Create them by running these commands. (This is a one-time action.)
5764

5865
```bash
59-
docker build -f Dockerfile-serve -t hugo-server .
60-
docker build -f Dockerfile-build -t hugo-build .
66+
docker build -f Dockerfile-server -t hugo-server .
67+
docker build -f Dockerfile-build -t hugo-build .
6168
```
6269

6370
### Interactive editing

config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title = "DB Browser for SQLite"
44
theme = "hugo-lithium"
55
googleAnalytics = ""
66
disqusShortname = ""
7-
ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$", "\\.knit\\.md$", "\\.utf8\\.md$"]
7+
ignoreFiles = ["_files$", "_cache$", "\\.utf8\\.md$"]
88
enableEmoji = true
99
publishDir = "docs"
1010

content/_index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ There are also nightly builds that are not warranted to be reliable
5454
(or even to work properly). They are available from:
5555
[https://nightlies.sqlitebrowser.org/latest/](https://nightlies.sqlitebrowser.org/latest/)
5656

57+
## Windows Code-Signing Policy
58+
59+
*Free code signing on Windows binaries provided by [SignPath.io](https://signpath.io/), certificate by [SignPath Foundation](https://signpath.org/).*
60+
5761
[gitter-img]: https://badges.gitter.im/sqlitebrowser/sqlitebrowser.svg
5862
[gitter]: https://gitter.im/sqlitebrowser/sqlitebrowser
5963

content/about.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ support issues.
3535
In September 2014, the project was renamed to "DB Browser for SQLite", to
3636
avoid confusion with an existing application called "Database Browser".
3737

38-
Ten years later, the primary maintainers of DB Browser for SQLite are
39-
??? and ??? and ???
40-
with major contributions from ???, ???, and ???.
38+
Today, the primary maintainers of DB Browser for SQLite are
39+
@mgrojo, @chrisjlocke, and @lucydodo,
40+
with major contributions from @scottfurry.
4141

4242

4343

docs/about/index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,9 @@ <h1 class="article-title">About</h1>
9696
support issues.</p>
9797
<p>In September 2014, the project was renamed to &ldquo;DB Browser for SQLite&rdquo;, to
9898
avoid confusion with an existing application called &ldquo;Database Browser&rdquo;.</p>
99+
<p>Today, the primary maintainers of DB Browser for SQLite are
100+
@mgrojo, @chrisjlocke, and @lucydodo,
101+
with major contributions from @scottfurry.</p>
99102
<h2 id="release-history">Release History</h2>
100103
<ul>
101104
<li><a href="https://github.com/sqlitebrowser/sqlitebrowser/releases/tag/v3.12.2">Version 3.12.2 released</a> - 2021-05-18</li>

docs/blog/2023-04-25-support-for-sqlite-extensions-added.md1

Lines changed: 0 additions & 23 deletions
This file was deleted.
Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
<!DOCTYPE html>
2+
<html lang="en-us">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta name="generator" content="Hugo 0.111.3">
7+
8+
9+
<title>3.13.x-rc1 Available - DB Browser for SQLite</title>
10+
<meta property="og:title" content="3.13.x-rc1 Available - DB Browser for SQLite">
11+
12+
13+
<link href='/favicon.ico' rel='icon' type='image/x-icon'/>
14+
15+
16+
17+
18+
19+
20+
21+
22+
<link href="https://sqlitebrowser.org/index.xml" rel="alternate" type="application/rss+xml" title="DB Browser for SQLite" />
23+
24+
25+
26+
<link rel="stylesheet" href="/css/fonts.css" media="all">
27+
28+
29+
<link rel="stylesheet" href="/css/main.css" media="all">
30+
31+
32+
33+
34+
35+
36+
</head>
37+
<body>
38+
<div class="wrapper">
39+
<header class="header">
40+
<nav class="nav">
41+
<a href="/" class="nav-logo">
42+
<img src="/images/sqlitebrowser.svg"
43+
width="50"
44+
height="50"
45+
alt="DB Browser for SQLite logo">
46+
</a>
47+
<ul class="nav-links">
48+
<li><a href="/about/">About</a></li>
49+
<li><a href="/dl/"><b>Download</b></a></li>
50+
<li><a href="/blog/">Blog</a></li>
51+
<li><a href="https://github.com/sqlitebrowser/sqlitebrowser/wiki">Docs</a></li>
52+
<li><a href="https://github.com/sqlitebrowser/sqlitebrowser">GitHub</a></li>
53+
<li><a href="https://gitter.im/sqlitebrowser/sqlitebrowser">Gitter</a></li>
54+
<li><a href="/stats/">Stats</a></li>
55+
<li><a href="https://www.patreon.com/db4s">Patreon</a></li>
56+
<li><a href="https://dbhub.io">DBHub.io</a></li>
57+
</ul>
58+
</nav>
59+
60+
</header>
61+
62+
63+
<main class="content" role="main">
64+
65+
<article class="article">
66+
67+
<span class="article-duration">1 min read</span>
68+
69+
70+
<h1 class="article-title">3.13.x-rc1 Available</h1>
71+
72+
73+
<span class="article-date">2024-02-23</span>
74+
75+
76+
<div class="article-content">
77+
<p>In anticipation of a full release later this year, we note that a release candidate of DB4S 3.13 is now available.
78+
We expect this is the final form of the 3.13 release,
79+
except for any bug fixes.</p>
80+
<p>Get the 3.13.x-rc1 version from <a href="https://github.com/sqlitebrowser/sqlitebrowser/releases/tag/v3.13.x-rc1">https://github.com/sqlitebrowser/sqlitebrowser/releases/tag/v3.13.x-rc1</a></p>
81+
<p>The <a href="https://github.com/sqlitebrowser/sqlitebrowser/blob/master/CHANGELOG.md">CHANGELOG</a>
82+
in the SQLiteBrowser Github repo describes the changes to this version.</p>
83+
84+
</div>
85+
</article>
86+
87+
88+
89+
90+
</main>
91+
92+
<footer class="footer">
93+
<ul class="footer-links">
94+
<li>
95+
<a href="https://sqlitebrowser.org/index.xml" type="application/rss+xml" target="_blank">RSS feed</a>
96+
</li>
97+
<li>
98+
<a href="https://twitter.com/sqlitebrowser" target="_blank">Twitter</a>
99+
</li>
100+
<li>
101+
<a href="/privacy-policy">Privacy policy</a>
102+
</li>
103+
</ul>
104+
<br />
105+
</footer>
106+
</div>
107+
108+
109+
110+
111+
112+
<script>
113+
(function(f, a, t, h, o, m){
114+
a[h]=a[h]||function(){
115+
(a[h].q=a[h].q||[]).push(arguments)
116+
};
117+
o=f.createElement('script'),
118+
m=f.getElementsByTagName('script')[0];
119+
o.async=1; o.src=t; o.id='fathom-script';
120+
m.parentNode.insertBefore(o,m)
121+
})(document, window, '//stats.sqlitebrowser.org/tracker.js', 'fathom');
122+
fathom('set', 'siteId', 'DWUMT');
123+
fathom('trackPageview');
124+
</script>
125+
126+
127+
128+
129+
<script src="https://utteranc.es/client.js"
130+
repo="sqlitebrowser/website"
131+
issue-term="pathname"
132+
label="utterances"
133+
theme="github-light"
134+
crossorigin="anonymous"
135+
async>
136+
</script>
137+
138+
139+
</body>
140+
</html>
141+

docs/blog/index.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,23 @@
6767

6868

6969

70+
<h2 class="archive-title">2024</h2>
71+
72+
<article class="archive-item">
73+
<a href="/blog/signing-windows/" class="archive-item-link">Signing Windows Builds</a>
74+
<span class="archive-item-date">
75+
2024-04-20
76+
</span>
77+
</article>
78+
79+
<article class="archive-item">
80+
<a href="/blog/3-13-rc1-available/" class="archive-item-link">3.13.x-rc1 Available</a>
81+
<span class="archive-item-date">
82+
2024-02-23
83+
</span>
84+
</article>
85+
86+
7087
<h2 class="archive-title">2023</h2>
7188

7289
<article class="archive-item">

0 commit comments

Comments
 (0)