Skip to content

Commit d1e501e

Browse files
committed
Prepare for 7.10.0 release
1 parent dfa9fdc commit d1e501e

File tree

5 files changed

+30
-30
lines changed

5 files changed

+30
-30
lines changed

build/jsroot.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// https://root.cern/js/ v7.9.99
1+
// https://root.cern/js/ v7.10.0
22
(function (global, factory) {
33
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
44
typeof define === 'function' && define.amd ? define(['exports'], factory) :
@@ -10,7 +10,7 @@ var _documentCurrentScript = typeof document !== 'undefined' ? document.currentS
1010

1111
/** @summary version id
1212
* @desc For the JSROOT release the string in format 'major.minor.patch' like '7.0.0' */
13-
const version_id = 'dev',
13+
const version_id = '7.10.0',
1414

1515
/** @summary version date
1616
* @desc Release date in format day/month/year like '14/04/2022' */

changes.md

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
# JSROOT changelog
22

3-
## Changes in dev
3+
## Changes in 7.10.0
44
1. `RNtuple` support, thanks to Kriti Mahajan https://github.com/Krmjn09
5-
1. Implement `RTreeMapPainter` to display `RNTuple` structure, thanks to Patryk Pilichowski https://github.com/magnustymoteus
6-
1. Implement `build3d` function for building three.js objects for `TH1/2/3`, `TLatex` `TGeo`, `TGraph2D` classes #368
7-
1. Draw `TAnnotation3D` in real 3D with handling scene rotation
8-
1. Let use hex colors in histogram draw options like "fill_00ff00" or "line_77aa1166"
9-
1. Let configure exact axis ticks position via draw option like "xticks:[-3,-1,1,3]"
10-
1. Support gStyle.fBarOffset for `TGraph` bar drawing
11-
1. Support "fill_<id>" and "line_<id>" draw options for `TGraph`
12-
1. Support dark mode when store images
13-
1. With 'Shift' key pressed whole graph is moved by dragging action
14-
1. Support `Xall` and `Yall` as projections width #340
15-
1. Implement `unzipJSON()` function for data embeding in jupyter
16-
1. Support reading `TBranch` from old ROOT files with custom streamers
17-
1. Upgrade three.js r174 -> r180
18-
1. Upgrade lil-gui.mjs 0.19.2 -> 0.20.0
19-
1. Upgrade svg2pdf.js 2.3.0 -> 2.6.0
20-
1. Upgrade jsPDF 2.5.2 -> 3.0.3, exclude gif, bmp, jpeg support
21-
1. Use ES6 modules to implement geoworker, enable node.js usage
22-
1. Remove countGeometryFaces function - use numGeometryFaces instead
23-
1. Remove experimental RHist classes, deprecated in ROOT 6.38
24-
1. Internal - ws members are private, new methods has to be used
25-
1. Fix - ticks size and labels with kMoreLogLabels axis bit
26-
1. Fix - first color in palette drawing #365
27-
1. Fix - latex parsing error of `#delta_{0}_suffix` string
28-
1. Fix - reduce plain HTML usage to minimize danger of JS code injection
5+
2. Implement `RTreeMapPainter` to display `RNTuple` structure, thanks to Patryk Pilichowski https://github.com/magnustymoteus
6+
3. Implement `build3d` function for building three.js objects for `TH1/2/3`, `TLatex` `TGeo`, `TGraph2D` classes #368
7+
4. Draw `TAnnotation3D` in real 3D with handling scene rotation
8+
5. Let use hex colors in histogram draw options like "fill_00ff00" or "line_77aa1166"
9+
6. Let configure exact axis ticks position via draw option like "xticks:[-3,-1,1,3]"
10+
7. Support gStyle.fBarOffset for `TGraph` bar drawing
11+
8. Support "fill_<id>" and "line_<id>" draw options for `TGraph`
12+
9. Support dark mode when store images
13+
10. With 'Shift' key pressed whole graph is moved by dragging action
14+
11. Support `Xall` and `Yall` as projections width #340
15+
12. Implement `unzipJSON()` function for data embeding in jupyter
16+
13. Support reading `TBranch` from very old ROOT files with custom streamers
17+
14. Upgrade three.js r174 -> r180
18+
15. Upgrade lil-gui.mjs 0.19.2 -> 0.20.0
19+
16. Upgrade svg2pdf.js 2.3.0 -> 2.6.0
20+
17. Upgrade jsPDF 2.5.2 -> 3.0.3, exclude gif, bmp, jpeg support
21+
18. Use ES6 modules to implement geoworker, enable node.js usage
22+
19. Remove countGeometryFaces function - use numGeometryFaces instead
23+
20. Remove experimental RHist classes, deprecated in ROOT 6.38
24+
21. Internal - ws members are private, new methods has to be used
25+
22. Fix - ticks size and labels with kMoreLogLabels axis bit
26+
23. Fix - first color in palette drawing #365
27+
24. Fix - latex parsing error of `#delta_{0}_suffix` string
28+
25. Fix - reduce plain HTML usage to minimize danger of JS code injection
2929

3030

3131
## Changes in 7.9.3

demo/node/package.json

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

modules/core.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/** @summary version id
44
* @desc For the JSROOT release the string in format 'major.minor.patch' like '7.0.0' */
5-
const version_id = 'dev',
5+
const version_id = '7.10.0',
66

77
/** @summary version date
88
* @desc Release date in format day/month/year like '14/04/2022' */

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.9.99",
3+
"version": "7.10.0",
44
"engines": {
55
"node": ">= 0.18.0"
66
},

0 commit comments

Comments
 (0)