mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-18 00:55:54 +00:00
Bump version to 1.1.2
This commit is contained in:
parent
62e6db2939
commit
88bddda256
4 changed files with 14 additions and 3 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
|
@ -4,9 +4,20 @@
|
|||
|
||||
Users can pass an initial layout (TODO: Documentation)
|
||||
|
||||
## 1.1.2
|
||||
|
||||
### Changes
|
||||
|
||||
Webamp is no-longer rendered into the DOM node you pass into `webamp.renderWhenReady()`. Instead, Webamp is rendred as a direct child of the `<body>` tag. The passed DOM node is still used for positioning. Webamp will attempt to center itself within that DOM node when it renders.
|
||||
|
||||
### Features
|
||||
|
||||
- Allow consumers to specify a z-index when constructing Webamp.
|
||||
|
||||
### Fixes
|
||||
|
||||
- Fixes positioning of context menus in context menu targets when they are spawned while scrolled.
|
||||
- Improve performance of CharacterString, which gets rendered on every marquee step.
|
||||
|
||||
## 1.1.1
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
<body>
|
||||
<div id='app'></div>
|
||||
<script src="https://unpkg.com/webamp@1.1.1/built/webamp.bundle.min.js"></script>
|
||||
<script src="https://unpkg.com/webamp@1.1.2/built/webamp.bundle.min.js"></script>
|
||||
<script>
|
||||
const Webamp = window.Webamp;
|
||||
new Webamp({
|
||||
|
|
|
|||
|
|
@ -10,6 +10,6 @@
|
|||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"webpack-cli": "^2.0.13",
|
||||
"webamp": "1.1.1"
|
||||
"webamp": "1.1.2"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "webamp",
|
||||
"version": "1.1.1",
|
||||
"version": "1.1.2",
|
||||
"description": "Winamp 2 implemented in HTML5 and JavaScript",
|
||||
"main": "built/webamp.bundle.js",
|
||||
"files": [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue