abcjs 6.0.1 → 6.0.2
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 +12 -0
- package/dist/abcjs-basic-min.js +2 -2
- package/dist/abcjs-basic.js +5 -5
- package/dist/abcjs-basic.js.map +1 -1
- package/dist/abcjs-plugin-min.js +2 -2
- package/package.json +1 -1
- package/src/api/abc_tunebook_svg.js +2 -2
- package/src/tablatures/instruments/guitar/guitar-patterns.js +1 -1
- package/src/write/draw/set-paper-size.js +1 -1
- package/version.js +1 -1
- package/dist/report-basic.html +0 -37
- package/dist/report-before-glyph-compress.html +0 -37
- package/dist/report-brown-ts-target-es5.html +0 -37
- package/dist/report-dev-orig-no-babel.html +0 -37
- package/dist/report-synth.html +0 -37
- package/docker-build.sh +0 -1
- package/glyphs.json +0 -1
- package/temp.txt +0 -15256
package/dist/abcjs-basic.js
CHANGED
|
@@ -1168,13 +1168,13 @@ function renderEachLineSeparately(div, tune, params, tuneNumber) {
|
|
|
1168
1168
|
|
|
1169
1169
|
if (k === 0) {
|
|
1170
1170
|
ep.paddingtop = origPaddingTop;
|
|
1171
|
-
ep.paddingbottom =
|
|
1171
|
+
ep.paddingbottom = 0;
|
|
1172
1172
|
} else if (k === tunes.length - 1) {
|
|
1173
1173
|
ep.paddingtop = 10;
|
|
1174
1174
|
ep.paddingbottom = origPaddingBottom;
|
|
1175
1175
|
} else {
|
|
1176
1176
|
ep.paddingtop = 10;
|
|
1177
|
-
ep.paddingbottom =
|
|
1177
|
+
ep.paddingbottom = 0;
|
|
1178
1178
|
}
|
|
1179
1179
|
|
|
1180
1180
|
if (k < tunes.length - 1) {
|
|
@@ -16696,7 +16696,7 @@ function GuitarPatterns(plugin) {
|
|
|
16696
16696
|
this.tuning = plugin._super.params.tuning;
|
|
16697
16697
|
|
|
16698
16698
|
if (!this.tuning) {
|
|
16699
|
-
this.tuning = ['E,', 'A', 'D', 'G', 'B', 'e'];
|
|
16699
|
+
this.tuning = ['E,', 'A,', 'D', 'G', 'B', 'e'];
|
|
16700
16700
|
}
|
|
16701
16701
|
|
|
16702
16702
|
plugin.tuning = this.tuning;
|
|
@@ -24559,7 +24559,7 @@ module.exports = drawSeparator;
|
|
|
24559
24559
|
|
|
24560
24560
|
function setPaperSize(renderer, maxwidth, scale, responsive) {
|
|
24561
24561
|
var w = (maxwidth + renderer.padding.right) * scale;
|
|
24562
|
-
var h = renderer.y * scale;
|
|
24562
|
+
var h = (renderer.y + renderer.padding.bottom) * scale;
|
|
24563
24563
|
if (renderer.isPrint) h = Math.max(h, 1056); // 11in x 72pt/in x 1.33px/pt
|
|
24564
24564
|
// TODO-PER: We are letting the page get as long as it needs now, but eventually that should go to a second page.
|
|
24565
24565
|
// for accessibility
|
|
@@ -28187,7 +28187,7 @@ module.exports = unhighlight;
|
|
|
28187
28187
|
\********************/
|
|
28188
28188
|
/***/ (function(module) {
|
|
28189
28189
|
|
|
28190
|
-
var version = '6.0.
|
|
28190
|
+
var version = '6.0.2';
|
|
28191
28191
|
module.exports = version;
|
|
28192
28192
|
|
|
28193
28193
|
/***/ })
|