Skip to content

Commit 3ef965e

Browse files
chore: release v1.4.6
1 parent e2fb11c commit 3ef965e

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ 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.6] - 2026-03-06
9+
10+
### Added
11+
12+
- Configurable characters per page in reader mode via `reader.charsPerPage` in `config.yaml`. Users may not need to change this at all. But the idea is to keep it configurable in case there are some visual artifacts in the reader mode. This is responsible for splitting the pages for the reader mode.
13+
14+
### Fixed
15+
16+
- Reader mode now correctly paginates lists, code blocks, and blockquotes instead of truncating them mid-element.
17+
- Body of Work page now appears on first deploy when using a custom slug; reliably.
18+
819
## [1.4.5] - 2026-03-05
920

1021
### Fixed

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.5</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.6</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.5",
3+
"version": "1.4.6",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "ode",
33
"private": true,
4-
"version": "1.4.5",
4+
"version": "1.4.6",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
88
"build": "npm run build:index && vite build",
9-
"build:index": "vite-node build/ensure-defaults.ts && vite-node build/generate-502-page.ts && vite-node build/index-pieces.ts && vite-node build/index-pages.ts && vite-node build/paginate-pieces.ts && vite-node build/calculate-stats.ts && vite-node build/generate-rss.ts && vite-node build/generate-sitemap.ts && vite-node build/generate-body-of-work.ts && vite-node build/generate-meta-pages.ts",
9+
"build:index": "vite-node build/ensure-defaults.ts && vite-node build/generate-502-page.ts && vite-node build/index-pieces.ts && vite-node build/generate-body-of-work.ts && vite-node build/index-pages.ts && vite-node build/paginate-pieces.ts && vite-node build/calculate-stats.ts && vite-node build/generate-rss.ts && vite-node build/generate-sitemap.ts && vite-node build/generate-meta-pages.ts",
1010
"build:pieces": "vite-node build/index-pieces.ts",
1111
"build:pages": "vite-node build/index-pages.ts",
1212
"build:paginate": "vite-node build/paginate-pieces.ts",

0 commit comments

Comments
 (0)