Skip to content

Releases: Chimeejs/chimee

0.2.5

05 Aug 14:46
Compare
Choose a tag to compare
0.2.5 Pre-release
Pre-release
  • fix proxy bug on IE
  • support both plugins and plugin on chimee
  • optimize error tips
  • support process.env.NODE_ENV for code minify

0.2.4

02 Aug 07:49
Compare
Choose a tag to compare
0.2.4 Pre-release
Pre-release
  • 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

02 Aug 04:57
Compare
Choose a tag to compare
0.2.3 Pre-release
Pre-release
  • fix silentLoad trigger play event bug
  • optimize some error tips

0.2.2

31 Jul 11:22
Compare
Choose a tag to compare
0.2.2 Pre-release
Pre-release
  • [bugfix] fix "unknown video error" on second times $silentLoad

0.2.1

31 Jul 03:59
Compare
Choose a tag to compare
0.2.1 Pre-release
Pre-release
  • [bugfix] fix critical bug. Double event bind on video, and forget to bind on wrapper and container

0.2.0

29 Jul 11:51
Compare
Choose a tag to compare
0.2.0 Pre-release
Pre-release
  • 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 with isLive
  • remove runtimeOrder as we do not support flash in chimee

0.1.3

25 Jul 07:50
Compare
Choose a tag to compare
0.1.3 Pre-release
Pre-release

0.1.2

24 Jul 11:21
Compare
Choose a tag to compare
0.1.2 Pre-release
Pre-release
  • [bugfix] fix chimee could not support multiple instance bug, because of bug on toxic-decorators
  • change crossorigin and playsinline into crossOrigin and playsInline
  • [bugfix] make video property show the real video state

0.1.1

18 Jul 06:57
Compare
Choose a tag to compare
0.1.1 Pre-release
Pre-release

Chimee is a web video player

  1. It support multiple video stream including mp4, m3u8, flv etc
  2. 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.

  1. It help us to split complex function into multiple plugins.
  2. For each plugin, they can operate the video element directly and easily.
  3. It will sort out the hierarchical relationship between plugins, which will keep us free from z-index problem.
  4. 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.
  5. It offer us convinient ways to communicate between plugins.
  6. It allow us to define high priority plugin, which is useful in making advertising plugin.
  7. It also support async plugin.