Skip to content

Releases: wevm/frog

frog@0.11.5

28 May 21:30
95a57f7
Compare
Choose a tag to compare

Patch Changes

frog@0.11.4

23 May 19:51
e113451
Compare
Choose a tag to compare

Patch Changes

  • #333 d457c65 Thanks @dalechyn! - Added Gnosis chain support.

  • #294 c9257f5 Thanks @dalechyn! - Introduced .image handler to handle images separately from the frame handler.

  • #325 d8aabe7 Thanks @dalechyn! - Removed tailwindConfig from the allowed properties in imageOptions since it's not fully implemented in Satori.

  • #324 a22492a Thanks @dalechyn! - Deleted font property from imageOptions type in frame handler response.

frog@0.11.3

21 May 13:56
32bfa4e
Compare
Choose a tag to compare

Patch Changes

  • 7e8134c Thanks @tmm! - Added Arbitrum chains for transaction support.

frog@0.11.2

16 May 17:45
823540c
Compare
Choose a tag to compare

Patch Changes

  • 117aae5 Thanks @tmm! - Changed devtools cookie names to be (more) unique to avoid localhost conflicts

frog@0.11.1

16 May 15:44
c9bec3d
Compare
Choose a tag to compare

Patch Changes

  • a9123a0 Thanks @tmm! - Added createNeynar for composing hub and middleware.

frog@0.11.0

16 May 14:54
b36a9e8
Compare
Choose a tag to compare

Minor Changes

  • #255 752ccab Thanks @dalechyn! - Breaking change Frog UI icon property requires an icon map imported from the 'frog/ui/icons' entrypoint. This also makes it easier for you to supply your own custom icons.

    + import { lucide } from 'frog/ui/icons'
    
    export const system = createSystem({
    - icons: 'lucide',
    + icons: lucide,
    })

    In addition, the following separate entrypoints were added for resource constrained environments.

    • frog/ui/icons/heroicons
    • frog/ui/icons/lucide
    • frog/ui/icons/radix-icons

frog@0.10.0

15 May 23:24
1e5b2c6
Compare
Choose a tag to compare

Minor Changes

  • 2aac5d5 Thanks @tmm! - Removed frog hub. Use neynar along with the 'NEYNAR_FROG_FM' dev API key instead.

    import { Frog } from 'frog'
    - import { frog } from 'frog/hubs'
    + import { neynar } from 'frog/hubs'
    
    export const app = new Frog({
    - hub: frog(),
    + hub: neynar({ apiKey: 'NEYNAR_FROG_FM' }),
    })

frog@0.9.4

11 May 21:30
d60c8ed
Compare
Choose a tag to compare

Patch Changes

frog@0.9.3

09 May 21:43
f1ba76b
Compare
Choose a tag to compare

Patch Changes

frog@0.9.2

03 May 20:59
47cae63
Compare
Choose a tag to compare

Patch Changes

  • #298 b9e181b Thanks @tmm! - Added experimental feature to allow additional custom meta tags.

  • #295 14ec5b1 Thanks @sinasab! - Added verifyFrame util exports

  • #293 536c491 Thanks @dalechyn! - Added link property to CastActionMessageResponse to display the toasted message as an external link to the specified URL.
    See more.