Skip to content

Commit 17c3d3d

Browse files
committed
v2.2.3
1 parent e667b8b commit 17c3d3d

8 files changed

+15
-11
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 2.2.3 (June 30, 2021)
2+
- `FIXED` Fatal error in Chrome for iOS ([#1491](https://github.com/goldfire/howler.js/issues/1491)).
3+
14
## 2.2.2 (June 27, 2021)
25
The README has been updated with more examples and various clarifications. PRs/issues with suggestions for further improvements are appreciated.
36

dist/howler.core.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/howler.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* howler.js v2.2.2
2+
* howler.js v2.2.3
33
* howlerjs.com
44
*
55
* (c) 2013-2020, James Simpson of GoldFire Studios
@@ -268,7 +268,8 @@
268268
var checkOpera = ua.match(/OPR\/([0-6].)/g);
269269
var isOldOpera = (checkOpera && parseInt(checkOpera[0].split('/')[1], 10) < 33);
270270
var checkSafari = ua.indexOf('Safari') !== -1 && ua.indexOf('Chrome') === -1;
271-
var isOldSafari = (checkSafari && parseInt(ua.match(/Version\/(.*?) /)[1], 10) < 15);
271+
var safariVersion = ua.match(/Version\/(.*?) /);
272+
var isOldSafari = (checkSafari && safariVersion && parseInt(safariVersion[1], 10) < 15);
272273

273274
self._codecs = {
274275
mp3: !!(!isOldOpera && (mpegTest || audioTest.canPlayType('audio/mp3;').replace(/^no$/, ''))),
@@ -2585,7 +2586,7 @@
25852586
/*!
25862587
* Spatial Plugin - Adds support for stereo and 3D audio where Web Audio is supported.
25872588
*
2588-
* howler.js v2.2.2
2589+
* howler.js v2.2.3
25892590
* howlerjs.com
25902591
*
25912592
* (c) 2013-2020, James Simpson of GoldFire Studios

dist/howler.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/howler.spatial.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "howler",
3-
"version": "2.2.2",
3+
"version": "2.2.3",
44
"description": "Javascript audio library for the modern web.",
55
"homepage": "https://howlerjs.com",
66
"keywords": [

src/howler.core.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* howler.js v2.2.2
2+
* howler.js v2.2.3
33
* howlerjs.com
44
*
55
* (c) 2013-2020, James Simpson of GoldFire Studios

src/plugins/howler.spatial.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* Spatial Plugin - Adds support for stereo and 3D audio where Web Audio is supported.
33
*
4-
* howler.js v2.2.2
4+
* howler.js v2.2.3
55
* howlerjs.com
66
*
77
* (c) 2013-2020, James Simpson of GoldFire Studios

0 commit comments

Comments
 (0)