• 3.8.18-vertical 3504f51de7

    rparree released this 2022-04-23 08:35:05 +00:00 | 27 commits to 3.8.x-verical since this release

    feat: added support for `data-autoslide-honor-hidden
    feat(test): added test for autoslide with (non-)data-touch-only-section
    feat(test): added demo and test for (non-)data-touch-only-section
    feat(doc): documented data-disable-keyboard
    refcator: removed swwipe from this project and into its own: https://github.com/rparree/webyarns-swwipe

    Downloads
  • 3.8.17-vertical 51facb1f5f

    rparree released this 2022-03-22 12:45:18 +00:00 | 32 commits to 3.8.x-verical since this release

    • 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

    Downloads
  • 3.8.4-vertical ae06d01191

    rparree released this 2021-11-20 08:56:22 +00:00 | 73 commits to 3.8.x-verical since this release

    • 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))
    Downloads
  • 3.8.0.5 9c84e9264a

    rparree released this 2021-03-24 06:46:57 +00:00 | 0 commits to 3.8.x since this release

    • added sourcemaps
    • removed logging from webyarns-sound
    • added science buttons to this project
    Downloads
  • webyarns-3.8.0.4-2 aded75606f

    rparree released this 2020-09-13 09:18:05 +00:00 | 4 commits to 3.8.x since this release

    Added versions to the output files for easier future version management

    Downloads
  • webyarns-3.8.0.4 fcf025808e

    rparree released this 2020-09-13 07:33:01 +00:00 | 5 commits to 3.8.x since this release

    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)
    Downloads
  • webyarns-3.9.0.0 ac6b0fc3b8

    webyarns-3.9.0.0 Pre-release

    rparree released this 2020-05-24 09:16:52 +00:00 | 0 commits to master since this release

    Downloads
  • webyarns-3.8.0.2 06ff5ea73a

    rparree released this 2019-10-28 19:03:28 +00:00 | 83 commits to master since this release

    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>
    
    
    Downloads
  • webyars-3.8.0.1 3907434d22

    Pre-release

    rparree released this 2019-10-19 10:17:23 +00:00 | 86 commits to master since this 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 .
    Downloads
  • webyarns-3.8.0 b30cde9393

    rparree released this 2019-10-18 12:26:47 +00:00 | 89 commits to master since this release

    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:

    Downloads