Skip to content

Releases: livepeer/ui-kit

@livepeer/react-native@1.0.0-next.0

01 Dec 20:10
14dde6d
Compare
Choose a tag to compare
Pre-release

Major Changes

  • cc4f4e8 Thanks @0xcadams! - Feature: Added @livepeer/react-native package with all hooks from @livepeer/core-react, and Player based on expo-av and controls on react-native-svg.

    This also includes metrics reporting for the Player and theming across the components.

Minor Changes

  • cc4f4e8 Thanks @0xcadams! - Refactor: added @livepeer/core-react package which includes all cross-environment hooks, utilities, and types. These are exported as usePlayer, useControlsContainer, etc.

Patch Changes

  • Updated dependencies [cc4f4e8, cc4f4e8, cc4f4e8]:
    • livepeer@1.5.0-next.0
    • @livepeer/core-react@0.1.0-next.0

@livepeer/react@1.5.5

23 Nov 21:28
e438365
Compare
Choose a tag to compare

Patch Changes

  • #161 bf67833 Thanks @0xcadams! - Feature: added fallback to play directly from IPFS in the Player.

    export type PlayerProps = {
      ...
      autoUrlUpload?:
        | boolean
        | { fallback: true; ipfsGateway?: string; arweaveGateway?: string };
      ...
    };

livepeer@1.4.3

21 Nov 21:37
4c449cd
Compare
Choose a tag to compare

Patch Changes

  • #158 d89613e Thanks @0xcadams! - Fix: fixed a bug with the same file not being able to be uploaded twice by the same client - reverted changes to the Tus fingerprint.

@livepeer/react@1.5.4

21 Nov 21:37
4c449cd
Compare
Choose a tag to compare

Patch Changes

  • #158 d89613e Thanks @0xcadams! - Fix: fixed a bug with the same file not being able to be uploaded twice by the same client - reverted changes to the Tus fingerprint.

  • Updated dependencies [d89613e]:

    • livepeer@1.4.3

@livepeer/react@1.5.3

18 Nov 16:00
01934c6
Compare
Choose a tag to compare

Patch Changes

  • #154 86a30f0 Thanks @0xcadams! - Fix: fixed the autoUrlUpload in the Player to fix multiple requests when attempting to automatically upload an asset.

livepeer@1.4.2

15 Nov 18:38
7f66c24
Compare
Choose a tag to compare

Patch Changes

  • 3487d98 Thanks @0xcadams! - Fix: fixed a bug with network timeout not triggering a <Player /> reload when using hls.js.

@livepeer/react@1.5.2

15 Nov 18:38
7f66c24
Compare
Choose a tag to compare

Patch Changes

  • 3487d98 Thanks @0xcadams! - Fix: fixed a bug with network timeout not triggering a <Player /> reload when using hls.js.

  • Updated dependencies [3487d98]:

    • livepeer@1.4.2

livepeer@1.4.1

10 Nov 19:11
215bd27
Compare
Choose a tag to compare

Patch Changes

  • #145 3620666 Thanks @suhailkakar! - Fix: fixed the behaviour that caused the video to pause when a user touched it on a mobile device without the controls being shown. The video now pauses on the second touch (after the controls are shown).

  • 825b25c Thanks @0xcadams! - Fix: fixed control state to use storage from the client.

@livepeer/react@1.5.1

10 Nov 19:11
215bd27
Compare
Choose a tag to compare

Patch Changes

  • #144 34af303 Thanks @suhailkakar! - Fix: rounded the duration to 1:00 instead of 0:60.

    When a video is 59.9 seconds long, the duration is rounded to 1:00 instead of saying 00:60.

  • #145 3620666 Thanks @suhailkakar! - Fix: fixed the behaviour that caused the video to pause when a user touched it on a mobile device without the controls being shown. The video now pauses on the second touch (after the controls are shown).

  • 825b25c Thanks @0xcadams! - Fix: fixed control state to use storage from the client.

  • Updated dependencies [3620666, 825b25c]:

    • livepeer@1.4.1

livepeer@1.4.0

09 Nov 02:42
6611700
Compare
Choose a tag to compare

Minor Changes

  • #102 0ea4ec7 Thanks @suhailkakar! - Feature: Add support for multiple files at once using useCreateAsset.

    You can upload multiple assets at once by passing an array of files to the mutate function. In return you will get an array of uploaded assets.

Patch Changes

  • #141 dc79b20 Thanks @0xcadams! - Fix: fixed the prerendering query when undefined is return in getStaticProps.