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
Binary file modified assets/images/screenshot-dashboard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/screenshot-import.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/screenshot-invoices.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/screenshot-salary.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/screenshot-tax.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/screenshot-timetracking.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,20 @@ screenshot view out="": build-renderer
cd "{{electron}}"
npx --yes tsx scripts/capture-view.ts {{view}} {{out}}

# Capture all README screenshots with macOS-style framing
screenshots: build-renderer
#!/usr/bin/env bash
set -euo pipefail
cd "{{electron}}"
pairs="dashboard:screenshot-dashboard timetracking:screenshot-timetracking invoicing:screenshot-invoices tax:screenshot-tax salary:screenshot-salary import:screenshot-import"
for pair in $pairs; do
view="${pair%%:*}"
file="${pair##*:}"
echo "── Capturing $view ──"
npx --yes tsx scripts/capture-view.ts "$view" "../assets/images/${file}.png"
done
echo "✓ All screenshots captured"

# ── Utilities ───────────────────────────────────────────────────────────────

# Install/sync Python dependencies
Expand Down
Loading
Loading