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

release v1.3.4 #142

Merged
merged 4 commits into from
Jun 13, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 1.3.4

- Fixes error [#137](https://github.com/AgoraIO-Community/VideoUIKit-Flutter/issues/137)
- Setting RTC to v6.1.0 and RTM to v1.5.0

## 1.3.3

Expand Down
6 changes: 3 additions & 3 deletions lib/models/agora_rtm_mute_request.dart
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class AgoraUIKit {
String platform = platformStr();

String framework = "flutter";
String version = "1.3.3";
String version = "1.3.4";

AgoraUIKit.fromJson(Map<String, dynamic> json)
: platform = json['platform'],
Expand All @@ -116,8 +116,8 @@ class AgoraUIKit {
/// Class to store and share the Agora version for RTC and RTM
class AgoraVersions {
AgoraVersions();
static String staticRTM = '1.1.1';
static String staticRTC = '5.2.0';
static String staticRTM = '1.5.0';
static String staticRTC = '6.1.0';
String rtm = AgoraVersions.staticRTM;
String rtc = AgoraVersions.staticRTC;

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: agora_uikit
description: Flutter plugin to simply integrate Agora Video Calling or Live
Video Streaming to your app with just a few lines of code.
version: 1.3.3
version: 1.3.4
homepage: https://www.agora.io/en/
repository: https://github.com/AgoraIO-Community/VideoUIKit-Flutter

Expand Down