Cut the 1.5.0 release

This commit is contained in:
Jordan Eldredge 2021-07-31 13:36:30 -07:00
parent c9fe24daec
commit cc897bea4a
3 changed files with 11 additions and 6 deletions

View file

@ -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

View file

@ -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<Object> => {
@ -461,4 +464,4 @@ class Winamp {
}
}
export default Winamp;
export default Webamp;

View file

@ -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": [