Skip to content

Releases: bitovi/funcunit

Patch to remove the jQuery Not Defined js SEVERE

Choose a tag to compare

@kdillon kdillon released this 10 Apr 19:17

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

Choose a tag to compare

@cherifGsoul cherifGsoul released this 15 Jan 19:24

This includes dist folder in thenpm release.
#233

Brings jQuery into core and removes it as a dep

Choose a tag to compare

@matthewp matthewp released this 01 Nov 19:02
v3.6.0

3.6.0

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

Choose a tag to compare

@kdillon kdillon released this 03 Nov 17:21

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

Choose a tag to compare

@chasenlehara chasenlehara released this 24 Oct 15:51

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

v3.4.3

Choose a tag to compare

@chasenlehara chasenlehara released this 16 Oct 18:51

No significant bugfixes or changes.

Diff: v3.4.2...v3.4.3

Strict QUnit Two

Choose a tag to compare

@andrejewski andrejewski released this 28 Jun 19:02

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

Choose a tag to compare

@andrejewski andrejewski released this 28 Jun 18:59

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

Choose a tag to compare

@kdillon kdillon released this 20 Jun 19:19

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

Choose a tag to compare

@kdillon kdillon released this 19 Apr 16:52

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.