Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: goldfire/howler.js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: Stinkstudios/howler.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 16 commits
  • 137 files changed
  • 3 contributors

Commits on Oct 1, 2017

  1. - fixing minor syntax error in spatial plugin

    - adding initial convolver code with comments
    jcampbellcodes committed Oct 1, 2017
    Copy the full SHA
    111d202 View commit details
  2. -- added convolver demo

    -- added impulse response
    -- successfully adds howl to cathedral convolver
    jcampbellcodes committed Oct 1, 2017
    Copy the full SHA
    1b80d4f View commit details

Commits on Oct 2, 2017

  1. Copy the full SHA
    0a41337 View commit details
  2. -- added parallel processing fxSend gain node to howler core

    -- adding new tests
    -- implementing test functions in convolver plugin
    Jack Campbell committed Oct 2, 2017
    Copy the full SHA
    dddc65a View commit details
  3. adding extra convolver removal functions

    Jack Campbell committed Oct 2, 2017
    Copy the full SHA
    95257cb View commit details

Commits on Oct 4, 2017

  1. first pass of convolution plugin complete

    -- slimmed down convolution plugin to only control local convolution send
    
    -- removed fxSend control from howler core; convolution volume just controlled via plugin
    
    -- moved around some test code
    jcampbellcodes committed Oct 4, 2017
    Copy the full SHA
    6432dc1 View commit details

Commits on Oct 10, 2017

  1. Copy the full SHA
    2c547fb View commit details
  2. - adding hook nodes in core for insert effects

    - creating filter tests
    - writing filter plugin API
    Jack Campbell committed Oct 10, 2017
    Copy the full SHA
    8fa8b56 View commit details
  3. fixing ID parameters in convolver API

    Jack Campbell committed Oct 10, 2017
    Copy the full SHA
    1b07c9d View commit details
  4. adding events to filter methods

    Jack Campbell committed Oct 10, 2017
    Copy the full SHA
    95d228b View commit details
  5. Merge branch 'plugins/convolution' into plugins/filters

    Jack Campbell committed Oct 10, 2017
    Copy the full SHA
    8bebcff View commit details
  6. filters: update event listeners and filters demo

    Jack Campbell committed Oct 10, 2017
    Copy the full SHA
    a3341c5 View commit details

Commits on Jul 31, 2020

  1. Copy the full SHA
    10fb08a View commit details
  2. Copy the full SHA
    01732dd View commit details
  3. Update build

    thomasboulongne committed Jul 31, 2020
    Copy the full SHA
    f149c65 View commit details
  4. Update build

    thomasboulongne committed Jul 31, 2020
    Copy the full SHA
    60ba116 View commit details
Showing with 37,356 additions and 27 deletions.
  1. +2 −2 dist/howler.core.min.js
  2. +2 −0 dist/howler.filter.min.js
  3. +370 −9 dist/howler.js
  4. +6 −4 dist/howler.min.js
  5. +1 −1 dist/howler.spatial.min.js
  6. +1 −0 node_modules/.bin/uglifyjs
  7. +21 −0 node_modules/align-text/LICENSE
  8. +236 −0 node_modules/align-text/README.md
  9. +52 −0 node_modules/align-text/index.js
  10. +78 −0 node_modules/align-text/package.json
  11. +27 −0 node_modules/camelcase/index.js
  12. +21 −0 node_modules/camelcase/license
  13. +70 −0 node_modules/camelcase/package.json
  14. +56 −0 node_modules/camelcase/readme.md
  15. +21 −0 node_modules/center-align/LICENSE
  16. +74 −0 node_modules/center-align/README.md
  17. +16 −0 node_modules/center-align/index.js
  18. +82 −0 node_modules/center-align/package.json
  19. +40 −0 node_modules/center-align/utils.js
  20. +1 −0 node_modules/cliui/.coveralls.yml
  21. +2 −0 node_modules/cliui/.npmignore
  22. +7 −0 node_modules/cliui/.travis.yml
  23. +14 −0 node_modules/cliui/LICENSE.txt
  24. +104 −0 node_modules/cliui/README.md
  25. +273 −0 node_modules/cliui/index.js
  26. +91 −0 node_modules/cliui/package.json
  27. +349 −0 node_modules/cliui/test/cliui.js
  28. +13 −0 node_modules/decamelize/index.js
  29. +21 −0 node_modules/decamelize/license
  30. +70 −0 node_modules/decamelize/package.json
  31. +48 −0 node_modules/decamelize/readme.md
  32. +21 −0 node_modules/is-buffer/LICENSE
  33. +53 −0 node_modules/is-buffer/README.md
  34. +21 −0 node_modules/is-buffer/index.js
  35. +77 −0 node_modules/is-buffer/package.json
  36. +24 −0 node_modules/is-buffer/test/basic.js
  37. +21 −0 node_modules/kind-of/LICENSE
  38. +261 −0 node_modules/kind-of/README.md
  39. +116 −0 node_modules/kind-of/index.js
  40. +139 −0 node_modules/kind-of/package.json
  41. +21 −0 node_modules/lazy-cache/LICENSE
  42. +147 −0 node_modules/lazy-cache/README.md
  43. +67 −0 node_modules/lazy-cache/index.js
  44. +89 −0 node_modules/lazy-cache/package.json
  45. +21 −0 node_modules/longest/LICENSE
  46. +65 −0 node_modules/longest/README.md
  47. +37 −0 node_modules/longest/index.js
  48. +68 −0 node_modules/longest/package.json
  49. +21 −0 node_modules/repeat-string/LICENSE
  50. +136 −0 node_modules/repeat-string/README.md
  51. +70 −0 node_modules/repeat-string/index.js
  52. +128 −0 node_modules/repeat-string/package.json
  53. +21 −0 node_modules/right-align/LICENSE
  54. +77 −0 node_modules/right-align/README.md
  55. +16 −0 node_modules/right-align/index.js
  56. +70 −0 node_modules/right-align/package.json
  57. +301 −0 node_modules/source-map/CHANGELOG.md
  58. +28 −0 node_modules/source-map/LICENSE
  59. +729 −0 node_modules/source-map/README.md
  60. +3,091 −0 node_modules/source-map/dist/source-map.debug.js
  61. +3,090 −0 node_modules/source-map/dist/source-map.js
  62. +2 −0 node_modules/source-map/dist/source-map.min.js
  63. +1 −0 node_modules/source-map/dist/source-map.min.js.map
  64. +121 −0 node_modules/source-map/lib/array-set.js
  65. +140 −0 node_modules/source-map/lib/base64-vlq.js
  66. +67 −0 node_modules/source-map/lib/base64.js
  67. +111 −0 node_modules/source-map/lib/binary-search.js
  68. +79 −0 node_modules/source-map/lib/mapping-list.js
  69. +114 −0 node_modules/source-map/lib/quick-sort.js
  70. +1,082 −0 node_modules/source-map/lib/source-map-consumer.js
  71. +416 −0 node_modules/source-map/lib/source-map-generator.js
  72. +413 −0 node_modules/source-map/lib/source-node.js
  73. +417 −0 node_modules/source-map/lib/util.js
  74. +211 −0 node_modules/source-map/package.json
  75. +8 −0 node_modules/source-map/source-map.js
  76. +29 −0 node_modules/uglify-js/LICENSE
  77. +995 −0 node_modules/uglify-js/README.md
  78. +77 −0 node_modules/uglify-js/bin/extract-props.js
  79. +635 −0 node_modules/uglify-js/bin/uglifyjs
  80. +1,052 −0 node_modules/uglify-js/lib/ast.js
  81. +4,101 −0 node_modules/uglify-js/lib/compress.js
  82. +611 −0 node_modules/uglify-js/lib/mozilla-ast.js
  83. +1,423 −0 node_modules/uglify-js/lib/output.js
  84. +1,599 −0 node_modules/uglify-js/lib/parse.js
  85. +264 −0 node_modules/uglify-js/lib/propmangle.js
  86. +656 −0 node_modules/uglify-js/lib/scope.js
  87. +97 −0 node_modules/uglify-js/lib/sourcemap.js
  88. +218 −0 node_modules/uglify-js/lib/transform.js
  89. +362 −0 node_modules/uglify-js/lib/utils.js
  90. +90 −0 node_modules/uglify-js/package.json
  91. +5,603 −0 node_modules/uglify-js/tools/domprops.json
  92. +19 −0 node_modules/uglify-js/tools/exports.js
  93. +320 −0 node_modules/uglify-js/tools/node.js
  94. +61 −0 node_modules/uglify-js/tools/props.html
  95. +14 −0 node_modules/uglify-to-browserify/.npmignore
  96. +3 −0 node_modules/uglify-to-browserify/.travis.yml
  97. +19 −0 node_modules/uglify-to-browserify/LICENSE
  98. +15 −0 node_modules/uglify-to-browserify/README.md
  99. +49 −0 node_modules/uglify-to-browserify/index.js
  100. +51 −0 node_modules/uglify-to-browserify/package.json
  101. +22 −0 node_modules/uglify-to-browserify/test/index.js
  102. +22 −0 node_modules/window-size/LICENSE-MIT
  103. +26 −0 node_modules/window-size/README.md
  104. +33 −0 node_modules/window-size/index.js
  105. +58 −0 node_modules/window-size/package.json
  106. +1 −0 node_modules/wordwrap/.npmignore
  107. +70 −0 node_modules/wordwrap/README.markdown
  108. +10 −0 node_modules/wordwrap/example/center.js
  109. +3 −0 node_modules/wordwrap/example/meat.js
  110. +76 −0 node_modules/wordwrap/index.js
  111. +66 −0 node_modules/wordwrap/package.json
  112. +30 −0 node_modules/wordwrap/test/break.js
  113. +63 −0 node_modules/wordwrap/test/idleness.txt
  114. +31 −0 node_modules/wordwrap/test/wrap.js
  115. +374 −0 node_modules/yargs/CHANGELOG.md
  116. +21 −0 node_modules/yargs/LICENSE
  117. +926 −0 node_modules/yargs/README.md
  118. +22 −0 node_modules/yargs/completion.sh.hbs
  119. +504 −0 node_modules/yargs/index.js
  120. +71 −0 node_modules/yargs/lib/completion.js
  121. +448 −0 node_modules/yargs/lib/parser.js
  122. +314 −0 node_modules/yargs/lib/usage.js
  123. +196 −0 node_modules/yargs/lib/validation.js
  124. +114 −0 node_modules/yargs/package.json
  125. +142 −0 package-lock.json
  126. +2 −2 package.json
  127. +16 −8 src/howler.core.js
  128. +346 −0 src/plugins/howler.convolver.js
  129. +351 −0 src/plugins/howler.filter.js
  130. +1 −1 src/plugins/howler.spatial.js
  131. BIN tests/audio/ir.wav
  132. BIN tests/audio/slinky_ir.wav
  133. +17 −0 tests/convolver.html
  134. +17 −0 tests/filters.html
  135. +10 −0 tests/index.html
  136. +122 −0 tests/js/convolver.js
  137. +91 −0 tests/js/filters.js
Loading