Releases: Chimeejs/chimee
Releases · Chimeejs/chimee
0.2.5
- fix proxy bug on IE
- support both
plugins
andplugin
on chimee - optimize error tips
- support
process.env.NODE_ENV
for code minify
0.2.4
- remove
nonextendable
on$plugins
and$pluginOrder
as
nonextendable will call [
Object.preventExtensions`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/preventExtensions) on dispatcher's plugins and order. Which will block dynamic plugin. So I remove it.
If you wish it return, I will try some other method, clone etc.
0.2.3
- fix silentLoad trigger play event bug
- optimize some error tips
0.2.2
- [bugfix] fix "unknown video error" on second times
$silentLoad
0.2.1
- [bugfix] fix critical bug. Double event bind on video, and forget to bind on wrapper and container
0.2.0
- support percentage on width and height
- We will trigger
fullScreen
event when you use$fullScreen
method - You can know is this chimee instance is fullscreen by
isFullScreen
- You can know which element of your instance is the fullscreen element by
fullScreenElement
- You can get
offsetHeight
,offsetLeft
,error
etc on chimee's instance. know more from here. - We support silentLoad which can let you do something like clarity switch.
- You can load source with different box now.
- You can custom your kernel through preset. This can do much on minify our code
- replace
type
withisLive
- remove
runtimeOrder
as we do not support flash in chimee
0.1.3
0.1.2
- [bugfix] fix chimee could not support multiple instance bug, because of bug on toxic-decorators
- change
crossorigin
andplaysinline
intocrossOrigin
andplaysInline
- [bugfix] make video property show the real video state
0.1.1
Chimee is a web video player
- It support multiple video stream including mp4, m3u8, flv etc
- It solve most of the compatibility issues including fullscreen, autoplay, inline playing etc.
What's more, it's also a component framework based on video element.
- It help us to split complex function into multiple plugins.
- For each plugin, they can operate the video element directly and easily.
- It will sort out the hierarchical relationship between plugins, which will keep us free from
z-index
problem. - It provides a variety of modules such as transparent plugin, penetrating plugin, inner plugin and outer plugins, which can cover most of the interative scenerios.
- It offer us convinient ways to communicate between plugins.
- It allow us to define high priority plugin, which is useful in making advertising plugin.
- It also support async plugin.