Skip to content

Commit

Permalink
Merge pull request #29 from THEOplayer/release/v0.8.0
Browse files Browse the repository at this point in the history
Release/v0.7.1
  • Loading branch information
Jeroen-Veltmans authored Apr 16, 2024
2 parents 5989bdf + 09d5bd8 commit 8f16e82
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 0.7.1 (2024-04-16)

### Fixed

- Fixed an issue where the mute button sometimes did not update its icon after toggling.

## 0.7.0 (2024-04-11)

### Added
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theoplayer/react-native-ui",
"version": "0.7.0",
"version": "0.7.1",
"description": "A React Native UI for @theoplayer/react-native",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down
1 change: 1 addition & 0 deletions src/ui/components/button/MuteButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export class MuteButton extends PureComponent<MuteButtonProps, MuteButtonState>
private toggleMuted = () => {
const player = (this.context as UiContext).player;
player.muted = !player.muted;
this.setState({ muted: player.muted });
};

render() {
Expand Down

0 comments on commit 8f16e82

Please sign in to comment.