Releases: impress/impress.js
v2.0.0
This release includes new features and fixes since Apr 11, 2020, when v1.1.0 was released.
Major features and improvements:
- The default target resolution used inside impress.js code for various layout and transformations, is now 1920x1080 (Full HD). In addition the max scale factor by default is now 3 x the default, meaning for larger resolutions, impress.js will stretch the slide contents to fill the available screen.
- NOTE: This change may affect your layout if you've used the default target resolution in your presentations. See DOCUMENTATION.md for how to explicitly set the wanted resolution.
- The Rel plugin now supports relative coordinates also for rotations. This means you can now define all coordinates relative to the previous step position and rotation. Huge thank you to new contributor Thawk for this amazing piece of math.
- Fixes to defining coordinates with relative-to-screen-size units (h and w).
- Use element attribute title, if available, in the navigation-ui drop box
- Support custom ordering for substeps
Thanks to Tim Gates, kdxcxs, Bartek Szopka, Daniel Sockwell, thawk, Ikko Ashimine, hugocvx, Christoph Neumann, Henrik Ingo for features, fixes, and cleanup, whether small or large, in this release.
v1.1.0
This release includes new features and fixes since March 2018 when 1.0 was released.
New Plugin:
- The media plugin can autoplay and autopause/autostop and
Improvements:
- Rel plugin can now use relative positioning relative to any previous step.
- Shift space now moves to previous slide
- Add support for PowerPoint keybindings, as these are used by various remote controllers.
- Update node modules used for testing and a package-lock file.
- Support Maruku dialect in the Markdown plugin
- Autoplay plugin can now be enabled/disabled with url parameter
Fixes:
- Slides would zoom too large when swiping
- Teardown should only reset element attributes that impress.js had actually modified.
Notice: DOCUMENTATION.md now has details on attributes of the #impress root element that can be used to target different screen sizes. Please be aware that the default (1024x768) is planned to change in 2021. (Probably to 1920x1080.) You are advised to use these attributes explicitly to provide for a smooth upgrade path.
Contributors: Holger Teichert, Diego Zilioti, Guilherme Weizenmann, Moritz, Will Soares, Christoph Weiler, Jason Cooke, Oliver Sanders, Tobias Bora, Eduardo Moreira, Mohamed Feddad, Ingrid-Regina Vähi.
v1.0.0
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
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
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
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
--
fromindex.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
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 expectedtransitionend
event was not triggered. Unfortunately moderntransitionend
event is no longer used to detect when the transition has finished, but old school (and more reliable)setTimeout
is used.
v0.5.2
v0.5.1
v0.5.0
Changelog
- 8220ab9...e06cda1 b3d680e: API changed, so that
impress()
function no longer automatically initialize presentation; new method calledinit
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 tobody
element by the impress.js script and it's changed toimpress-enabled
wheninit()
function is called - 1bbf205 b3d680e: Events added when step is entered and left - custom
impress:stepenter
andimpress:stepleave
events are triggered on step elements and can be handled like any other DOM events (withaddEventListener
) - 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 camelCassystepTo
- 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 exampleimpress().goto("make-it-quick", 300)
orimpress().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
.