All Versions
14
Latest Version
Avg Release Cycle
51 days
Latest Release
2037 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v3.4.0 Changes
August 18, 2019๐ Features:
- โ Add support for
preventsDisplaySleepDuringVideoPlayback
configurability to not override device auto-lock settings
- โ Add support for
-
v3.3.0 Changes
April 14, 2019๐ Features:
- ๐ Swift 5 support
-
v3.2.0 Changes
February 18, 2019๐ Features:
- ๐ง make
videoGravity
configurable. - โ add caching for remote URLs (by danibachar).
- โ add thumbnail image (by danibachar).
- ๐ง make
-
v3.1.0 Changes
October 23, 2018(2018-10)
- โก๏ธ Updated to Swift 4.2
-
v3.0.0 Changes
February 27, 2018(2018-02-26)
๐ฅ BREAKING CHANGES:
- โ Removed support for passing in multiple videos to play one after another
- ๐ Renamed
alpha
todarkness
- โ Removed non-throwing
play()
. Use the throwingplay()
instead.
๐ Features:
- โ Added a singleton called
shared
. Now users don't need to retain an instance ofVideoBackground
to play a video.- Users can still create new instances if needed, i.e. if needed to play multiple videos simultaneously.
- โ Add support for playing video from a local or remote URL
- โ Add APIs for pause, restart, resume, darkness, isMuted, & willLoopVideo
- ๐ Make
playerLayer
public to allow advanced control and customization - โ Add
setAudioSessionAmbient
toplay
. Set totrue
by default.
๐ Fixes:
- โ Add clean up code to
play()
, so multiple calls to it should work smoothly
-
v2.1.1
February 20, 2018 -
v2.1.0 Changes
February 19, 2018(2018-02-19)
- โ Added a singleton called
shared
. Now users don't need to retain an instance ofVideoBackground
to play a video.- Users can still create new instances if needed, i.e. if they needed to play multiple videos simultaneously.
- โ Added throwing APIs that throw a
videoNotFound
error that returns the video name and type in question. - โ Added deprecation warning for old API.
- โ Added new public struct
VideoInfo
that contains a video's name and type. - โ Added new API that takes in an array of
VideoInfo
, and plays them in sequence. - โ Added some clean up code that gets called on each play(), in an attempt to reset state in the event of multiple calls to
play()
.
- โ Added a singleton called
-
v2.0.4 Changes
February 16, 2018(2018-02-16)
- ๐ Fixed layout issues for alpha overlay when device orientation changed
-
v2.0.3 Changes
February 15, 2018(2018-02-14)
- ๐ Fixed layout issues when device orientation changed
- ๐ Fixed issues with images in README not showing up in Cocoapods/Jazzy docs
-
v2.0.2 Changes
February 14, 2018(2018-02-14)
- โ Added observer to handle application state transition back to foreground