@pixelverse/strichjs-sdk 1.0.1 → 1.0.3

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
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.3] - 2023-03-30
4
+
5
+ ### Changed
6
+
7
+ - Not setting a duplicateInterval in the engine configuration will now lead to a default 750ms interval to be used.
8
+
9
+ ### Fixed
10
+
11
+ - Ensured compatibility with iOS 16.4, do not attempt to instantiate a WebGL context on an OffscreenCanvas.
12
+
13
+ ## [1.0.2] - 2023-03-23
14
+
15
+ ### Added
16
+
17
+ - Activated custom logo on overlay feature (Enterprise-only).
18
+
19
+ ### Fixed
20
+
21
+ - Added missing fallback to medium precision on devices which do not support WebGL high precision floats.
22
+
3
23
  ## [1.0.1] - 2023-03-20
4
24
 
5
25
  ### Fixed
package/dist/strich.d.ts CHANGED
@@ -159,6 +159,16 @@ export interface OverlayConfiguration {
159
159
  * @default true
160
160
  */
161
161
  showFlashlight?: boolean;
162
+ /**
163
+ * Override the STRICH logo displayed in the bottom-right corner with a custom image.
164
+ *
165
+ * The image is supplied as a URL (e.g. https://example.com/assets/overlay.png) or inline as a data URL
166
+ * (recommended, avoids network request). The image should have a transparent background (WebP or PNG format
167
+ * recommended) and a recommended size of 140x30 pixels.
168
+ *
169
+ * This is an enterprise-only capability.
170
+ */
171
+ customLogoSrc?: string;
162
172
  }
163
173
  /**
164
174
  * User feedback configuration