Skip to content

Releases: bitovi/funcunit

Patch to remove the jQuery Not Defined js SEVERE

10 Apr 19:17
Compare
Choose a tag to compare

A change in late 2018 caused FuncUnit to generate a series of JQuery Not Defined errors when it was attaching jQuery to the window object.

This was not caught because we do not have a post-package test phase, and the problem was in global.js .

Add dist folder on npm

15 Jan 19:24
Compare
Choose a tag to compare

This includes dist folder in thenpm release.
#233

Brings jQuery into core and removes it as a dep

01 Nov 19:02
Compare
Choose a tag to compare

Added support for HTML5 drag & drop, more accurate events for jQuery drag & drop

03 Nov 17:21
Compare
Choose a tag to compare

This release features big changes for drag and drop support: FuncUnit will now issue drag events after the initial mousedown/pointerdown event for any elements with the HTML5 "draggable" attribute enabled, per the w3c standard. FuncUnit will also issue the full range of Drag events ensuring that event generation accuracy is very close to full user-emulation.

We have also significantly increased the accuracy of event generation for jQuery drag and drop, sending almost the full range of events that a user would. (We don't send MouseOut / PointerOut because of some variability of when that event should be generated, but this is something we can look into for the future).

Any non-HTML5 drag and drop will default to the jQuery style of event generation automatically. So if you're using a framework that doesn't use jQuery, but drag and drop is triggered by similar events, you will receive upgraded event generation for that too automatically.

If there are any questions or problems, please let me know in Gitter. Thanks!

v3.4.4

24 Oct 15:51
Compare
Choose a tag to compare

dist folder now included with the package on npm #221 (thank you @mckenna!)

v3.4.3

16 Oct 18:51
Compare
Choose a tag to compare

No significant bugfixes or changes.

Diff: v3.4.2...v3.4.3

Strict QUnit Two

28 Jun 19:02
Compare
Choose a tag to compare

Release v3.4.0 added support for QUnit 2, but released using a detection strategy that broke in strict mode. This patch release uses a strict mode safe strategy.

Missed Caller

28 Jun 18:59
Compare
Choose a tag to compare

This patch release attempted to fix problems introduced in v3.4.0 regarding the new QUnit2 support. The real fix is in v3.4.2, please refer to those notes for a complete explanation of the changes.

Upgrade to use Syn 0.10.0

20 Jun 19:19
Compare
Choose a tag to compare

FuncUnit has been upgraded to Syn 0.10.0 which provides bugfixes and some new features!

New

  • Right click now issues PointerEvents

Fixes

  • IE11 fix, where was not behaving properly on elements using PreventDefault on key-presses.

Upgrade to use Syn 0.5.0

19 Apr 16:52
Compare
Choose a tag to compare

FuncUnit has been upgraded to Syn 0.5.0 which provides bugfixes and some new features!

New

  • Scans the browser upon load for its native event types, then uses those events where appropriate.
    • PointerEvents for all actions (move, drag, dblclick, etc) except rightClick
    • TouchEvents for all actions (move, drag, dblclick, etc) except rightClick
  • Support for additional Modifier Keys
    • Alt
    • Meta

Fixes

  • Ctrl modifier key
  • Misc other bugfixes, additional tests, doc, and minor improvements

Let us know if you have any issues in the Gitter chat.