Skip to content

Commit 93852d5

Browse files
committed
Prepare for 5.5.0
1 parent 1cd5a12 commit 93852d5

File tree

3 files changed

+31
-3
lines changed

3 files changed

+31
-3
lines changed

changes.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# JSROOT changelog
22

3-
## Changes in dev
3+
## Changes in 5.5.0
44
1. Introduce JSROOT.StoreJSON() function. It creates JSON code for the
55
TCanvas with all drawn objects inside. Allows to store current canvas state
66
2. Support "item=img:file.png" parameter to insert images in existing layout (#151)
@@ -15,6 +15,34 @@
1515
10. Improve markers and error bars drawing for TH1/TProfile
1616

1717

18+
## Changes in 5.4.3
19+
1. Fix - draw functions also when histogram "same" option used (#159)
20+
2. Fix - when draw histogram as markers improve optimization algorithm
21+
3. Fix - correct histogram Y-axis range selection in logarithmic scale
22+
4. Fix - for TH2 draw options allow combination "colztext" (#162)
23+
5. Fix - PNG file generation with 3D drawings inside
24+
25+
26+
## Changes in 5.4.2
27+
1. Fix - take into account extra quotes in multipart http reply (#157)
28+
2. Fix - display of labels on X axis with TProfile
29+
3. Fix - support time display in TMultiGraph
30+
4. Fix - correctly parse "optstat" and "optfit" in URL
31+
5. Fix - correctly update TGraph drawing when X range is changing
32+
6. Fix - return only TF1/TF2 object when searching function (#158)
33+
34+
35+
## Changes in 5.4.1
36+
1. Fix - monitoring mode in draw.htm page
37+
2. Fix - zooming in colz palette
38+
3. Fix - support both 9.x and 10.x jsdom version in Node.js (#149)
39+
4. Fix - draw axis main line with appropriate attributes (#150)
40+
5. Fix - use axis color when drawing grids lines (#150)
41+
6. Fix - when set pad logx/logy, reset existing user ranges in pad
42+
7. Fix - avoid too deep calling stack when drawing many graphs or histos (#154)
43+
8. Fix - correctly (re)draw tooltips on canvas with many subpads
44+
45+
1846
## Changes in 5.4.0
1947
1. New supported classes:
2048
- TDiamond

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.4.99",
3+
"version": "5.5.0",
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 = "dev 4/07/2018";
99+
JSROOT.version = "5.5.0 6/07/2018";
100100

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

0 commit comments

Comments
 (0)