Skip to content

Commit 71bfdd6

Browse files
committed
Prepare for 4.1 tag
1 parent 0411d67 commit 71bfdd6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

changes.md

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

3-
## Changes in master
4-
1. Introduce object inspector - one could browse all object members
3+
## Changes in 4.1
4+
1. Introduce object inspector - one could browse object members of any class
55
2. Let draw sub-items from TCanvas list of primitives like sub-pad or TLatex
66
3. Provide possibility to save drawn SVG canvas as PNG
7-
4. TGrapth drawing optimization - limit number of drawn points
7+
4. TGraph drawing optimization - limit number of drawn points
88
5. Implement painter for TPolyMarker3D
99
6. Improve drawing and update of TMultiGraph
1010
7. Reorganize 3D drawing of TH2/TH3 histograms, allow to mix 2D and 3D display together
11-
8. Support overlay of 3D graphic over SVG canvas (used with IE)
11+
8. Support overlay of 3D graphic over SVG canvas (used for IE)
1212
9. Fix problems and improve flex(ible) layout
1313

1414

scripts/JSRootCore.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,15 @@
8686
}
8787
} (function(JSROOT) {
8888

89-
JSROOT.version = "dev 13/01/2016";
89+
JSROOT.version = "4.1 13/01/2016";
9090

9191
JSROOT.source_dir = "";
9292
JSROOT.source_min = false;
9393

9494
JSROOT.id_counter = 0;
9595

9696
JSROOT.touches = false;
97-
JSROOT.browser = { isOpera:false, isFirefox:true, isSafari: false, isChrome: false, isIE: false };
97+
JSROOT.browser = { isOpera:false, isFirefox:true, isSafari:false, isChrome:false, isIE:false };
9898

9999
if ((typeof document !== "undefined") && (typeof window !== "undefined")) {
100100
JSROOT.touches = ('ontouchend' in document); // identify if touch events are supported

0 commit comments

Comments
 (0)