react-native-theoplayer 7.7.0 → 7.7.1
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
|
@@ -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
|
+
## [7.7.1] - 24-07-29
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Fixed an issue on tvOS where native cache functionality was not excluded correctly resulting in build errors.
|
|
13
|
+
|
|
8
14
|
## [7.7.0] - 24-07-25
|
|
9
15
|
|
|
10
16
|
### Added
|
|
@@ -75,6 +75,7 @@ class THEOplayerRCTSourceDescriptionBuilder {
|
|
|
75
75
|
return (nil, nil)
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
+
#if os(iOS)
|
|
78
79
|
if let metadataData = sourceData[SD_PROP_METADATA] as? [String:Any],
|
|
79
80
|
let cachingTaskId = metadataData[SD_PROP_METADATA_CACHINGTASK_ID] as? String {
|
|
80
81
|
// this is a MediaCache src, so fetch the original SourceDescription from the MediaCache
|
|
@@ -85,6 +86,7 @@ class THEOplayerRCTSourceDescriptionBuilder {
|
|
|
85
86
|
return (foundTask.source, nil)
|
|
86
87
|
}
|
|
87
88
|
}
|
|
89
|
+
#endif
|
|
88
90
|
|
|
89
91
|
var typedSources: [TypedSource] = []
|
|
90
92
|
// case: array of source objects
|