Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
Every release corresponds to a `staging` to `main` pull request and a matching
`vX.Y.Z` tag on `main`.

## [0.4.1] - 2026-07-17

### Added

- Cover image for the "Cron was easy because the job was dumb" thread, so it no
longer renders coverless on the /threads grid. Designed in the site's canvas
and fonts (the cron field motif with a hand-drawn ring) to match the thread's
own pen annotations.

## [0.4.0] - 2026-07-17

### Added
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "binarysemaphore",
"version": "0.4.0",
"version": "0.4.1",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
Binary file added src/images/cron-routine-notes.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/lib/thread-covers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import tornPaper from "@/images/torn-paper.jpg";
import forceNote from "@/images/the-force-note.jpg";
import colorStacks from "@/images/color-stacks.jpg";
import planningNotes from "@/images/planning-notes.jpg";
import cronRoutineNotes from "@/images/cron-routine-notes.jpg";

/**
* Maps a thread slug to its cover photo. Threads without an entry simply render
Expand All @@ -18,4 +19,5 @@ export const threadCovers: Record<string, StaticImageData> = {
"what-local-first-buys-you": forceNote,
"why-typescript-7-is-written-in-go": colorStacks,
"upgrading-to-typescript-7": planningNotes,
"claude-routines-and-cron": cronRoutineNotes,
};