Skip to content

Commit

Permalink
updated Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ygit committed Sep 15, 2023
1 parent f15d3d3 commit a2d20a2
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 2 deletions.
18 changes: 18 additions & 0 deletions packages/hms_room_kit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# Latest Versions

| Package | Version |
| ------------------| --------------------------------------------------------------------------------------------------------- |
| hms_room_kit | [![Pub Version](https://img.shields.io/pub/v/hms_room_kit)](https://pub.dev/packages/hms_room_kit) |
| hmssdk_flutter | [![Pub Version](https://img.shields.io/pub/v/hmssdk_flutter)](https://pub.dev/packages/hmssdk_flutter) |


## 1.0.0 - 2023-09-15

### 🚀 Added

- Equal Prominence Layout
- Active Speaker Sorting
- Newly Designed Header and Footer
- Inset Tile for Local Peer
And much more. Take it for a spin!

## 0.0.4 - 2023-08-01

- Fixed theming issues
Expand Down
37 changes: 37 additions & 0 deletions packages/hmssdk_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,40 @@
# Latest Versions

| Package | Version |
| ------------------| --------------------------------------------------------------------------------------------------------- |
| hms_room_kit | [![Pub Version](https://img.shields.io/pub/v/hms_room_kit)](https://pub.dev/packages/hms_room_kit) |
| hmssdk_flutter | [![Pub Version](https://img.shields.io/pub/v/hmssdk_flutter)](https://pub.dev/packages/hmssdk_flutter) |


## 1.8.0 - 2023-09-15

### Added

- Added `previewForRole` & `cancelPreview` APIs to preview the audio / video of a particular role before changing into the new Role.
```dart
// preview video of a particular role
await hmsSDK.previewForRole(role: "viewer-on-stage");
// cancel preview
await hmsSDK.cancelPreview();
```

Learn more about Change Role [here](https://www.100ms.live/docs/flutter/v2/how-to-guides/interact-with-room/peer/change-role)

### Changed

- Starting HLS Streaming will now return an appropriate `HMSException` when any error happens to start the streaming.
```dart
Future<HMSException?> startHlsStreaming(
{HMSHLSConfig? hmshlsConfig,
HMSActionResultListener? hmsActionResultListener})
```

Updated to Android SDK 2.7.6 & iOS SDK 0.9.12

**Full Changelog**: [1.7.5...1.8.0](https://github.com/100mslive/100ms-flutter/compare/1.7.5...1.8.0)


## 1.7.5 - 2023-08-18

Bug fixes and performance improvements
Expand Down
4 changes: 2 additions & 2 deletions packages/hmssdk_flutter/example/ExampleAppChangelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ https://github.com/100mslive/100ms-flutter/pull/1557

- Updated to Android SDK version to 2.7.3 and iOS SDK version to 0.9.11

Room Kit: 0.2.0
Room Kit: 1.0.0
Core SDK: 1.8.0
Android SDK: 2.7.5
Android SDK: 2.7.6
iOS SDK: 0.9.12

0 comments on commit a2d20a2

Please sign in to comment.