Changelog History
-
v5.2.0 Changes
July 09, 2020 -
v5.1.0 Changes
May 29, 2020๐ This release addresses a lot of the memory management with large files and re-binding of audio events.
๐ Features
- โ Added
prependSong()
method to allow you to add a song to the front of the songs array.
๐ Bug Fixes
๐ PRs merged
Thanks to the following contributors:
@phranzia, @klh, @rowild, @szepeviktor, and @anybany for their hard work! - โ Added
-
v5.0.3 Changes
November 06, 2019๐ฑ No functional changes. Just added support for
npm fund
(more detail here) ๐ฐ๐ If you love AmplitudeJS, support future development here: https://opencollective.com/amplitudejs
-
v5.0.2 Changes
July 18, 2019๐ "Previous" Key Binding Event Fixed
๐ Fixes Bug #368 . Calls proper key binding event.
-
v5.0.1 Changes
July 15, 2019 -
v5.0.0 Changes
July 12, 2019๐ Features
๐ We focused on making AmplitudeJS easier to use than ever before! Not many changes were added to the core, but we added a ton of new features to stabilize future releases and make it even easier to get started with AmplitudeJS. These features include:
- ๐ Released entirely new demo website โจ
- ๐ Moved all examples to CodePen for easier understanding
- ๐ Greatly improved and organized documentation
- Much clearer instructions on how to install and get started
- โ Added automated testing with TravisCI and Jest tests
- โ Added ability for people to become "backers" or "sponsors" on our open collective page
- โ Added instructions on how people can contribute to AmplitudeJS (in any capacity)
๐ Bug fixes
We didn't stop there either... We squashed a lot of bugs too:
-
v4.1.0 Changes
March 05, 2019๐ Fixes issues with the Web Audio API not playing audio on Safari and Chrome. This ensures that the user interacts before the Web Audio API starts.
-
v4.0.0 Changes
January 09, 2019๐ New Features
AmplitudeJS 4.0 comes packed with a ton of new features such as:
- ๐ Web Audio API Visualization Elements - You can now visualize your audio and create custom visualizations in a simple template structure!
- ๐ Wave Form Elements - You can now generate waveforms for your AmplitudeJS audio using the Web Audio API.
- Callbacks For All HTML5 Audio Events - All HTML5 Audio element events are able to be hooked into: https://www.w3schools.com/tags/ref_av_dom.asp
- Time Based Callbacks - You can now run a method at a certain point within a piece of audio.
- Re-structured Code - Everything is modular and easy to be extended and maintained.
๐ฅ Breaking Changes
๐ AmplitudeJS 4.0 was one of the biggest releases thus far. We tried to limit the breaking changes, but in order to scale for the future we had to make a few. I should have every change documented below and the reason why the change was made.
All AmplitudeJS Attributes Have HTML5 Dataset Prefix
๐ In order to make AmplitudeJS validated properly by w3 terms, we prefixed all of the attributes on AmplitudeJS elements to have the data- prefix. This makes all of the attributes compatible with the HTML5 dataset API: https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/dataset
๐ What this means is any time you are defining a specific element for a song or playlist, you will have to use data-amplitude-song-index or data-amplitude-playlist. In 3.x releases, these were just amplitude-song-index or amplitude-playlist. In order to work with 4.0 and above, you will have to update these references.
Standard Attributes For Defining Elements
In versions 3.x, we had a variety of different attributes to define an element based on it's level of use. For example, if we had a global play/pause button it'd be amplitude-main-play-pause="true" as an attribute. This got really cumbersome with multiple elements existing on either a global level (controlling the entire player), a playlist level (controlling functions within a playlist), a song level (controlling an individual song), and a song in playlist level (controlling a song within a playlist). Now everything is based on a combination of attributes. These are as follows:
- Global Level:
class="amplitude-{specialized-class}"
- Playlist Level:
class="amplitude-{specialized-class}" data-amplitude-playlist="{playlist}"
- Song Level:
class="amplitude-{specialized-class}" data-amplitude-song-index="{songIndex}"
- Song In Playlist:
class="amplitude-{specialized-class}" data-amplitude-song-index="{songIndex}" data-amplitude-playlist="{playlist}"
These combinations work for all elements that are in AmplitudeJS. Now there are some elements that don't span all of the scopes. Let's take an amplitude-volume-up element. This only works on the global level. It wouldn't make sense to have individual playlist volumes.
Playlist Song Indexes Are Scoped To Playlist
In versions 3.x song indexes are now scoped to playlists. What this means is that when you use data-amplitude-song-index on a song display IN a playlist, it references the index of the song in the playlist instead of the songs array. For example if song index 1 is used on the 'Hip Hop' playlist, it references song index 1 within that playlist. Before it was the index in the songs array.
Next And Previous Buttons Only Work In Playlists If Playlist Is Active
๐จ So there are two levels of next and previous buttons. The global level which will react to the state of the player and the playlist level. If a global level next button or previous button is clicked, it will either go to the next/previous song in the songs array if no playlist is active, or the next/previous song in the playlist if a playlist is active. Now on the playlist level the buttons only go to the next/previous song in the playlist when clicked and ONLY if the playlist is active. If you click a next/previous button on a playlist that isn't active, it doesn't do anything. It will only print a debug message if debug is turned on.
๐ง Autoplay Configuration Has Been Removed
๐ Most browsers do not support autoplay features anymore. The functionality to set up AmplitudeJS for autoplay has been removed. If you initialize with autoplay, it will just be ignored.
That should be the migrations! If you ran into anything, please reach out and we can lend a hand!
๐ Bug Fixes
-
v3.3.1 Changes
August 22, 2018๐ New Features
- ๐ Allows for delay between songs
- ๐ Allows for user to dynamically update meta data
๐ Bug Fixes
- Returns proper songs from get songs in playlist
- ๐ Fixed issue where song won't play after song sliding and mute
- Set next fires when adding a song
- ๐ Allow starting playlist song
-
v3.3.0 Changes
June 19, 2018๐ New Features
- โ Added two new example players
- ๐ Autofill with metadata
- โ Add songs to playlists dynamically
- Logic implemented to continue after next song ends
- ๐ Added
playlist_changed
andtime_updated
callbacks
๐ Bug fixes