Skip to content

ciderpress@1.0.0-rc.3

Latest

Choose a tag to compare

@github-actions github-actions released this 11 Jun 20:44
· 4 commits to main since this release
490c9b0

Minor Changes

  • f71d7f4: Fix: the navbar fallback no longer overrides the auto-generated /logo.svg
    with the hardcoded <CiderpressLogo /> wordmark. When logo is omitted, the
    nav now shows the SVG written to the public dir by the banner module (derived
    from title). Sites that committed their own public/logo.svg already won
    this round; sites that didn't were silently getting the ciderpress wordmark.

    The themed wordmark is still available as an opt-in:

    import { CiderpressLogo } from "ciderpress";
    
    export default defineConfig({
      logo: ({ theme }) => <CiderpressLogo />,
    });

    New: two top-level config fields for overriding auto-generated asset paths.

    • banner?: string — hero image used on the home page and workspace landing
      pages. Defaults to /banner.svg.
    • favicon?: string — favicon path. Defaults to /icon.svg. Distinct from
      icon (the Iconify id for the inline topbar mark).
    export default defineConfig({
      banner: '/assets/hero.png',
      favicon: '/favicon.ico',
    })

    Auto-generation and the <!-- ciderpress-generated --> marker still carry the
    default case — these fields are only needed to point at a different filename
    or a CDN URL.

Patch Changes

  • Updated dependencies [f71d7f4]
    • @ciderpress/cli@1.0.0-rc.3
    • @ciderpress/config@1.0.0-rc.3
    • @ciderpress/ui@1.0.0-rc.3