All Versions
11
Latest Version
Avg Release Cycle
143 days
Latest Release
1448 days ago

Changelog History
Page 1

  • v1.1.0

    April 10, 2020
  • v1.0.0 Changes

    March 07, 2018

    ๐Ÿš€ impress.js 1.0, the first stable release

    • ๐Ÿ†• New plugin based architecture allows adding more features without bloating core src/impress.js file
      • Source files are in src/ and compiled into js/impress.js with npm run build. End users should continue to use js/impress.js as before.
    • ๐Ÿ”Œ 19 new plugins
      • Integrates impressConsole.js by default (press 'P' to open speaker console)
      • Markdown support for those that are too much in a hurry to type HTML
      • 5 new demo presentations under examples/ show case the new features
      • Removes the code that prevented impress.js from running on mobile phones

    ๐Ÿš€ You can read more about this release on my blog: http://openlife.cc/blogs/2018/march/impressjs-10-released

  • v1.0.0-beta2 Changes

    January 15, 2018

    ๐Ÿš€ As remaining issues in the queue have been fixed, it's time for another beta release!

    ๐Ÿ‘Œ Improvements since 1.0.0-beta1:

    • ๐Ÿ”„ Change the support for form fields. Now any keys typed into a text input field will no longer propagate outside of the text input element. In particular, typing "parrot" in a text field will no longer open the presenter console.
    • The "click to open speaker console" big button didn't work due to syntax error. Now works.

    ๐Ÿ›  Thanks to Naja Melan and Blaine Carter for contributing fixes, and several others for reporting issues!

  • v1.0.0-beta1 Changes

    November 12, 2017

    Highlights

    • ๐Ÿ†• New plugin based architecture allows adding more features without bloating core src/impress.js file
    • ๐Ÿ— Source files are in src/ and compiled into js/impress.js with npm run build. End users should continue to use js/impress.js as before.
    • ๐Ÿ”Œ 19 new plugins
    • โ†” Integrates impressConsole.js by default (press 'P' to open speaker console)
    • ๐Ÿ‘ Markdown support for those that are too much in a hurry to type HTML
    • 5 new demo presentations under examples/ show case the new features
    • โœ‚ Removes the code that prevented impress.js from running on mobile phones
  • v0.6.0 Changes

    July 03, 2016

    ๐Ÿš€ The first release after 4 years of inactivity, thanks everyone!

    ๐Ÿ”„ Changelog

    • 24cef7f: Add comment of some CSS tricks in the impress-demo.css file
    • ๐Ÿšš 028a298: Removed double dashes -- from index.html comments as Firefox was marking them as invalid
    • ๐Ÿšš 9ccb39d: Example and Demos moved to the Wiki
    • ๐Ÿ‘ #193: Bower support
    • #511: Change license to MIT
    • #499: Fix issues with meta keys
    • ๐Ÿ‘ 8159876: Fix IE support in the README
    • #562: Rework introduction to sound less elitist
    • ๐Ÿ“š #563: Create the official impress.js reference documentation
    • ๐Ÿšš #565: Document browser support and remove note for mobile
    • ๐Ÿ“ฆ #426: Published on npm: http://npmjs.com/package/impress.js
  • v0.5.3 Changes

    May 14, 2016

    ๐Ÿ”„ Changelog

    • 2da949e: Version 0.5 introduced events including impress:stepenter, but this event was not triggered properly in some specific transition types (for example when only scale was changing between steps). It was caused by the fact that in such cases expected transitionend event was not triggered. Unfortunately modern transitionend event is no longer used to detect when the transition has finished, but old school (and more reliable) setTimeout is used.
  • v0.5.2 Changes

    May 14, 2016

    ๐Ÿ”„ Changelog

    • c87d7df: More descriptive comments added to impress.js source file, so now not only index.html is worth reading
  • v0.5.1 Changes

    May 14, 2016

    ๐Ÿ”„ Changelog

    • #126: Changes in version 0.5 introduced a bug that was preventing clicks on links (or any clickable elements) on currently active step.
  • v0.5 Changes

    May 14, 2016

    ๐Ÿ”„ Changelog

    • 0๏ธโƒฃ 8220ab9...e06cda1 b3d680e: API changed, so that impress() function no longer automatically initialize presentation; new method called init was added to API and it should be used to start the presentation. impress:init event is triggered on root presentation element (#impress by default) when presentation is initialized
    • c64d9fb: new CSS classes were added: impress-disabled is added to body element by the impress.js script and it's changed to impress-enabled when init() function is called
    • 1bbf205 b3d680e: Events added when step is entered and left - custom impress:stepenter and impress:stepleave events are triggered on step elements and can be handled like any other DOM events (with addEventListener)
    • b0a139e...5fd0f58: Additional past, present and future classes are added to step elements
    • 1a21865: goto() API method is back! it seems that goto was a future reserved word but isn't anymore, so we can use this short and pretty name instead of camelCassy stepTo - and yes, that means API changed again...
    • ๐Ÿ‘ 9d99c03: additionally goto() method now supports new types of parameters
    • b0c5644: goto() also accepts second parameter to define the transition duration in ms, for example impress().goto("make-it-quick", 300) or impress().goto("now", 0)

    โฌ†๏ธ UPGRADING FROM PREVIOUS VERSIONS

    In current version calling impress() doesn't automatically initialize the presentation. You need to call init() function from the API. So in a place were you called impress() to initialize impress.js simply change this call to impress().init().

    ๐Ÿ”– Version 0.4 changed goto API method into stepTo. It turned out that goto is not a reserved word anymore, so it can be used in JavaScript. That's why version 0.5 brings it back and removes stepTo.

    So if you have been using version 0.4 and have any reference to stepTo API method make sure to change it to goto.

  • v0.4.1 Changes

    May 14, 2016

    ๐Ÿ”„ Changelog

    • ๐Ÿ’ป 78f2ce6: Fix changes is version 0.4 that introduced a bug causing JavaScript errors being thrown all over the place in fallback mode. It also adds a flag impress.supported that can be used in JavaScript to check if impress.js is supported in the browser.