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.