WebSlides Versions Save

Create HTML presentations in seconds —

1.5.0

6 years ago

New feature 🎉

  • [#96] Using Shift + Space now allows to go to previous slide.

Bugfixes 🐛

  • [#97] Fixing CTRL/CMD + F not allowing to search.

Misc 💌

  • Updated dependencies

1.4.2

6 years ago

Bugfixes 🐛

  • Fixed .toc class. (Regression from Sass)
  • Fixed baseline being incorrectly included.

1.4.1

6 years ago

Bugfixes 🐛

  • Fixed longform alignments. (Regression from Sass)
  • Updated demos to use correct reference.
  • Added new unsplash to demo.

1.4.0

6 years ago

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 + or esc 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

7 years ago

Bugfixes 🐛

  • [#79] Fixed touch support not working for iPad nor iPod Touch.

1.3.0

7 years ago

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 🎬
    • [#72] Integration with YouTube's API.
    • [#54] Added video and youtube plugins to allow autoplaying videos (and pausing) entering and leaving the slide.
    • [#68] Responsive background videos (<video>).
  • [#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 a card: width: 100%.
  • [#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 🐛

  • Fixed issues with the grid.
  • [#33] Fixed video issue.
  • [#61] Fixed print issue which prevented to export the slides to PDF in an easy way.

1.2.1

7 years ago

Bugfixes 🐛

  • Scrollbar showing in Firefox

1.2.0

7 years ago

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

7 years ago

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

7 years ago

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 and ws: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.