Skip to content

Commit c384d8e

Browse files
chore: documentation, version, changelog update
1 parent cef56d8 commit c384d8e

5 files changed

Lines changed: 18 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.4.2] - 2026-02-27
9+
10+
### Changed
11+
12+
- OG images now generate asynchronously in background after build completes, allowing site to start serving immediately.
13+
14+
### Fixed
15+
16+
- Cache headers for dynamic content (`config.yaml`, `content/`, `generated/index/`, `feed.xml`) in nginx and Vercel configs.
17+
- RSS feed now correctly handles date-only entries with local timezone.
18+
- Sidebar piece count now reflects actual count from `pieces.json`.
19+
820
## [1.4.1] - 2026-02-26
921

1022
### Added

WRITING.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -196,15 +196,14 @@ jobs:
196196
STATIC_DIR="/var/www/${PROJECT_NAME}-static"
197197
[ ! -d "${STATIC_DIR}" ] && mkdir -p "${STATIC_DIR}"
198198
GENERATED_502="${APP_DIR}/generated/502.html"
199-
echo "Waiting for 502 page to be generated..."
200-
for i in {1..60}; do
199+
echo "Waiting for 502 page..."
200+
for i in {1..15}; do
201201
if [ -f "${GENERATED_502}" ]; then
202202
cp "${GENERATED_502}" "${STATIC_DIR}/502.html"
203203
echo "502 page copied successfully"
204204
break
205205
fi
206-
echo "Build in progress... ($i/60)"
207-
sleep 2
206+
sleep 1
208207
done
209208
```
210209

docsite/docusaurus.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ const config: Config = {
123123
{
124124
type: 'html',
125125
position: 'right',
126-
value: '<span style="padding: 0.25rem 0.5rem; background: var(--ifm-color-primary); color: white; border-radius: 4px; font-size: 0.875rem; font-weight: 600;">v1.4.1</span>',
126+
value: '<span style="padding: 0.25rem 0.5rem; background: var(--ifm-color-primary); color: white; border-radius: 4px; font-size: 0.875rem; font-weight: 600;">v1.4.2</span>',
127127
},
128128
{
129129
href: 'https://demo.ode.dimwit.me/',

docsite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docsite",
3-
"version": "1.4.1",
3+
"version": "1.4.2",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ode",
33
"private": true,
4-
"version": "1.4.1",
4+
"version": "1.4.2",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

0 commit comments

Comments
 (0)