Skip to content

Releases: conversejs/skeletor

v0.0.8

15 Feb 13:34
v0.0.8
Compare
Choose a tag to compare

v0.0.7

08 Apr 09:18
v0.0.7
Compare
Choose a tag to compare

Full Changelog: v0.0.6...v0.0.7

v0.0.6

08 Apr 08:50
v0.0.6
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.0.4...v0.0.6

Version 0.0.4 - 2021-05-12

12 May 09:00
Compare
Choose a tag to compare

Upgrade to lit 2.0.0-rc.2

Version 0.0.3 - 2021-04-28

12 May 09:02
Compare
Choose a tag to compare
  • Create the ElementView, which is like a Backbone View but extends
    HTMLElement and is therefore also a custom element or web component.
    /home/kalie/src/converse.prosody/src/converse.js/src/headless/core.js: * @Property {object} converse.env._ - The instance of lodash-es used by Converse.
  • Allow writes to the client-side store to be batched (via mergebounce).
    This is particularly useful for IndexedDB, which has a very slow writing speed.
    To enabled batched writes, pass in true for the 3rd parameter of the
    Storage constructor.

Version 0.0.2 - 2020-09-18

18 Sep 07:45
v0.0.2
Compare
Choose a tag to compare

Initial fork from Backbone

  • Removes the dependency on jQuery
  • Instead of the render method Views can have a toHTML method which must return a
    lit-html TemplateResult.
  • Replaces underscore with lodash
  • Imports lodash methods individually to allow for tree-shaking
  • Uses the native browser API instead of lodash
  • Drops support for older browsers (including IE) and uses ES6+ language features
  • Splits models, views and collections into separate modules
  • Adds a new ElementView class, which is a like a Backbone View, but doubles
    as an instance of HTMLElement and can be used to register a custom element or
    web-component.