Skip to content

Commit

Permalink
Version bump; update changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
hvianna committed Jul 30, 2023
1 parent 0452559 commit 38f13ff
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
20 changes: 20 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
Changelog
=========

## version 4.1.0 (2023-07-30)

### Added: <!-- {docsify-ignore} -->

+ [`colorMode`](README.md#colormode-string) - additional options for coloring analyzer bars: by bar amplitude (level) or bar position (index);
+ [`roundBars`](README.md#roundbars-boolean) - rounded corner analyzer bars;
+ [`isRoundBars`](README.md#isroundbars-boolean-read-only) read-only property;
+ [`trueLeds`](README.md#trueleds-boolean) - your LED bars now more vintage than ever!
+ New `level` property for [registered gradients](README.md#registergradient-name-options-)

### Fixed: <!-- {docsify-ignore} -->

+ Avoid drawing the Y-axis scale and unlit LEDs twice, in 'dual-combined' channel layout.

### Improved: <!-- {docsify-ignore} -->

+ Improved frequency scales labeling (especially for `noteLabels`) - label sizes were slightly reduced in fullscreen;
+ Code cleanup and optimizations.


## version 4.0.0 (2023-03-26)

### 🚨 BREAKING CHANGES: <!-- {docsify-ignore} -->
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "audiomotion-analyzer",
"description": "High-resolution real-time graphic audio spectrum analyzer JavaScript module with no dependencies.",
"version": "4.0.0",
"version": "4.1.0",
"main": "./src/audioMotion-analyzer.js",
"module": "./src/audioMotion-analyzer.js",
"types": "./src/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/audioMotion-analyzer.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* audioMotion-analyzer
* High-resolution real-time graphic audio spectrum analyzer JS module
*
* @version 4.0.0
* @version 4.1.0
* @author Henrique Avila Vianna <hvianna@gmail.com> <https://henriquevianna.com>
* @license AGPL-3.0-or-later
*/

const VERSION = '4.0.0';
const VERSION = '4.1.0';

// internal constants
const TAU = 2 * Math.PI,
Expand Down

0 comments on commit 38f13ff

Please sign in to comment.