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.
@@ -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 = -20;
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 = -20;
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.1';
28190
+ var version = '6.0.2';
28191
28191
  module.exports = version;
28192
28192
 
28193
28193
  /***/ })