Skip to content

Releases: wevm/frog

[email protected]

10 Sep 11:19
1475c7e
Compare
Choose a tag to compare

Patch Changes

  • #484 34cfb2a Thanks @dalechyn! - Fixed an issue with parsing Composer Action data when verified is false.

  • #483 84c4330 Thanks @dalechyn! - Fixed an issue where min/max height/width would not handle custom values.

[email protected]

29 Aug 15:13
628178f
Compare
Choose a tag to compare

Patch Changes

  • #478 0f482cd Thanks @dalechyn! - Fixed an issue where getFrameMetadata would return escaped symbols.

[email protected]

22 Aug 23:20
850e8f5
Compare
Choose a tag to compare

Minor Changes

  • #476 4539665 Thanks @dalechyn! - Breaking Change: parent and channelKey are deprecated in ComposerActionMessage

    import { postComposerActionMessage } from 'frog/next'
    
    postComposerActionMessage({
      type: "createCast",
      data: {
        cast: {
          embeds: [/*...*/];
          text: 'Hi';
    -     parent: '0x...'
    -     channelKey: '...'
        };
      };
    })
    import { postComposerCreateCastActionMessage } from 'frog/next'
    
    postComposerCreateCastActionMessage({
      embeds: [/*...*/];
      text: 'Hi';
    - parent: '0x...'
    - channelKey: '...'
    })

    See More.

[email protected]

13 Aug 21:12
d06102f
Compare
Choose a tag to compare

Patch Changes

  • #472 8529049 Thanks @dalechyn! - Fixed an issue where a frame without any fonts passed would crash the render process.

[email protected]

10 Aug 22:38
88f1b89
Compare
Choose a tag to compare

Minor Changes

  • #466 d4899ab Thanks @dalechyn! - Breaking Change: Renamed exported Context type to FrameBaseContext.
    Fixed an issue where frame message was parsed incorrectly and was expecting cast_id in Composer Action Handler.
    Exported previously forgotten types.

Patch Changes

  • #471 24d3bec Thanks @dalechyn! - Fixed an issue where defining fonts in multiple places would override each other. Now all defined fonts are grouped altogether.

[email protected]

01 Aug 21:51
e0b2e2c
Compare
Choose a tag to compare

Patch Changes

  • #457 56f4be4 Thanks @dalechyn! - Fixed an issue where verifyOrigin constructor parameter was not populated in some of the handlers.

[email protected]

01 Aug 15:55
9905e32
Compare
Choose a tag to compare

Patch Changes

  • #455 e1c8689 Thanks @dalechyn! - Fixed an issue where basePath was not provided to the callback used in initialState parameter.

[email protected]

26 Jul 21:14
e5a1d78
Compare
Choose a tag to compare

Patch Changes

  • #449 0fb3dee Thanks @dalechyn! - Added initialState as a fallback to c.previousState in handlers that depend on the state but cannot retrieve one.

[email protected]

26 Jul 17:45
df0d913
Compare
Choose a tag to compare

Patch Changes

  • #450 368a2a9 Thanks @dalechyn! - Fixed an issue where using Button.Reset would lead to "Cannot destructure property 'property' of 'intent.props' as it is undefined." error.

[email protected]

26 Jul 15:14
41218bd
Compare
Choose a tag to compare

Patch Changes