Skip to content

Latest commit

 

History

History
104 lines (79 loc) · 3.03 KB

CHANGES.md

File metadata and controls

104 lines (79 loc) · 3.03 KB

Changes

0.4.0

  • 10348c0 Add plete-with-fetch-and-abort.js, a convenience for using Plete with fetch and AbortController.

Released on 2020-02-11.

0.3.2

  • e842672 Rename main.js to plete.js
  • cce5321 Rename main.css to plete.css
  • 353f21b Fix missing main.css in dev-mode

    When running in dev mode, index.html would load up the main.css from the dist folder.

    The dist/main.css file would only exist, if the build script had been run previously.

    That shouldn't be necessary for development. Also, loading it from dist/ would mean that it could get out of date.

    Since the http-server part of the start script is serving up the entire repository from the root, we can use main.css from lib/ directly.

  • bf0cea4 Remove cruft from CHANGES.md

Released on 2020-01-24.

0.3.1

  • f557a0d Fix invalid escaping in filter

    The fix applied in 23e0cea57c6484e9d1a148ed58e3644ccbc3ba29 ended up breaking the filtering when dataSrc is an array of strings.

    Given ["Denmark", "Germany", "Spain", "Sweden", "United Kingdom"] it would not return ["Denmark"] for a query of "Den".

    The solution is to use a battle hardened escaping function, from:

    https://stackoverflow.com/a/3561711

Released on 2020-01-23.

0.3.0

  • 37015f1 Add support for cancellation

Released on 2020-01-21.

0.2.3

  • 23e0cea Fix #6: escape input string on local filter

Released on 2020-01-08.

0.2.2

  • 57eca5f Add keywords to package.json

    This should help people find it easier

  • b33c888 Fix typo in README

Released on 2020-01-05.

0.2.1

  • 19baf0a Add links to documentation site
  • b18099c Fix broken test

    .classList is an object, not a string

Released on 2020-01-05.

0.2.0

0.1.0

  • Initial version