Skip to content

Commit 20bf5a8

Browse files
committed
chore(release): 3.7.3
1 parent de0402b commit 20bf5a8

File tree

7 files changed

+24
-10
lines changed

7 files changed

+24
-10
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
### v3.7.3
2+
3+
- Fix: force nowrap in progress tooltips (related: #2549) (thanks @raad-altaie!)
4+
- Feat(i18n): Make captions autodetect text direction (#2540) (thanks @ebraminio!)
5+
- Fix: fixed menu border radius bug (#2548) (thanks @raad-altaie!)
6+
- Chore: navigator.platform is deprecated (#2530) (thanks @stamat!)
7+
- Feat: Added configurable property to elements for re-use (#2489) (thanks @NoirHusky!)
8+
- Docs: Replace example video ID with one that still works (#2518) (thanks @luvejo!)
9+
- Fix: Improve accessibility on control buttons with aria-pressed (#2523) (thanks @emilkarl!)
10+
- Fix: Fix for calc() in newer Dart Sass versions (#2519) (thanks @ckhicks!)
11+
- Fix: simplify logic for isFunction assertion method
12+
- Chore: update types to include string for controls
13+
- Chore: upgrade packages
14+
- Chore: use `.node-version` instead of `.nvmrc`
15+
116
### v3.7.2
217

318
- Fix: Add `@babel/plugin-proposal-optional-chaining` to transform optional chaining in build output

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,13 +137,13 @@ See [initialising](#initialising) for more information on advanced setups.
137137
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 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.2/plyr.js"></script>
140+
<script src="https://cdn.plyr.io/3.7.3/plyr.js"></script>
141141
```
142142

143143
...or...
144144

145145
```html
146-
<script src="https://cdn.plyr.io/3.7.2/plyr.polyfilled.js"></script>
146+
<script src="https://cdn.plyr.io/3.7.3/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 [Fastly](https://www.fastly.com/)) for the default CSS, you can use the following:
158158

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

163163
## SVG Sprite
164164

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

168168
# Ads
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.2",
3+
"version": "3.7.3",
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
@@ -61,7 +61,7 @@ const defaults = {
6161
// Sprite (for icons)
6262
loadSprite: true,
6363
iconPrefix: 'plyr',
64-
iconUrl: 'https://cdn.plyr.io/3.7.2/plyr.svg',
64+
iconUrl: 'https://cdn.plyr.io/3.7.3/plyr.svg',
6565

6666
// Blank video (used to prevent errors on source change)
6767
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.2
3+
// plyr.js v3.7.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.7.2
3+
// plyr.js v3.7.3
44
// https://github.com/sampotts/plyr
55
// License: The MIT License (MIT)
66
// ==========================================================================

src/js/utils/browser.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ const browser = {
88
isEdge: /Edge/g.test(navigator.userAgent),
99
isWebkit: 'WebkitAppearance' in document.documentElement.style && !/Edge/g.test(navigator.userAgent),
1010
isIPhone: /iPhone|iPod/gi.test(navigator.userAgent) && navigator.maxTouchPoints > 1,
11-
isIos:
12-
/iPad|iPhone|iPod/gi.test(navigator.userAgent) && navigator.maxTouchPoints > 1
11+
isIos: /iPad|iPhone|iPod/gi.test(navigator.userAgent) && navigator.maxTouchPoints > 1,
1312
};
1413

1514
export default browser;

0 commit comments

Comments
 (0)