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
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Changelog

## 0.4.1-beta.1

### Features

- **ios:** Expose explicit audio session controls (configuration options for audio session category, mode, and options)
- **setProperty** for real-time parameter updates on both iOS and Android
- **getBundlePath** and **getAudioInfo** accessors on iOS; **getBundlePath** and **setProperty** on Android bridge
- **Runtime events** — poll `processQueuedEvents` and emit runtime events to JavaScript on both platforms

### Bug Fixes

- **ios:** Configure `AVAudioSession` before engine init to prevent buffer mismatch
- **ios:** Avoid invalid audio session active check
- **ios:** Use raw value `0x4` for `allowBluetoothHFP` option
- **android:** Handle audio interruptions, config changes, and channel count safety
- **android:** Improve audio device recovery after focus loss
- **android:** Lock `runtimeMutex` in `loadAudioResource`/`unloadAudioResource` to prevent heap corruption
- **android:** Add mutex to prevent heap corruption from concurrent runtime access
- Defer audio engine restart on config change to prevent RPC deadlock

## 0.4.0

- VFS audio resource loading and upgrade to Elementary v4
- New architecture support

## 0.3.0

- Initial public release

## 0.2.0 - 0.2.2

- Early development releases
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-elementary",
"version": "0.2.2",
"version": "0.4.1-beta.1",
"description": "Use Elementary Audio in your React Native app",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down
Loading