diff --git a/packages/webamp/CHANGELOG.md b/packages/webamp/CHANGELOG.md index 3a36cda3..e72a8fcf 100644 --- a/packages/webamp/CHANGELOG.md +++ b/packages/webamp/CHANGELOG.md @@ -1,4 +1,4 @@ -## NEXT +## 1.5.0 ### Features @@ -13,6 +13,8 @@ - Fix a bug where the Milkdrop window could not be moved in some cases [#1068](https://github.com/captbaritone/webamp/pull/1068) - Fix a bug where the visualizer in the Playlist window was not hidden when audio was stopped. [#1072](https://github.com/captbaritone/webamp/pull/1072) - Fix a bug where the marquee was one pixel too narrow [#1087](https://github.com/captbaritone/webamp/pull/1087) +- Fix a bug that was preventing the "Misc options" plalist submenu from opening. [c9fe24](https://github.com/captbaritone/webamp/commit/c9fe24daec32d23ac675f57e3c37854e5ecffbde) +- Rename the `.status` class to `.webamp-status` to avoid potential conflicts with host site. [#1116](https://github.com/captbaritone/webamp/pull/1116) ## 1.4.2 diff --git a/packages/webamp/js/webampLazy.tsx b/packages/webamp/js/webampLazy.tsx index 6b70fa4e..faf7cc6b 100644 --- a/packages/webamp/js/webampLazy.tsx +++ b/packages/webamp/js/webampLazy.tsx @@ -152,7 +152,8 @@ const storeHas = ( }); }); -class Winamp { +class Webamp { + static VERSION = "1.5.0"; _actionEmitter: Emitter; _node: HTMLElement | null; _disposable: Disposable; @@ -195,8 +196,10 @@ class Winamp { // TODO: Make this much cleaner let convertPreset = null; if (__butterchurnOptions != null) { - const { importConvertPreset, presetConverterEndpoint } = - __butterchurnOptions; + const { + importConvertPreset, + presetConverterEndpoint, + } = __butterchurnOptions; if (importConvertPreset != null && presetConverterEndpoint != null) { convertPreset = async (file: File): Promise => { @@ -461,4 +464,4 @@ class Winamp { } } -export default Winamp; +export default Webamp; diff --git a/packages/webamp/package.json b/packages/webamp/package.json index f8ab661c..6c29fbea 100644 --- a/packages/webamp/package.json +++ b/packages/webamp/package.json @@ -1,6 +1,6 @@ { "name": "webamp", - "version": "1.4.3-beta.4", + "version": "1.5.0", "description": "Winamp 2 implemented in HTML5 and JavaScript", "main": "built/webamp.bundle.js", "files": [