Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added release notes #1733

Merged
merged 2 commits into from
Mar 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions packages/hms_room_kit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@
| 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.16 - 2024-03-15

| Package | Version |
| -------------- | ------------------------------------------------------------------------------------------------------ |
| hms_room_kit | 1.0.16 |
| hmssdk_flutter | 1.9.13 |

### 🚀 Added

- Ability to join rooms directly without preview

Prebuilt now allows direct room joining without preview, customizable via the dashboard's "customize prebuilt" section.

Updated `hmssdk_flutter` package version to 1.9.13

## 1.0.15 - 2024-03-04

| Package | Version |
Expand Down
1 change: 0 additions & 1 deletion packages/hms_room_kit/lib/src/screen_controller.dart
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ class ScreenController extends StatefulWidget {
class _ScreenControllerState extends State<ScreenController> {
bool isPermissionGranted = false;
late HMSSDKInteractor _hmsSDKInteractor;
var store;
bool isLoading = true;
HMSConfig? roomConfig;
dynamic tokenData;
Expand Down
20 changes: 19 additions & 1 deletion packages/hmssdk_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,30 @@
| 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.9.13 - 2024-03-15

| Package | Version |
| -------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| hms_room_kit | 1.0.16 |
| hmssdk_flutter | 1.9.13 |

### ✨ Added

- Leave Room Immediately if App is Killed(iOS only)

- HMSSDK automatically triggers `leave` method call when the iOS application is terminated.

Updated to Android SDK 2.9.51 & iOS SDK 1.6.0

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


# 1.9.12 - 2024-03-04

| Package | Version |
| -------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| hms_room_kit | 1.0.15 |
| hmssdk_flutter | 1.9.12 |
| hmssdk_flutter | 1.9.12 |

### ✨ Added

Expand Down
Loading