Skip to content

Commit 0c97594

Browse files
committed
chore(release): 3.7.8
1 parent ae59c11 commit 0c97594

File tree

6 files changed

+15
-8
lines changed

6 files changed

+15
-8
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# Changelog
2+
3+
### v3.7.8
4+
5+
- Feat: Minor demo style tweaks
6+
- Fix: Minor style fixes related to backgrounds and border radii (🚨 Requires a SCSS/CSS update 🚨)
7+
18
### v3.7.7
29

310
- Fix (Accessibility): Don’t set tabindex on parent container

README.md

+4-4
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.7/plyr.js"></script>
140+
<script src="https://cdn.plyr.io/3.7.8/plyr.js"></script>
141141
```
142142

143143
...or...
144144

145145
```html
146-
<script src="https://cdn.plyr.io/3.7.7/plyr.polyfilled.js"></script>
146+
<script src="https://cdn.plyr.io/3.7.8/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.7/plyr.css" />
160+
<link rel="stylesheet" href="https://cdn.plyr.io/3.7.8/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.7/plyr.svg`.
166+
reference, the CDN hosted SVG sprite can be found at `https://cdn.plyr.io/3.7.8/plyr.svg`.
167167

168168
### Self hosting
169169

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "plyr",
3-
"version": "3.7.7",
3+
"version": "3.7.8",
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

+1-1
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.7/plyr.svg',
63+
iconUrl: 'https://cdn.plyr.io/3.7.8/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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// ==========================================================================
22
// Plyr
3-
// plyr.js v3.7.7
3+
// plyr.js v3.7.8
44
// https://github.com/sampotts/plyr
55
// License: The MIT License (MIT)
66
// ==========================================================================

src/js/plyr.polyfilled.js

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

0 commit comments

Comments
 (0)