Skip to content

Commit 7dc4d9c

Browse files
committed
v3.4.3
1 parent 8fb8ae1 commit 7dc4d9c

13 files changed

+21
-17
lines changed

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v3.4.3
2+
3+
- Fixed issue with nodeList for custom playback controls
4+
15
# v3.4.2
26

37
- Fix play/pause button state

dist/plyr.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plyr.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plyr.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plyr.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plyr.polyfilled.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plyr.polyfilled.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plyr.polyfilled.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plyr.polyfilled.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "plyr",
3-
"version": "3.4.2",
3+
"version": "3.4.3",
44
"description": "A simple, accessible and customizable HTML5, YouTube and Vimeo media player",
55
"homepage": "https://plyr.io",
66
"author": "Sam Potts <sam@potts.es>",

readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,13 +132,13 @@ See [initialising](#initialising) for more information on advanced setups.
132132
You can use our CDN (provided by [Fastly](https://www.fastly.com/)) for the JavaScript. There's 2 versions; one with and one without [polyfills](#polyfills). My recommendation would be to manage polyfills seperately as part of your application but to make life easier you can use the polyfilled build.
133133

134134
```html
135-
<script src="https://cdn.plyr.io/3.4.2/plyr.js"></script>
135+
<script src="https://cdn.plyr.io/3.4.3/plyr.js"></script>
136136
```
137137

138138
...or...
139139

140140
```html
141-
<script src="https://cdn.plyr.io/3.4.2/plyr.polyfilled.js"></script>
141+
<script src="https://cdn.plyr.io/3.4.3/plyr.polyfilled.js"></script>
142142
```
143143

144144
### CSS
@@ -152,13 +152,13 @@ Include the `plyr.css` stylsheet into your `<head>`
152152
If you want to use our CDN (provided by [Fastly](https://www.fastly.com/)) for the default CSS, you can use the following:
153153

154154
```html
155-
<link rel="stylesheet" href="https://cdn.plyr.io/3.4.2/plyr.css">
155+
<link rel="stylesheet" href="https://cdn.plyr.io/3.4.3/plyr.css">
156156
```
157157

158158
### SVG Sprite
159159

160160
The SVG sprite is loaded automatically from our CDN (provided by [Fastly](https://www.fastly.com/)). To change this, see the [options](#options) below. For
161-
reference, the CDN hosted SVG sprite can be found at `https://cdn.plyr.io/3.4.2/plyr.svg`.
161+
reference, the CDN hosted SVG sprite can be found at `https://cdn.plyr.io/3.4.3/plyr.svg`.
162162

163163
## Ads
164164

src/js/plyr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// ==========================================================================
22
// Plyr
3-
// plyr.js v3.4.2
3+
// plyr.js v3.4.3
44
// https://github.com/sampotts/plyr
55
// License: The MIT License (MIT)
66
// ==========================================================================

src/js/plyr.polyfilled.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// ==========================================================================
22
// Plyr Polyfilled Build
3-
// plyr.js v3.4.2
3+
// plyr.js v3.4.3
44
// https://github.com/sampotts/plyr
55
// License: The MIT License (MIT)
66
// ==========================================================================

0 commit comments

Comments
 (0)