react-native-theoplayer 10.9.0 → 10.10.0
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 +6 -0
- package/README.md +1 -0
- package/ios/THEOplayerRCTView.swift +4 -2
- package/lib/commonjs/manifest.json +1 -1
- package/lib/module/manifest.json +1 -1
- package/package.json +1 -1
- package/src/manifest.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.1.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [10.10.0] - 26-02-17
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Fixed an issue on iOS where the onPlayerStateSync callback was not called from the main thread.
|
|
13
|
+
|
|
8
14
|
## [10.9.0] - 26-01-29
|
|
9
15
|
|
|
10
16
|
### Fixed
|
package/README.md
CHANGED
|
@@ -143,6 +143,7 @@ functionality. Currently, the following connectors are available:
|
|
|
143
143
|
| Adobe Heartbeat analytics using the Media Collections API | [](https://www.npmjs.com/package/%40theoplayer%2Freact-native-analytics-adobe) | [`Adobe`](https://github.com/THEOplayer/react-native-connectors/tree/main/adobe) |
|
|
144
144
|
| Adobe Media Edge analytics | [](https://www.npmjs.com/package/%40theoplayer%2Freact-native-analytics-adobe) | [`Adobe Edge`](https://github.com/THEOplayer/react-native-connectors/tree/main/adobe-edge) |
|
|
145
145
|
| Agama analytics | [](https://www.npmjs.com/package/%40theoplayer%2Freact-native-analytics-agama) | [`Agama`](https://github.com/THEOplayer/react-native-connectors/tree/main/agama) |
|
|
146
|
+
| Bitmovin analytics | [](https://www.npmjs.com/package/%40theoplayer%2Freact-native-analytics-bitmovin) | [`Bitmovin`](https://github.com/THEOplayer/react-native-connectors/tree/main/bitmovin) |
|
|
146
147
|
| Comscore analytics | [](https://www.npmjs.com/package/%40theoplayer%2Freact-native-analytics-comscore) | [`Comscore`](https://github.com/THEOplayer/react-native-connectors/tree/main/comscore) |
|
|
147
148
|
| Conviva analytics | [](https://www.npmjs.com/package/%40theoplayer%2Freact-native-analytics-conviva) | [`Conviva`](https://github.com/THEOplayer/react-native-connectors/tree/main/conviva) |
|
|
148
149
|
| Engage | [](https://www.npmjs.com/package/%40theoplayer%2Freact-native-engage) | [`Engage`](https://github.com/THEOplayer/react-native-connectors/tree/main/engage) |
|
|
@@ -296,8 +296,10 @@ public class THEOplayerRCTView: UIView {
|
|
|
296
296
|
}
|
|
297
297
|
|
|
298
298
|
public func syncPlayerState() {
|
|
299
|
-
|
|
300
|
-
forwardedPlayerStateSync
|
|
299
|
+
DispatchQueue.main.async {
|
|
300
|
+
if let forwardedPlayerStateSync = self.onNativePlayerStateSync {
|
|
301
|
+
forwardedPlayerStateSync(["state": self.collectPlayerStatePayload()])
|
|
302
|
+
}
|
|
301
303
|
}
|
|
302
304
|
|
|
303
305
|
// trigger different feature managers to reflect the current state
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"10.
|
|
1
|
+
{"version":"10.10.0","buildDate":"2026-02-17T17:16:32.279Z"}
|
package/lib/module/manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"10.
|
|
1
|
+
{"version":"10.10.0","buildDate":"2026-02-17T17:16:32.279Z"}
|
package/package.json
CHANGED
package/src/manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"10.
|
|
1
|
+
{"version":"10.10.0","buildDate":"2026-02-17T17:16:32.279Z"}
|