Skip to content

Commit 0817470

Browse files
committed
build
1 parent f3b6fef commit 0817470

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

dist/howler.core.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/howler.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* howler.js v2.2.6
2+
* howler.js v2.2.7
33
* howlerjs.com
44
*
55
* (c) 2013-2020, James Simpson of GoldFire Studios
@@ -523,7 +523,7 @@
523523
if (self.state === 'running' && self.ctx.state !== 'interrupted' && self._suspendTimer) {
524524
clearTimeout(self._suspendTimer);
525525
self._suspendTimer = null;
526-
} else if (self.state === 'suspended' || self.state === 'running' && self.ctx.state === 'interrupted') {
526+
} else if (self.state === 'suspended' || self.state === 'running' && (self.ctx.state === 'interrupted' || self.ctx.state === 'suspended')) {
527527
self.ctx.resume().then(function() {
528528
self.state = 'running';
529529

@@ -2622,7 +2622,7 @@
26222622
/*!
26232623
* Spatial Plugin - Adds support for stereo and 3D audio where Web Audio is supported.
26242624
*
2625-
* howler.js v2.2.6
2625+
* howler.js v2.2.7
26262626
* howlerjs.com
26272627
*
26282628
* (c) 2013-2020, James Simpson of GoldFire Studios

dist/howler.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/howler.spatial.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@catalogworks/howler",
3-
"version": "2.2.6",
2+
"name": "@xtrombone/howler",
3+
"version": "2.2.7",
44
"description": "Javascript audio library for the modern web.",
55
"homepage": "https://howlerjs.com",
66
"keywords": [
@@ -16,10 +16,10 @@
1616
"audio sprite",
1717
"audiosprite"
1818
],
19-
"author": "@catalogworks",
19+
"author": "goldfire",
2020
"repository": {
2121
"type": "git",
22-
"url": "git://github.com/catalogworks/howler.js.git"
22+
"url": "git://github.com/xtrombone/howler.js.git"
2323
},
2424
"scripts": {
2525
"build": "VERSION=`printf 'v' && node -e 'console.log(require(\"./package.json\").version)'` && sed -i '' '2s/.*/ * howler.js '\"$VERSION\"'/' src/howler.core.js && sed -i '' '4s/.*/ * howler.js '\"$VERSION\"'/' src/plugins/howler.spatial.js && uglifyjs --preamble \"/*! howler.js $VERSION | (c) 2013-2020, James Simpson of GoldFire Studios | MIT License | howlerjs.com */\" src/howler.core.js -c -m --screw-ie8 -o dist/howler.core.min.js && uglifyjs --preamble \"/*! howler.js $VERSION | Spatial Plugin | (c) 2013-2020, James Simpson of GoldFire Studios | MIT License | howlerjs.com */\" src/plugins/howler.spatial.js -c -m --screw-ie8 -o dist/howler.spatial.min.js && awk 'FNR==1{echo \"\"}1' dist/howler.core.min.js dist/howler.spatial.min.js | sed '3s~.*~/*! Spatial Plugin */~' | perl -pe 'chomp if eof' > dist/howler.min.js && awk '(NR>1 && FNR==1){printf (\"\\n\\n\")};1' src/howler.core.js src/plugins/howler.spatial.js > dist/howler.js",
@@ -41,4 +41,4 @@
4141
"publishConfig": {
4242
"registry": "https://npm.pkg.github.com"
4343
}
44-
}
44+
}

src/howler.core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* howler.js v2.2.6
2+
* howler.js v2.2.7
33
* howlerjs.com
44
*
55
* (c) 2013-2020, James Simpson of GoldFire Studios

src/plugins/howler.spatial.js

Lines changed: 1 addition & 1 deletion
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.6
4+
* howler.js v2.2.7
55
* howlerjs.com
66
*
77
* (c) 2013-2020, James Simpson of GoldFire Studios

0 commit comments

Comments
 (0)