• Add announcements, and record when members last logged in

    Kessinen released this 2026-09-05 13:00:01 +00:00 | -12 commits to main since this release

    A single place to say "downloads work again" without messaging everyone.
    The body is markdown, stored as typed and rendered on the way out, so a post
    survives editing without a lossy round trip through HTML. goldmark drops raw
    HTML rather than rendering it, which matters because the body reaches the
    page through template.HTML with Go's own escaping switched off.

    The front page carries the three newest under the queue, newest expanded,
    and links to /news only when there is a fourth. News is decoration there: if
    the query fails the queue still renders. Drafts exist so a post can be
    written before it is sent, and hiding is the same toggle as publishing.

    Ages read as "5 minuuttia sitten" for a week and then become a date, since
    past that the exact age stops being the interesting part.

    last_login_at is unrelated to the feed — it answers "does anyone actually
    use this", and stays null until a real login, which is how an unused invite
    shows up in the members table.

    Ago and HTML take value receivers on purpose: templates reach them through
    dict, which boxes the item in an interface, and a pointer method on a
    non-addressable value is invisible there. That failure renders as a 500 and
    is invisible to go vet, so TestFrontPageRendersNews renders the real page.

    Downloads