Skip to content

Commit

Permalink
v0.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisn committed Feb 3, 2022
1 parent d3d3991 commit 941f2ba
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 3 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Peaks.js

## 0.28.0 (2022/02/03)

* (#430) Fixed scrolling of non-editable waveform segments (@chrisn)

* The playhead in the zoomable waveform view can now be dragged to seek the
playhead position. There is a new option, `playheadClickTolerance` that
controls how close you have to click to drag the playhead rather than
scroll the waveform view (@chrisn)

* Added some features to speed up changing the zoom level:

* Added a cache of waveform data at each zoom level used. This avoids
unnecessary re-calculation, but increases memory usage. This is enabled
by default and can be disabled by setting the `waveformCache` option
to `false`

* Instead of resampling the original waveform data to the target zoom
level, resample from the next lowest available zoom level (@chrisn)

* (#421) Added `view.enableSeek()` function to allow seeking the playback
position by clicking in the waveform view to be disabled (@chrisn)

* (#417) Fixed `logger` option (@rowild, @chrisn)

* (#418, #423) Fixed documentation links (@rowild)

## 0.27.0 (2021/11/04)

* (#310) Updated to use ES module format, Replaced browserify with Rollup and
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "peaks.js",
"version": "0.27.0",
"version": "0.28.0",
"description": "JavaScript UI component for displaying audio waveforms",
"main": "./dist/peaks.min.js",
"module": "./dist/peaks.esm.js",
Expand Down

0 comments on commit 941f2ba

Please sign in to comment.