Skip to content

Commit a99fda8

Browse files
committed
Prepare for 5.6.4 release
1 parent bd84067 commit a99fda8

File tree

4 files changed

+22
-12
lines changed

4 files changed

+22
-12
lines changed

changes.md

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

3+
## Changes in 5.6.4
4+
1. Fix - try workaround corrupted data in TTree
5+
2. Fix - support min0 draw option like ROOT does
6+
3. Fix - correctly handle TH2Poly draw options
7+
4. Fix - seldom error in JSROOT.cleanup
8+
5. Fix - repair TTree player UI
9+
6. Fix - error in TH3 filling
10+
7. Fix - correctly access top element in simple layout
11+
12+
313
## Changes in 5.6.3
414
1. Fix - support clipping for tracks and points in geo painter
515
2. Fix - geometry with TGeoNodeOffset was not correctly drawn
@@ -17,18 +27,18 @@
1727
3. Fix Y-scale drawing of THStack (https://root-forum.cern.ch/t/31266)
1828
4. Fix - select palette from colz element
1929
5. Fix - LZ4 uncompression of large buffers
20-
30+
2131

2232
## Changes in 5.6.0
23-
1. By drawing outline speed up (factor 10) canvas with many small sub-pads
33+
1. By drawing outline speed up (factor 10) canvas with many small sub-pads
2434
2. Let configure user click and double-click handlers, extend tooltip.htm example
25-
3. Implement workaround for standard THREE.SVGRenderer - no need for patched version
35+
3. Implement workaround for standard THREE.SVGRenderer - no need for patched version
2636
4. When producing 3D graphical images in batch, use normal THREE.CanvasRenderer
2737
5. Use WebGL renderer in Chrome headless mode for 3D images generation
2838
6. Provide possibility to create SVG files for canvas or frame (#172)
2939
7. Support text drawing with TH1 bar option
3040
8. Fix - when drawing text, reserve extra y range to show it correctly
31-
9. Migrate to Node.js 8, do not support older versions
41+
9. Migrate to Node.js 8, do not support older versions
3242

3343

3444
## Changes in 5.5.2
@@ -42,7 +52,7 @@
4252
2. Fix - show RCanvas title
4353
3. New - implement 'nocache' option for JSROOT scripts loading. When specified in URL with
4454
JSRootCore.js script, tries to avoid scripts caching problem by adding stamp parameter to all URLs
45-
4. New - provide simple drawing for TObjString (#164)
55+
4. New - provide simple drawing for TObjString (#164)
4656

4757

4858
## Changes in 5.5.0
@@ -121,7 +131,7 @@
121131
- let combine "L" or "C" TGraph draw option with others
122132
- correct positioning of custom axis labels
123133
- correctly toggle lin/log axes in lego plot
124-
- let correctly change marker attributes interactively
134+
- let correctly change marker attributes interactively
125135

126136

127137
## Changes in 5.3.5
@@ -138,7 +148,7 @@
138148

139149

140150
## Changes in 5.3.3
141-
1. Use latest jsdom and mathjax-node packages (Node.js only)
151+
1. Use latest jsdom and mathjax-node packages (Node.js only)
142152

143153

144154
## Changes in 5.3.2

demo/gulp/bower.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
"description": "Example of building lib.js with gulp for JavaScript ROOT",
55
"main": "example.htm",
66
"dependencies": {
7-
"jsroot": "^5.6.3"
7+
"jsroot": "^5.6.4"
88
},
99
"overrides": {
1010
"MathJax": {
1111
"main" : [ ]
1212
},
1313
"jsroot": {
14-
"main": [
14+
"main": [
1515
"scripts/JSRootCore.js",
16-
"scripts/rawinflate.min.js",
16+
"scripts/rawinflate.min.js",
1717
"scripts/JSRootIOEvolution.js",
1818
"scripts/JSRootMath.js",
1919
"scripts/JSRootTree.js",

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": "5.6.3",
3+
"version": "5.6.4",
44
"description": "JavaScript ROOT",
55
"homepage": "https://root.cern/js/",
66
"main": "./scripts/JSRootCore.js",

scripts/JSRootCore.js

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

9797
"use strict";
9898

99-
JSROOT.version = "5.6.3 28/01/2019";
99+
JSROOT.version = "5.6.4 21/03/2019";
100100

101101
JSROOT.source_dir = "";
102102
JSROOT.source_min = false;

0 commit comments

Comments
 (0)