Skip to content

Releases: wevm/frog

[email protected]

23 Jul 16:25
084c866
Compare
Choose a tag to compare

Patch Changes

  • #433 2d6a951 Thanks @dalechyn! - Fixed an issue with missing "type": "composer" in Composer Action Metadata Response that resulted in incorrect behaviour.

[email protected]

22 Jul 18:58
638f35f
Compare
Choose a tag to compare

Minor Changes

  • #431 c1f5be4 Thanks @dalechyn! - Breaking Change. Composer Action Handlers now require a third argument to define metadata.

    export const app = new Frog({
      title: 'Composer Action',
    }).composerAction(
      '/',
      async (c) => {
        if (Math.random() > 0.5) return c.error({ message: 'Action failed :(' })
        return c.res({
          title: 'Some Composer Action',
          url: 'https://example.com',
        })
      },
    + {
    +   name: 'Some Composer Action',
    +   description: 'Cool Composer Action',
    +   icon: 'image',
    +   imageUrl: 'https://frog.fm/logo-light.svg',
    + },
    )

[email protected]

22 Jul 10:56
302bef8
Compare
Choose a tag to compare

Patch Changes

  • #425 ab1a969 Thanks @dalechyn! - Fixed an issue with absent title in templates that led to a typing error.

[email protected]

18 Jul 13:23
ddb510f
Compare
Choose a tag to compare

Patch Changes

  • #420 6114139 Thanks @dalechyn! - Fixed an issue where TextInput component was unnecessarily unwrapped causing an issue with getting button values.

[email protected]

17 Jul 18:33
4be5242
Compare
Choose a tag to compare

Patch Changes

  • #414 51f5678 Thanks @dalechyn! - Fixed an issue where Box props weren't accessible in HStack and VStack components.

  • #417 24e7fd0 Thanks @dalechyn! - Fixed an issue where verify value would be the same as the parent's Frog instance even if false is passed.

[email protected]

11 Jul 12:59
f59042d
Compare
Choose a tag to compare

Patch Changes

[email protected]

10 Jul 21:25
13d8d35
Compare
Choose a tag to compare

Patch Changes

  • #409 9304567 Thanks @dalechyn! - Fixed an issue where c.deriveState would not modify state in initial frame handler.

[email protected]

10 Jul 16:49
34c60d6
Compare
Choose a tag to compare

Minor Changes

  • #407 902f03d Thanks @dalechyn! - Breaking Change. Added chainId back as a parameter to .signature handler's c.signTypedData response.

    app.signature('/sign', (c) =>
      c.signTypedData({
    +   chainId: 'eip155:8543',
        /**/
      })

[email protected]

09 Jul 00:25
7735a24
Compare
Choose a tag to compare

Patch Changes

  • #401 5cd9839 Thanks @dalechyn! - Fixed an issue with serializing typed data messages that have bigint fields.

[email protected]

08 Jul 23:47
d994a44
Compare
Choose a tag to compare

Minor Changes

  • #398 88b5361 Thanks @dalechyn! - Removed chainId property from the .signature handler response. See more.
    app.signature('/sign', (c) =>
      c.signTypedData({
    -   chainId: 'eip155:8543',
        /**/
      })

Patch Changes

  • #398 88b5361 Thanks @dalechyn! - Fixed a bug where Button.Signature would not set a correct post_url.