Skip to content
This repository has been archived by the owner on Sep 4, 2023. It is now read-only.

Releases: webyarns/reveal.js

3.8.17-vertical

22 Mar 12:55
Compare
Choose a tag to compare
  • feat: support for keep-leftand impair-right for data-hide-controls

  • feat: support for data-disable-keyboard to disable keyboard navigation on a slide

  • feat: data-hide-section, data-hide-from-autoslide and data-hide-after-visit' to hide one or more sections

  • feat: added support for ids for data-next-slide-indexh and for data-previous-slide-indexh

  • feat: added support for data-unhide-section

  • feat: added support for data-unlock-after-visited and data-lock-after-visited

  • feat: new preloader

  • fix: prev-slide-indexh not working on swipe

Removed webyarns-sounds from this project. Has now its own project at https://github.com/rparree/webyarns-sounds.git

webyarns-3.8.4-vertical

20 Nov 09:07
Compare
Choose a tag to compare
  • chore: added e2e cypress tests
  • new: data-hide-controls to hide controls on slide
  • new: data-unhide="toggle | once | «empty» " changes the hidden behaviour of a visited section
  • change: data-autoslide may now go to a hidden section
  • fix: hidden section now work in linear mode
  • fix added support for vertical sections
  • added Star Wars Swipe (additional pre-releases in separate branch 3.8.0.9-vertical-(swipe))

webyarns-3.8.0.5

24 Mar 06:49
Compare
Choose a tag to compare
  • added sourcemaps
  • removed logging from webyarns-sound
  • added science buttons to this project

webyanrs-3.8.0.4-2

13 Sep 09:19
Compare
Choose a tag to compare

Added versions to the output files for easier future version management

webyarns-3.8.0.4

13 Sep 07:44
Compare
Choose a tag to compare

This includes the changes for unreleased version webyarns-3.8.0.3:

Moved to this project:

  • Made audio-ios-initialiser part of this project
  • Moved data-one-time to the plugin
  • Moved preloader to this project
  • added auto-video-play to this project
  • added scroll titles to this project (and improved the implementation)

Changed made to the plugin

  • Added option to data-auto-move-to to move using ids
  • fixed using floating point for data-auto-move-time-sec
  • Added video feature: data-auto-next

changes to webyarns-sound:

  • fixed autio not stopping
  • fixing playing sounds when moving fast
  • [sounds] Added ability to start audio and stop on another slide.
  • improved attributes for fade times on audio
  • attributes now with data-sounds- prefix
  • [webyarns-sounds] added support for @data-sounds-volume-change

Deprecations:

  • deprecated audio-ios-initialiser.ts (should not longer be needed with included reveal version)
  • auto-video-play.ts (use reveal's built-in support)

webyarns-3.9.0.0

24 May 11:38
Compare
Choose a tag to compare
webyarns-3.9.0.0 Pre-release
Pre-release
Fixed wrong usage of `data-next-slide-indexh`  in demo (was `[data-ne…

…xt-slide-idx]`)

webyarns-3.8.0.2

28 Oct 19:08
Compare
Choose a tag to compare

Breaking changes:

  • The format for the sound json has changed to support looping as a configuration:

The format should now follow:

<script id="sounds" type="application/json">
    {
        "nakedcall": {
            "loop": true,
            "src": [
                "webyarns/sounds/nakedcall.mp3",
                "webyarns/sounds/nakedcall.ogg"
            ]
        },
        "manstitutes": {
            "src": [
                "webyarns/sounds/manstitutes.mp3",
                "webyarns/sounds/manstitutes.ogg"
            ]
        },
        "bar": {
            "src": [
                "webyarns/sounds/bar.mp3",
                "webyarns/sounds/bar.ogg"
            ]
        },
        "ding": {
            "src": [
                "webyarns/sounds/ding.mp3",
                "webyarns/sounds/ding.ogg"
            ]
        }
    }
</script>

webyars-3.8.0.1

19 Oct 11:59
Compare
Choose a tag to compare
webyars-3.8.0.1 Pre-release
Pre-release

New files:

  • webyarns/lib/webyarn-plugin.js
  • webyarns/lib/webyarn-sound.js

New features

  • Added webyarns/lib/webyarn-plugin.ts, to enable: add it to the list of Reveal depedencies:
    dependencies: [
        { src: 'webyarns/lib/webyarn-plugin.js' },
        …
    ]
    
    
    The plugin adds:
    • support for a[data-link-indexh] (replaces data-link from reveal-intralinks.js)
    • support for timed-sections (replaces timed-section.js)
  • Created new implementation for sounds on sections (replaces audio-wip). The sounds provided are now provided by json no longer using audio tags (see sample below). to use replace the audio-wip.js/audio-wip2.js with:
    <script id="sounds" type="application/json">
    {
        "nakedcall": [
            "webyarns/sounds/nakedcall.mp3",
            "webyarns/sounds/nakedcall.ogg"
        ],
        "manstitutes": [
            "webyarns/sounds/manstitutes.mp3",
            "webyarns/sounds/manstitutes.ogg"
        ],
        …
       }
    </script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/howler/2.1.2/howler.core.min.js"></script>
    <script src="webyarns/lib/webyarn-sound.js"></script>
    
    Make sure to add this after loading Reveal.js .

webyarns-3.8.0

18 Oct 12:29
Compare
Choose a tag to compare

Based on 3.8.0

Breaking changes

  • data-next-idx has neen renamed to data-next-slide-indexh and the value given is the indexh value of the target slide

See for other changes in upstream reveal.js:

webyarns-3.2.0

18 Oct 12:37
Compare
Choose a tag to compare

Based on reveal 3.2.0 With additional:

  • hidden sections
    • data-hidden-section
    • data-right-only-sectionand ``data-left-only-section`
    • data-non-touch-only-section and data-touch-only-section
  • synchronousSlideChange for starting media automatically on a slide change (media start requires user interaction)
  • section with data-next-idx goes to that slide when navigating to the right