Releases: webslides/WebSlides
1.5.0
1.4.2
Bugfixes 🐛
- Fixed
.toc
class. (Regression from Sass) - Fixed baseline being incorrectly included.
1.4.1
1.4.0
Misc 💌
- [#52] We've moved to Sass! We've migrated all of our content to sass so you can customise it a bit more easily.
- Tests! We've added tests with the awesome Jest and Travis to keep it tested.
New features 🎉
- [#73] Slides Index. Press
-
or click on our slide count to access a fancy new index to quickly navigate to a new slide. Press+
oresc
to exit or click on one slide to navigate to the slide. You can also disable this feature entirely with an option. Read more - [#84] Full Screen Mode. Pressing
F
now toggles full screen mode to remove all the distractions from the browser. Thanks solilokiam! - [#66] New option to disable scroll to navigate.
1.3.1
1.3.0
Misc 💌
- 4 new demos: Longforms, Interviews, Netflix Culture, and Media (YouTube API, videos, images, maps...)
- Deps updated.
- Now using eslint to enforce code style.
- Adding a new badge so the release number is quickly seen.
- [#51] Autoslide is now a plugin.
- Docs moved to Wiki!
- Moved to org!
- Demos: GitHub links updated.
New features 🎉
- Videos 🎬
- [#46] Added slide animation for mobile devices.
.slideInLeft
and.slideInRight
. 📱 - Added longform elements.
- Naming conventions:
- Introducing
.text-emoji
. 😄 - Introducing
.text-quote
. - Introducing
.text-interview
=dl.text-interview
, dt (name), dd (question/answer). .card
is now acard: width: 100%
.
- Introducing
- [#51] Autoslide now pauses if a focusable element gains focus.
- [#56] Added option to disable looping.
- [#74] Added
ws-ready
to actually lock the scroll. - Fluid
.wrap
(width: 90%
). .gallery li:nth-child(n+4)
:auto-fill
removed. Now: equal width (useful for gallery layouts).- Added padding to
form[class*="bg-"]
. - A better CSS print: A4 landscape. 🖨
Bugfixes 🐛
1.2.1
Bugfixes 🐛
- Scrollbar showing in Firefox
1.2.0
New Features 🎉
- [#48] Allows to navigate with AvPag & RePag to allow presentation devices to work.
- [#49] Allowing to go to first and last slides by using home and end keys respectively.
- [#50] Using the keyboard on inputs and editable content won't trigger any events that might cause navigation.
- [#47] Allowing options to be configured. Read More.
1.1.0
Bugfixes 🐛
- Fixed a bug which caused Chrome on OSX to stutter a lot on vertical transitioning due to elastic scroll bounce.
- [#28] Fixed scroll on Firefox.
- [#38] Fixed a bug in Safari which lead to unexpected behaviour using any form of movements.
- [#10] Fixed animation flash on Safari.
New Features 🎉
- [#1] Adding option to click to go to the next slide. Read more here.
- [#1] Improved sliding with mouse scroll and touchpad. It's now possible to use scroll to move an horizontal presentation.
It's also possible to scroll horizontally on horizontal presentations to move forward/backwards the presentation.
Regression 😞
- Introduced a minor bug on iOS Safari which leads to the bottom part of the page not being visible on the first scroll. This is likely a browser bug but it has been unearthed in this version due to a much needed improvement on scrolling behaviour bugs. We're trying to investigate a bit more and will provide a fix ASAP.
1.0.0
This release is a special one! 🎉 It sets up in the path of a better development environment. Although it's far from perfect, it's a solid beginning.
All the code has been migrated from jQuery with ES5 to vanilla JavaScript with ES2015 (or ES6) and is fully modular. This means that WebSlides is a base module with a solid API (few public methods) and it's extended by plugins. This leads to more granularity and less code to dive through while fixing a bug.
The benefit from this approach is that now it's really easy to extend WebSlides to achieve what you need. You can also overwrite current plugins. Say you don't like the current navigation with arrows and want to create a menu instead, you can just write that for yourself with your custom needs and register it as nav
and it will overwrite our nav with your code.
We hope this leads to a better environment in which WebSlides can grow better.
Bugfixes 🐛
- Fixed a bug with back/next buttons on the browser which lead the nav bar to not work.
New Features 🆕
- [#25] Linking to slides without window open.
- Added custom events to listen for.
ws:init
whenever webslides is ready andws:slide-change
whenever a slide changes. - Added play/stop methods.
Breaking Changes 💥
- This "stable" release drops the jQuery requirement and leans on ES2015 for the architecture. Hence, it's no longer possible
to use the library as before.