Skip to content

Commit b8c40ea

Browse files
committed
chore(release): 3.7.5
1 parent 874bb8d commit b8c40ea

File tree

6 files changed

+12
-8
lines changed

6 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### v3.7.5
2+
3+
- Fix: Replace `pnpm` with `npm` in scripts to fix build issues
4+
15
### v3.7.4
26

37
- Fix: Fixed event key with space (thanks @royeden!)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,13 +137,13 @@ See [initialising](#initializing) for more information on advanced setups.
137137
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.
138138

139139
```html
140-
<script src="https://cdn.plyr.io/3.7.4/plyr.js"></script>
140+
<script src="https://cdn.plyr.io/3.7.5/plyr.js"></script>
141141
```
142142

143143
...or...
144144

145145
```html
146-
<script src="https://cdn.plyr.io/3.7.4/plyr.polyfilled.js"></script>
146+
<script src="https://cdn.plyr.io/3.7.5/plyr.polyfilled.js"></script>
147147
```
148148

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

159159
```html
160-
<link rel="stylesheet" href="https://cdn.plyr.io/3.7.4/plyr.css" />
160+
<link rel="stylesheet" href="https://cdn.plyr.io/3.7.5/plyr.css" />
161161
```
162162

163163
## SVG Sprite
164164

165165
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
166-
reference, the CDN hosted SVG sprite can be found at `https://cdn.plyr.io/3.7.4/plyr.svg`.
166+
reference, the CDN hosted SVG sprite can be found at `https://cdn.plyr.io/3.7.5/plyr.svg`.
167167

168168
### Self hosting
169169

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.7.4",
3+
"version": "3.7.5",
44
"description": "A simple, accessible and customizable HTML5, YouTube and Vimeo media player",
55
"homepage": "https://plyr.io",
66
"author": "Sam Potts <[email protected]>",

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.7.4/plyr.svg',
63+
iconUrl: 'https://cdn.plyr.io/3.7.5/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.7.4
3+
// plyr.js v3.7.5
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.7.4
3+
// plyr.js v3.7.5
44
// https://github.com/sampotts/plyr
55
// License: The MIT License (MIT)
66
// ==========================================================================

0 commit comments

Comments
 (0)