Skip to content
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
`chatRoomChangesStream()` in ChatManager for real-time chat room updates.
* **Feat**: [51](https://github.com/SimformSolutionsPvtLtd/chatview_connect/pull/51) Added
`onLoadMoreData()` and `loadOldReplyMessage()` in ChatManager to fetch older messages and replies.
* **Breaking**: [61](https://github.com/SimformSolutionsPvtLtd/chatview_connect/pull/61) Update package
versions and refactor voice recording settings

## 0.0.1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -383,11 +383,8 @@ class _ChatViewCustomChatBarState extends State<ChatViewCustomChatBar> {

if (!isRecording.value) {
await controller?.record(
sampleRate: voiceRecordingConfig.sampleRate,
bitRate: voiceRecordingConfig.bitRate,
androidEncoder: voiceRecordingConfig.androidEncoder,
iosEncoder: voiceRecordingConfig.iosEncoder,
androidOutputFormat: voiceRecordingConfig.androidOutputFormat,
recorderSettings:
voiceRecordingConfig.recorderSettings ?? const RecorderSettings(),
);
isRecording.value = true;
} else {
Expand Down
8 changes: 4 additions & 4 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ dependencies:
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.2
firebase_core: ^3.13.0
cloud_firestore: ^5.6.7
firebase_core: ^4.3.0
cloud_firestore: ^6.1.1
uuid: ^4.5.1
intl:
audio_waveforms: ^1.3.0
chatview: ^2.5.0
audio_waveforms: ^2.0.1
chatview: ^3.0.0

flutter_svg: ^2.1.0

Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ environment:
dependencies:
chatview_utils: ^3.0.0

cloud_firestore: ^5.6.7
firebase_storage: ^12.4.5
cloud_firestore: ^6.1.1
firebase_storage: ^13.0.5

flutter:
sdk: flutter
Expand Down
Loading