@pixelverse/strichjs-sdk 1.7.2 → 1.7.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,25 @@
2
2
 
3
3
  The structure of this file follows the recommendations from: https://keepachangelog.com/en/1.1.0/
4
4
 
5
+ ## [1.7.4] - 2025-04-28
6
+
7
+ ### Added
8
+
9
+ - Added `StrichSDK.setAudioImpl()` function to explicitly set the audio implementation to be used for audible feedback. If not set (the default), the SDK will automatically choose an appropriate one depending on the runtime context and capabilities.
10
+
11
+ ### Fixed
12
+
13
+ - Added a workaround for an intermittent issue with iOS PWAs, where a Web Audio context would remain silent after the PWA returned to foreground. We now automatically fall back to an HTML5 Audio element for PWAs on iOS.
14
+ - Explicitly set flashlight icon size to avoid application styles bleeding in.
15
+
16
+ ## [1.7.3] - 2025-04-10
17
+
18
+ ### Added
19
+
20
+ - It is now possible to provide an object instead of a boolean for the audio feedback configuration.
21
+ - The new audio feedback configuration object has an `enabled` property with the same semantics as the naked boolean option.
22
+ - The type of the AudioSession to use for emitting the beep can now be set using the `audioSessionType` property of the audio feedback configuration object. Setting the value to `null` will opt out of setting the AudioSession type. The value `transient` is still used as the default.
23
+
5
24
  ## [1.7.2] - 2025-03-27
6
25
 
7
26
  ### Fixed