Skip to content

Commit 22ceadf

Browse files
committed
Prepare 7.2.0 release
1 parent dda8e93 commit 22ceadf

File tree

4 files changed

+12
-13
lines changed

4 files changed

+12
-13
lines changed

build/jsroot.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// https://root.cern/js/ v7.1.99
1+
// https://root.cern/js/ v7.2.0
22
(function (global, factory) {
33
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
44
typeof define === 'function' && define.amd ? define(['exports'], factory) :
@@ -7,11 +7,11 @@ typeof define === 'function' && define.amd ? define(['exports'], factory) :
77

88
/** @summary version id
99
* @desc For the JSROOT release the string in format "major.minor.patch" like "7.0.0" */
10-
let version_id = "dev";
10+
let version_id = "7.2.0";
1111

1212
/** @summary version date
1313
* @desc Release date in format day/month/year like "19/11/2021" */
14-
let version_date = "10/08/2022";
14+
let version_date = "11/08/2022";
1515

1616
/** @summary version id and date
1717
* @desc Produced by concatenation of {@link version_id} and {@link version_date}
@@ -9314,7 +9314,7 @@ function loadMathjax() {
93149314
}
93159315
};
93169316

9317-
return loadScript('../../mathjax/3.2.0/es5/tex-svg.js')
9317+
return loadScript(exports.source_dir + '../mathjax/3.2.0/es5/tex-svg.js')
93189318
.catch(() => loadScript('https://cdn.jsdelivr.net/npm/[email protected]/es5/tex-svg.js'))
93199319
.then(() => promise);
93209320
}
@@ -61210,7 +61210,7 @@ class TPavePainter extends ObjectPainter {
6121061210
}
6121161211

6121261212
// fill stats before drawing to have coordinates early
61213-
if (this.isStats() && !(pp && pp._fast_drawing)) {
61213+
if (this.isStats() && !this.NoFillStats && !(pp && pp._fast_drawing)) {
6121461214

6121561215
let main = pt.$main_painter || this.getMainPainter();
6121661216

@@ -62292,6 +62292,8 @@ class TPavePainter extends ObjectPainter {
6229262292
painter.UseContextMenu = true;
6229362293
}
6229462294

62295+
painter.NoFillStats = (opt == "nofillstats");
62296+
6229562297
switch (pave._typename) {
6229662298
case "TPaveLabel":
6229762299
painter.paveDrawFunc = painter.drawPaveLabel;

changes.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
# JSROOT changelog
22

3-
## Changes in dev
3+
## Changes in 7.2.0
44
1. Use TAxis attributes in lego plots - ticks/labels/title colors, sizes, offsets
55
2. Correctly resize stats box when number of lines changes
66
3. Support JSROOT usage with yarn and webpack
77
4. Provide `FileProxy` class to let read ROOT files from arbitrary place
88
5. Let 'hook' save file functionality to use alternative method to store image files
99
6. Implement 'tabs' layout for objects display (#238)
1010
7. Upgrade d3.js to version 7.6.1
11-
12-
13-
## Changes in 7.1.x
14-
1. Fix - adjust pad margins when moving palette and frame
11+
8. Fix - adjust pad margins when moving palette and frame
1512

1613

1714
## Changes in 7.1.1

modules/core.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

22
/** @summary version id
33
* @desc For the JSROOT release the string in format "major.minor.patch" like "7.0.0" */
4-
let version_id = "dev";
4+
let version_id = "7.2.0";
55

66
/** @summary version date
77
* @desc Release date in format day/month/year like "19/11/2021" */
8-
let version_date = "10/08/2022";
8+
let version_date = "11/08/2022";
99

1010
/** @summary version id and date
1111
* @desc Produced by concatenation of {@link version_id} and {@link version_date}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jsroot",
3-
"version": "7.1.99",
3+
"version": "7.2.0",
44
"engines": {
55
"node": ">=0.14.8"
66
},

0 commit comments

Comments
 (0)