Skip to content

Releases: Tencent/omi

v5.0.5

29 Nov 03:54
Compare
Choose a tag to compare
  • [Fix] fix host
  • [Add] supports defineElement for amd env, it's the same as define

v5.0.4

27 Nov 12:06
Compare
Choose a tag to compare
  • [Fix] fix getHost method

v5.0.3

27 Nov 01:27
Compare
Choose a tag to compare
  • [Optimization] Check whether the content of css has changed

v5.0.2

26 Nov 03:33
Compare
Choose a tag to compare
  • [Fix] fix omi.d.ts error

v5.0.1

26 Nov 02:34
Compare
Choose a tag to compare
  • [Fix] fix omi.d.ts error

v5.0.0

25 Nov 14:08
Compare
Choose a tag to compare
  • Made MVVM Simple.

v4.1.7

24 Nov 01:53
Compare
Choose a tag to compare
  • Fix render array. diff first, not remove and append

v4.1.6

20 Nov 10:57
Compare
Choose a tag to compare
  • [Add] Supports receiveProps lifecycle method, when parent element re-render will trigger it.

omi v4.1.5 - solve the problem of having children attribute but not u…

18 Nov 02:41
Compare
Choose a tag to compare
  • [Fix] Solve the problem of having children attribute but not updating it

v4.1.4

17 Nov 01:00
Compare
Choose a tag to compare
  • [Fix] Solving Recursive update problem

Before this version, it will lead to infinite recursion by this way:

beforeRender() {
  this.data.a = { b: 1 }
}

or

render() {
  this.data.b = Math.random()
  ...
}

It's fixed now! It's not infinite recursion.