Changelog

Follow up on the latest improvements and updates.

RSS

fixed

v 1.3.1

Fixed a bug where in certain cases, a song would continue playing even after a new song was clicked.
  • Added new autoplay setting for turning that allows users to turn off the "go to next song when current song ends" functionality.
  • Added a global event that can be used to catch when a song ends.
Adds 2 new functions that can be called outwardly by developers:
toggleStopActivePlayer
and
togglePauseActivePlayer
Example usage
window.truePlayerManager.toggleStopActivePlayer()
window.truePlayerManager.togglePauseActivePlayer()

fixed

v 1.1.3

  • Fixed bug related to the new
    reinitSongs
    feature.

improved

v 1.1.2

Added a new
experimental
feature for reinitializing all the songs on the page. This can be used by developers in cases where the DOM is populated by AJAX and all the audio players need to be updated with the new content.
Example usage
window.truePlayerManager.reinitSongs()

fixed

v 1.1.1

  • Fixed a bug that would break the UI if the song ended while the user was in the middle of scrubbing.
  • Added touch support to media scrubbing.
  • Added outward-facing functions for pause, play, and toggle actions, allowing developers to tap into the audio player with their own code.
  • Added touch support to volume slider.
  • Fixed bug with trying to scrub audio before the metadata is available. We now always load the metadata for the first song in a list.
  • Disables prefetch by default.
  • Fixed a minor bug regarding support around different audio types.
  • Removed some of the media session features. They are breaking due to the preload none option introduced in version 1.0.10.

improved

v 1.0.10

  • Added the ability to disable media preload. This should drastically improve performance for sites with large track listings.
Load More