Skip to content

Commit

Permalink
Release 3.2.6
Browse files Browse the repository at this point in the history
- 修复 网速不显示的问题
- 修复 异步子线程任务可能出现奔溃的问题
  • Loading branch information
changsanjiang committed Jun 30, 2020
1 parent 442ba9a commit b494b5a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
Binary file not shown.
2 changes: 1 addition & 1 deletion SJVideoPlayer.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Pod::Spec.new do |s|
s.name = 'SJVideoPlayer'
s.version = '3.2.5'
s.version = '3.2.6'
s.summary = 'video player.'
s.description = 'https://github.com/changsanjiang/SJVideoPlayer/blob/master/README.md'
s.homepage = 'https://github.com/changsanjiang/SJVideoPlayer'
Expand Down
14 changes: 6 additions & 8 deletions SJVideoPlayer/SJVideoPlayer.m
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ - (void)dealloc {
}

+ (NSString *)version {
return @"v3.2.5";
return @"v3.2.6";
}

+ (instancetype)player {
Expand Down Expand Up @@ -90,13 +90,11 @@ - (instancetype)_init {
self = [super init];
if ( !self ) return nil;
[self _initializeSwitcher];
dispatch_async(dispatch_get_global_queue(0, 0), ^{
[self _initializeSwitcherObserver];
[self _initializeSettingsObserver];
[self _initializeAssetStatusObserver];
[self _initializeAppearManagerObserver];
[self _initializeReachbilityObserver];
});
[self _initializeSwitcherObserver];
[self _initializeSettingsObserver];
[self _initializeAssetStatusObserver];
[self _initializeAppearManagerObserver];
[self _initializeReachbilityObserver];
[self _updateCommonProperties];
return self;
}
Expand Down

0 comments on commit b494b5a

Please sign in to comment.