Skip to content

Commit b17ee00

Browse files
committed
Prepare 7.3.1 release
1 parent 36e0305 commit b17ee00

File tree

3 files changed

+16
-9
lines changed

3 files changed

+16
-9
lines changed

build/jsroot.js

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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 = '7.3.x';
10+
let version_id = '7.3.1';
1111

1212
/** @summary version date
1313
* @desc Release date in format day/month/year like '14/04/2022' */
14-
let version_date = '23/02/2023';
14+
let version_date = '28/03/2023';
1515

1616
/** @summary version id and date
1717
* @desc Produced by concatenation of {@link version_id} and {@link version_date}
@@ -64163,7 +64163,7 @@ class TH2Painter$2 extends THistPainter {
6416364163
if (i2+dd >= h.i2) { i2 = Math.min(Math.round(i2+dd), h.i2); i1 = Math.max(i2 - this.projection_width, h.i1); }
6416464164
else { i1 = Math.max(Math.round(i1-dd), h.i1); i2 = Math.min(i1 + this.projection_width, h.i2); }
6416564165
}
64166-
x1 = h.grx[i1], x2 = h.grx[i2],
64166+
x1 = h.grx[i1]; x2 = h.grx[i2];
6416764167
binid = i1*777 + i2*333;
6416864168
}
6416964169

@@ -70860,7 +70860,8 @@ class TGeoPainter extends ObjectPainter {
7086070860
changedBackground(val) {
7086170861
if (val !== undefined)
7086270862
this.ctrl.background = val;
70863-
this._renderer.setClearColor(this.ctrl.background, 1);
70863+
this._scene.background = new Color$1(this.ctrl.background);
70864+
this._renderer.setClearColor(this._scene.background, 1);
7086470865
this.render3D(0);
7086570866

7086670867
if (this._toolbar) {
@@ -72165,6 +72166,8 @@ class TGeoPainter extends ObjectPainter {
7216572166

7216672167
this._scene.add(this._toplevel);
7216772168

72169+
this._scene.background = new Color$1(this.ctrl.background);
72170+
7216872171
return createRender3D(w, h, this.options.Render3D, { antialias: true, logarithmicDepthBuffer: false, preserveDrawingBuffer: true }).then(r => {
7216972172

7217072173
this._renderer = r;
@@ -72176,7 +72179,7 @@ class TGeoPainter extends ObjectPainter {
7217672179
this._renderer.setSize(w, h, !this._fit_main_area);
7217772180
this._renderer.localClippingEnabled = true;
7217872181

72179-
this._renderer.setClearColor(this.ctrl.background, 1);
72182+
this._renderer.setClearColor(this._scene.background, 1);
7218072183

7218172184
if (this._fit_main_area && this._webgl) {
7218272185
this._renderer.domElement.style.width = '100%';

changes.md

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

3-
## Changes in 7.3.x
3+
## Changes in 7.3.1
44
1. Fix - TGeo update in the TWebCanvas
55
2. Fix - several tutorials with three.js modules loading
66
3. Fix - redraw pad when change text align attributes
77
4. Fix - pad ranges for TWebCanvas, handle log2 scales
8-
5. Fix - set proper background for geo drawing
8+
5. Fix - support candle and violin options when creating string draw option
9+
6. Fix - labels and tooltips on reversed axes
10+
7. Fix - zooming on TRatioPlot
11+
8. Fix - pad ranges calculations for TWebCanvas
12+
9. Fix - set proper background for geo drawing
913

1014

1115
## Changes in 7.3.0

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 = '7.3.x';
4+
let version_id = '7.3.1';
55

66
/** @summary version date
77
* @desc Release date in format day/month/year like '14/04/2022' */
8-
let version_date = '24/03/2023';
8+
let version_date = '28/03/2023';
99

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

0 commit comments

Comments
 (0)