Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 60133f7

Browse files
committed
chore(release): v3.8.2
1 parent 95a229c commit 60133f7

File tree

6 files changed

+13
-9
lines changed

6 files changed

+13
-9
lines changed

‎CHANGELOG.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
### v3.8.2
4+
5+
- Add missing types export in package.json.
6+
37
### v3.8.1
48

59
- Fix exports-related regression in 3.8.0. Sorry!

‎README.md‎

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

136136
```html
137-
<script src="https://cdn.plyr.io/3.8.1/plyr.js"></script>
137+
<script src="https://cdn.plyr.io/3.8.2/plyr.js"></script>
138138
```
139139

140140
...or...
141141

142142
```html
143-
<script src="https://cdn.plyr.io/3.8.1/plyr.polyfilled.js"></script>
143+
<script src="https://cdn.plyr.io/3.8.2/plyr.polyfilled.js"></script>
144144
```
145145

146146
## CSS
@@ -154,13 +154,13 @@ Include the `plyr.css` stylesheet into your `<head>`.
154154
If you want to use our CDN (provided by [Cloudflare](https://www.cloudflare.com/)) for the default CSS, you can use the following:
155155

156156
```html
157-
<link rel="stylesheet" href="https://cdn.plyr.io/3.8.1/plyr.css" />
157+
<link rel="stylesheet" href="https://cdn.plyr.io/3.8.2/plyr.css" />
158158
```
159159

160160
## SVG Sprite
161161

162162
The SVG sprite is loaded automatically from our CDN (provided by [Cloudflare](https://www.cloudflare.com/)). To change this, see the [options](#options) below. For
163-
reference, the CDN hosted SVG sprite can be found at `https://cdn.plyr.io/3.8.1/plyr.svg`.
163+
reference, the CDN hosted SVG sprite can be found at `https://cdn.plyr.io/3.8.2/plyr.svg`.
164164

165165
### Self hosting
166166

@@ -399,7 +399,7 @@ Note the single quotes encapsulating the JSON and double quotes on the object ke
399399
| `settings` | Array | `['captions', 'quality', 'speed', 'loop']` | If the default controls are used, you can specify which settings to show in the menu |
400400
| `i18n` | Object | See [defaults.js](/src/js/config/defaults.js) | Used for internationalization (i18n) of the text within the UI. |
401401
| `loadSprite` | Boolean | `true` | Load the SVG sprite specified as the `iconUrl` option (if a URL). If `false`, it is assumed you are handling sprite loading yourself. |
402-
| `iconUrl` | String | `https://cdn.plyr.io/3.8.1/plyr.svg` | Specify a URL or path to the SVG sprite. See the [SVG section](#svg) for more info. |
402+
| `iconUrl` | String | `https://cdn.plyr.io/3.8.2/plyr.svg` | Specify a URL or path to the SVG sprite. See the [SVG section](#svg) for more info. |
403403
| `iconPrefix` | String | `plyr` | Specify the id prefix for the icons used in the default controls (e.g. "plyr-play" would be "plyr"). This is to prevent clashes if you're using your own SVG sprite but with the default controls. Most people can ignore this option. |
404404
| `blankVideo` | String | `https://cdn.plyr.io/static/blank.mp4` | Specify a URL or path to a blank video file used to properly cancel network requests. |
405405
| `autoplay`&sup2; | Boolean | `false` | Autoplay the media on load. If the `autoplay` attribute is present on a `<video>` or `<audio>` element, this will be automatically set to true. |

‎package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "plyr",
33
"type": "module",
4-
"version": "3.8.1",
4+
"version": "3.8.2",
55
"description": "A simple, accessible and customizable HTML5, YouTube and Vimeo media player",
66
"author": "Sam Potts <sam@potts.es>",
77
"license": "MIT",

‎src/js/config/defaults.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const defaults = {
6060
// Sprite (for icons)
6161
loadSprite: true,
6262
iconPrefix: 'plyr',
63-
iconUrl: 'https://cdn.plyr.io/3.8.1/plyr.svg',
63+
iconUrl: 'https://cdn.plyr.io/3.8.2/plyr.svg',
6464

6565
// Blank video (used to prevent errors on source change)
6666
blankVideo: 'https://cdn.plyr.io/static/blank.mp4',

‎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.8.1
3+
// plyr.js v3.8.2
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.8.1
3+
// plyr.js v3.8.2
44
// https://github.com/sampotts/plyr
55
// License: The MIT License (MIT)
66
// ==========================================================================

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /