Skip to content

Commit

Permalink
prepare 6.1.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
paulrosen committed Oct 13, 2022
1 parent 829ea16 commit 1cad572
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:16.16.0

RUN npm install -g npm@8.18.0
RUN npm install -g npm@8.19.2

RUN mkdir /srv/app && chown node:node /srv/app

Expand Down
6 changes: 6 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Version 6.1.5

## Bugs

* Fix error when selecting notes

# Version 6.1.4

## Bugs
Expand Down
4 changes: 2 additions & 2 deletions dist/abcjs-basic-min.js

Large diffs are not rendered by default.

10 changes: 6 additions & 4 deletions dist/abcjs-basic.js
Original file line number Diff line number Diff line change
Expand Up @@ -28235,8 +28235,10 @@ function getTarget(target) {
var found = target.getAttribute("selectable");

while (!found) {
target = target.parentElement;
if (target.tagName === "svg") found = true;else found = target.getAttribute("selectable");
if (!target.parentElement) found = true;else {
target = target.parentElement;
if (target.tagName === "svg") found = true;else found = target.getAttribute("selectable");
}
}

return target;
Expand Down Expand Up @@ -28334,7 +28336,7 @@ function mouseUp(ev) {

if (ev.type === 'touchend' && this.lastTouchMove) {
attachMissingTouchEventAttributes(this.lastTouchMove);
if (ev.touches.length > 0) _ev = this.lastTouchMove.touches[0];
if (this.lastTouchMove.touches.length > 0) _ev = this.lastTouchMove.touches[0];
}

if (!this.dragTarget) return;
Expand Down Expand Up @@ -29152,7 +29154,7 @@ module.exports = unhighlight;
\********************/
/***/ (function(module) {

var version = '6.1.4';
var version = '6.1.5';
module.exports = version;

/***/ })
Expand Down
2 changes: 1 addition & 1 deletion dist/abcjs-basic.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/abcjs-plugin-min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "abcjs",
"version": "6.1.4",
"version": "6.1.5",
"description": "Renderer for abc music notation",
"main": "index.js",
"types": "types/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion version.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
var version = '6.1.4';
var version = '6.1.5';

module.exports = version;

0 comments on commit 1cad572

Please sign in to comment.