diff options
author | Sam Potts <me@sampotts.me> | 2015-03-01 20:34:46 +1100 |
---|---|---|
committer | Sam Potts <me@sampotts.me> | 2015-03-01 20:34:46 +1100 |
commit | dc10139f80a982396c1bd37b849429ef13c05bdf (patch) | |
tree | 011695e8939ee2872c5086a8cb3c8b5f31e6cc96 | |
parent | 05a97500aab22a0115fdb08f175fecb5b62895ae (diff) | |
download | plyr-dc10139f80a982396c1bd37b849429ef13c05bdf.tar.lz plyr-dc10139f80a982396c1bd37b849429ef13c05bdf.tar.xz plyr-dc10139f80a982396c1bd37b849429ef13c05bdf.zip |
v1.0.17
Fixes #4
-rw-r--r-- | bower.json | 2 | ||||
-rw-r--r-- | changelog.md | 5 | ||||
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | readme.md | 6 | ||||
-rw-r--r-- | src/js/plyr.js | 2 |
5 files changed, 12 insertions, 5 deletions
@@ -1,6 +1,6 @@ { "name": "plyr", - "version": "1.0.16", + "version": "1.0.17", "description": "A simple HTML5 media player using custom controls", "homepage": "http://plyr.io", "keywords": [ diff --git a/changelog.md b/changelog.md index a2f7dab7..74423efa 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## v1.0.7 +- SASS support added (thanks to @brunowego) +- Docs completely seperated to avoid any confusion +- New gulp tasks (will add more documentation for this) + ## v1.0.16 - Aria label is now dynamic diff --git a/package.json b/package.json index c968a2af..b60b2a6a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "plyr", - "version": "1.0.16", + "version": "1.0.17", "description": "A simple HTML5 media player using custom controls", "homepage": "http://plyr.io", "main": "gulpfile.js", @@ -30,6 +30,8 @@ If you have any cool ideas or features, please let me know by [creating an issue ## Implementation +Check `docs/index.html` and `docs/dist/js/docs.js` for an example setup. + ### Bower If bower is your thang, you can grab Plyr using: ``` @@ -38,14 +40,14 @@ bower install plyr More info on setting up dependencies can be found in the [Bower Docs](http://bower.io/docs/creating-packages/#maintaining-dependencies) ### CSS -If you want to use the default css, add the css file from /dist into your head, or even better use the less file included in `/src` in your build to save a request. +If you want to use the default css, add the `plyr.css` file from /dist into your head, or even better use `plyr.less` or `plyr.sass` file included in `/src` in your build to save a request. ```html <link rel="stylesheet" href="dist/css/plyr.css"> ``` ### SVG -The SVG sprite for the controls icons is loaded in by AJAX to help with performance. This is best added before the closing `</body>` +The SVG sprite for the controls icons is loaded in by AJAX to help with performance. This is best added before the closing `</body>`, before any other scripts. ```html <script> diff --git a/src/js/plyr.js b/src/js/plyr.js index dba1d69f..034b4d56 100644 --- a/src/js/plyr.js +++ b/src/js/plyr.js @@ -1,6 +1,6 @@ // ========================================================================== // Plyr -// plyr.js v1.0.16 +// plyr.js v1.0.17 // https://github.com/sampotts/plyr // ========================================================================== // Credits: http://paypal.github.io/accessible-html5-video-player/ |