diff --git a/Assets/APSMediaPlayer.bundle/Controls/fullscreen-exit.png b/Assets/APSMediaPlayer.bundle/Controls/fullscreen-exit.png index e3333886..b03e135b 100644 Binary files a/Assets/APSMediaPlayer.bundle/Controls/fullscreen-exit.png and b/Assets/APSMediaPlayer.bundle/Controls/fullscreen-exit.png differ diff --git a/Assets/APSMediaPlayer.bundle/Controls/fullscreen-exit@2x.png b/Assets/APSMediaPlayer.bundle/Controls/fullscreen-exit@2x.png index 9c6843be..aa1c88d8 100644 Binary files a/Assets/APSMediaPlayer.bundle/Controls/fullscreen-exit@2x.png and b/Assets/APSMediaPlayer.bundle/Controls/fullscreen-exit@2x.png differ diff --git a/Assets/APSMediaPlayer.bundle/Controls/fullscreen.png b/Assets/APSMediaPlayer.bundle/Controls/fullscreen.png index e4c0d4c6..52cea253 100644 Binary files a/Assets/APSMediaPlayer.bundle/Controls/fullscreen.png and b/Assets/APSMediaPlayer.bundle/Controls/fullscreen.png differ diff --git a/Assets/APSMediaPlayer.bundle/Controls/fullscreen@2x.png b/Assets/APSMediaPlayer.bundle/Controls/fullscreen@2x.png index fe4db9a5..aa1a32af 100644 Binary files a/Assets/APSMediaPlayer.bundle/Controls/fullscreen@2x.png and b/Assets/APSMediaPlayer.bundle/Controls/fullscreen@2x.png differ diff --git a/CHANGELOG.md b/CHANGELOG.md index ab073b49..7ea19f17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### 3.0.0 +VAST 4.1 and DAST support +Rewrote overlays to use Autolayout + ### 2.9.6 Preliminary VAST 4 support diff --git a/Docs/Blocks/APSMediaPlayerFinishBlock.html b/Docs/Blocks/APSMediaPlayerFinishBlock.html index ee20da29..be1d1e51 100644 --- a/Docs/Blocks/APSMediaPlayerFinishBlock.html +++ b/Docs/Blocks/APSMediaPlayerFinishBlock.html @@ -3,11 +3,11 @@ - + APSMediaPlayerFinishBlock Block Reference - +
@@ -59,22 +59,76 @@

-

+

APSMediaPlayerFinishBlock Block Reference

+
+ + + + + + + +
Declared inAPSMediaPlayer.h
Availabilityv1.7
+ + + + +

Block Definition

+

APSMediaPlayerFinishBlock

+ + +
+

The block to be executed when the current playlist is completed

+
+ + + +typedef void (^APSMediaPlayerFinishBlock) () + + + +
+

Discussion

+

The block to be executed when the current playlist is completed

+
+ + + + + +
+

Availability

+

v1.7

+
+ + + + + +
+

Declared In

+ APSMediaPlayer.h
+
+ + +
diff --git a/Docs/Blocks/APSThumbnailGeneratedBlock.html b/Docs/Blocks/APSThumbnailGeneratedBlock.html index ee20da29..267949ad 100644 --- a/Docs/Blocks/APSThumbnailGeneratedBlock.html +++ b/Docs/Blocks/APSThumbnailGeneratedBlock.html @@ -3,11 +3,11 @@ - + APSThumbnailGeneratedBlock Block Reference - +
@@ -59,22 +59,68 @@

-

+

APSThumbnailGeneratedBlock Block Reference

+
+ + + + +
Declared inAPSTypes.h
+ + + + +

Block Definition

+

APSThumbnailGeneratedBlock

+ + +
+

A block that is used by the thumbnail generation methods to asynchronously return an image

+
+ + + +typedef void (^APSThumbnailGeneratedBlock) (UIImage *thumbnail) + + + +
+

Discussion

+

A block that is used by the thumbnail generation methods to asynchronously return an image

+
+ + + + + + + + + +
+

Declared In

+ APSTypes.h
+
+ + +
diff --git a/Docs/Classes/APSAVPlayer.html b/Docs/Classes/APSAVPlayer.html index ee20da29..e13edaff 100644 --- a/Docs/Classes/APSAVPlayer.html +++ b/Docs/Classes/APSAVPlayer.html @@ -3,11 +3,11 @@ - + APSAVPlayer Class Reference - +
@@ -43,10 +43,98 @@

@@ -59,22 +147,1713 @@

-

+

APSAVPlayer Class Reference

+
+ + + + + + + + + + +
Inherits fromNSObject
Conforms toAPSMediaPlayerProtocol
KRAdapter
MPMediaPlayback
Declared inAPSAVPlayer.h
APSAVPlayer.m
+ + +
+ +

Overview

+

The APSAVPlayer is a media backend renderer that handles playback via the native AVPlayer classes. See APSMediaPlayerProtocol for more details.

+ +

To use, set up with the player shared instance:

+
    [sharedInstance setBackendPlayerClass:[APSAVPlayer class]];
+
+
+ - -
+ + +
+ + -