abcjs 6.0.0 → 6.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/RELEASE.md +10 -0
- package/dist/abcjs-basic-min.js +2 -2
- package/dist/abcjs-basic.js +4 -3
- package/dist/abcjs-basic.js.map +1 -1
- package/dist/abcjs-plugin-min.js +2 -2
- package/package.json +1 -1
- package/src/write/abc_abstract_engraver.js +1 -1
- package/src/write/draw/set-paper-size.js +1 -1
- package/temp.txt +15239 -0
- package/version.js +1 -1
package/dist/abcjs-basic.js
CHANGED
|
@@ -19714,7 +19714,8 @@ AbstractEngraver.prototype.addNoteToAbcElement = function (abselem, elem, dot, s
|
|
|
19714
19714
|
abselem.addRight(new RelativeElement(null, dx, 0, p1, {
|
|
19715
19715
|
"type": "stem",
|
|
19716
19716
|
"pitch2": p2,
|
|
19717
|
-
linewidth: width
|
|
19717
|
+
linewidth: width,
|
|
19718
|
+
bottom: p1 - 1
|
|
19718
19719
|
})); //var RelativeElement = function RelativeElement(c, dx, w, pitch, opt) {
|
|
19719
19720
|
|
|
19720
19721
|
min = Math.min(p1, p2);
|
|
@@ -24558,7 +24559,7 @@ module.exports = drawSeparator;
|
|
|
24558
24559
|
|
|
24559
24560
|
function setPaperSize(renderer, maxwidth, scale, responsive) {
|
|
24560
24561
|
var w = (maxwidth + renderer.padding.right) * scale;
|
|
24561
|
-
var h =
|
|
24562
|
+
var h = renderer.y * scale;
|
|
24562
24563
|
if (renderer.isPrint) h = Math.max(h, 1056); // 11in x 72pt/in x 1.33px/pt
|
|
24563
24564
|
// TODO-PER: We are letting the page get as long as it needs now, but eventually that should go to a second page.
|
|
24564
24565
|
// for accessibility
|
|
@@ -28186,7 +28187,7 @@ module.exports = unhighlight;
|
|
|
28186
28187
|
\********************/
|
|
28187
28188
|
/***/ (function(module) {
|
|
28188
28189
|
|
|
28189
|
-
var version = '6.0.
|
|
28190
|
+
var version = '6.0.1';
|
|
28190
28191
|
module.exports = version;
|
|
28191
28192
|
|
|
28192
28193
|
/***/ })
|