8000 release: 0.12.1. · flutter-webrtc/flutter-webrtc@0866010 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0866010

Browse files
committed
release: 0.12.1.
1 parent c4bd0ae commit 0866010

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Changelog
22

33
--------------------------------------------
4+
[0.12.1] - 2024-10-21
5+
6+
* [web] fix: add stub WebRTC.initialize for web.
7+
* [Docs] Fixing proguard rules link (#1686)
8+
* [iOS/Android] feat: support unprocessed audio (#825)
9+
10+
[0.12.0+hotfix.2] - 2024-10-20
11+
412
[0.12.0+hotfix.1] - 2024-10-18
513

614
* [macOS] fix compilation error for macOS.

lib/src/web/utils.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,7 @@ class WebRTC {
1818
static Future<T?> invokeMethod<T, P>(String methodName,
1919
[dynamic param]) async =>
2020
throw UnimplementedError();
21+
22+
static Future<void> initialize({Map<String, dynamic>? options}) async =>
23+
throw UnimplementedError('initialize is not supported on web');
2124
}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_webrtc
22
description: Flutter WebRTC plugin for iOS/Android/Destkop/Web, based on GoogleWebRTC.
3-
version: 0.12.0+hotfix.1
3+
version: 0.12.1
44
homepage: https://github.com/cloudwebrtc/flutter-webrtc
55
environment:
66
sdk: '>=3.3.0 <4.0.0'

0 commit comments

Comments
 (0)
0