Skip to content

Releases: Gigabyte5671/AutoType

AutoType JS v2.0.0

18 Jan 23:39
393cabd
Compare
Choose a tag to compare

New features:

  • AutoType JS is now 2.6x smaller, at just 470B.
  • You can now await the end of an AutoType effect.
  • The effect is now more stable in general.

Breaking changes:

  • Empty strings passed to AutoType() no longer print "undefined".
  • The callback argument for both AutoType() and AutoBackspace() has been removed. If you want to use a callback function, please use the promise syntax:
    AutoType("element", "Your text").then(() => {
        // Callback
    });

AutoType JS v1.1.2

18 Jan 02:01
Compare
Choose a tag to compare

Bug fix:

  • Fixed a bug that could cause AutoBackspace animations to break after the tab was left and returned to.

AutoType JS v1.1.1

08 Jan 20:21
Compare
Choose a tag to compare

Minor bug fix.

AutoType JS v1.1.0

07 Jan 22:32
Compare
Choose a tag to compare

New features:

Added auto-backspacing functionality to give the inverse typewriter effect. This can be called with:

AutoBackspace("element_ID", <optional> character_delay, <optional> callback);

Breaking changes:

Added new optional positional argument to AutoType and AutoBackspace functions. This argument allows you to specify the delay between typed/backspaced characters, and is positioned just before the callback argument.

AutoType JS v1.0.0

11 Oct 20:59
a5b0424
Compare
Choose a tag to compare

Initial release. Includes AutoType JS and AutoType CSS.