-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Google Chrome deprecation warnings. #856
Comments
It is only a couple of weeks left until January, so is it possible to have this fix released to NPM? |
This just got pushed to npm in 2.0.6. |
Great, thanks! |
I'm still getting the following deprecation warning in
It appears that 0b538a7 only addressed the issue with The culprit is here: This should probably also be updated: |
@Stenerson Thanks! Just fixed this with dc0a2cf and will try to get a 2.0.8 release out soon. |
Is the first warning a breaking change? "GainNode.gain.value setter smoothing is deprecated and will be removed in M64" I've just updated to M64 and, though I still get the warning, the audio still works. Edit: I've looked into it and as far as I can see, it's not a breaking change, it just means that the Gain will be set immediately instead of smoothly (unless setTargetTime is used instead). If that's so, I can live with that and just update projects as other changes are made. |
[Deprecation] AudioParam value setter will become equivalent to AudioParam.setValueAtTime() in M65, around March 2018 See https://webaudio.github.io/web-audio-api/#dom-audioparam-value for more details. The error is in reference to sound._node.bufferSource.playbackRate.value = sound._rate; within the _refreshBuffer function. EDIT: Nevermind, I didn't see the update. |
@DFortun81 That was fixed in v2.0.8. |
Yeah, sorry. I didn't see the update. |
Google Chrome is giving me following warnings when I use Howler in my project:
howler.js:2213 [Deprecation] GainNode.gain.value setter smoothing is deprecated and will be removed in M64, around January 2018. Please use setTargetAtTime() instead if smoothing is needed. See https://www.chromestatus.com/features/5287995770929152 for more details.
[Deprecation] AudioParam value setter will become equivalent to AudioParam.setValueAtTime() in M65, around March 2018 See https://webaudio.github.io/web-audio-api/#dom-audioparam-value for more details.
Does anyone know what are those warnings and can they be addressed in Howlers code?
The text was updated successfully, but these errors were encountered: