diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dbe56a4..33907369 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,18 @@ ## Changelog ### Version 6.0.0-alpha.4 + - Sample: Add react-native-video controls support [#2852](https://github.com/react-native-video/react-native-video/pull/2852) - Android: Switch Google's maven repository to default `google()` [#2860](https://github.com/react-native-video/react-native-video/pull/2860) - Android: Implement focusable prop so the video view can toggle whether it is focusable for non-touch devices [#2819](https://github.com/react-native-video/react-native-video/issues/2819) +- Fix iOS RCTSwiftLog naming collision [#2868](https://github.com/react-native-video/react-native-video/issues/2868) -### Version 6.0.0-alpha.3 -- fix ios build [#2854](https://gthub.com/react-native-video/react-native-video/pull/2854) +### Version 6.0.0-alpha3 + +- Fix ios build [#2854](https://github.com/react-native-video/react-native-video/pull/2854) ### Version 6.0.0-alpha.2 + - Upgrade ExoPlayer to 2.18.1 [#2846](https://github.com/react-native-video/react-native-video/pull/2846) - Feature add new APIs to query supported features of device decoder (widevine level & codec capabilities) on android [#2740](https://github.com/react-native-video/react-native-video/pull/2740) - Feature add support of subtitle styling on android [#2759](https://github.com/react-native-video/react-native-video/pull/2759) @@ -32,6 +36,7 @@ - Fix video endless loop when repeat set to false or not specified. [#2329](https://github.com/react-native-video/react-native-video/pull/2329) ### Version 6.0.0-alpha.0 + - Support disabling buffering [#2689](https://github.com/react-native-video/react-native-video/pull/2689) - Fix AudioFocus bug that could cause the player to stop responding to play/pause in some instances. [#2689](https://github.com/react-native-video/react-native-video/pull/2689) - Fix player crashing when it is being cleared. [#2689](https://github.com/react-native-video/react-native-video/pull/2689) diff --git a/ios/Video/RCTSwiftLog/RCTSwiftLog.h b/ios/Video/RCTVideoSwiftLog/RCTVideoSwiftLog.h similarity index 93% rename from ios/Video/RCTSwiftLog/RCTSwiftLog.h rename to ios/Video/RCTVideoSwiftLog/RCTVideoSwiftLog.h index 8f9deab7..f9978dc8 100644 --- a/ios/Video/RCTSwiftLog/RCTSwiftLog.h +++ b/ios/Video/RCTVideoSwiftLog/RCTVideoSwiftLog.h @@ -1,6 +1,6 @@ #import -@interface RCTSwiftLog : NSObject +@interface RCTVideoSwiftLog : NSObject + (void)error:(NSString * _Nonnull)message file:(NSString * _Nonnull)file line:(NSUInteger)line; + (void)warn:(NSString * _Nonnull)message file:(NSString * _Nonnull)file line:(NSUInteger)line; diff --git a/ios/Video/RCTSwiftLog/RCTSwiftLog.m b/ios/Video/RCTVideoSwiftLog/RCTVideoSwiftLog.m similarity index 93% rename from ios/Video/RCTSwiftLog/RCTSwiftLog.m rename to ios/Video/RCTVideoSwiftLog/RCTVideoSwiftLog.m index 4e153846..61a38b19 100644 --- a/ios/Video/RCTSwiftLog/RCTSwiftLog.m +++ b/ios/Video/RCTVideoSwiftLog/RCTVideoSwiftLog.m @@ -1,8 +1,8 @@ #import -#import "RCTSwiftLog.h" +#import "RCTVideoSwiftLog.h" -@implementation RCTSwiftLog +@implementation RCTVideoSwiftLog + (void)info:(NSString *)message file:(NSString *)file line:(NSUInteger)line { diff --git a/ios/Video/RCTSwiftLog/RCTSwiftLog.swift b/ios/Video/RCTVideoSwiftLog/RCTVideoSwiftLog.swift similarity index 83% rename from ios/Video/RCTSwiftLog/RCTSwiftLog.swift rename to ios/Video/RCTVideoSwiftLog/RCTVideoSwiftLog.swift index ec39d9b1..99ca8e8a 100644 --- a/ios/Video/RCTSwiftLog/RCTSwiftLog.swift +++ b/ios/Video/RCTVideoSwiftLog/RCTVideoSwiftLog.swift @@ -26,23 +26,23 @@ */ func RCTLogError(_ message: String, _ file: String=#file, _ line: UInt=#line) { - RCTSwiftLog.error(message, file: file, line: line) + RCTVideoSwiftLog.error(message, file: file, line: line) } func RCTLogWarn(_ message: String, _ file: String=#file, _ line: UInt=#line) { - RCTSwiftLog.warn(message, file: file, line: line) + RCTVideoSwiftLog.warn(message, file: file, line: line) } func RCTLogInfo(_ message: String, _ file: String=#file, _ line: UInt=#line) { - RCTSwiftLog.info(message, file: file, line: line) + RCTVideoSwiftLog.info(message, file: file, line: line) } func RCTLog(_ message: String, _ file: String=#file, _ line: UInt=#line) { - RCTSwiftLog.log(message, file: file, line: line) + RCTVideoSwiftLog.log(message, file: file, line: line) } func RCTLogTrace(_ message: String, _ file: String=#file, _ line: UInt=#line) { - RCTSwiftLog.trace(message, file: file, line: line) + RCTVideoSwiftLog.trace(message, file: file, line: line) } func DebugLog(_ message: String) {