Skip to content

Commit ce92f13

Browse files
committed
Log, build and date
1 parent 6aba33f commit ce92f13

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build/jsroot.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const version_id = 'dev',
1111

1212
/** @summary version date
1313
* @desc Release date in format day/month/year like '14/04/2022' */
14-
version_date = '20/02/2024',
14+
version_date = '21/02/2024',
1515

1616
/** @summary version id and date
1717
* @desc Produced by concatenation of {@link version_id} and {@link version_date}
@@ -63912,7 +63912,7 @@ class TFramePainter extends ObjectPainter {
6391263912
noexp_changed: this.y_noexp_changed,
6391363913
symlog: this.swap_xy ? opts.symlog_x : opts.symlog_y,
6391463914
logcheckmin: (opts.ndim < 2) || this.swap_xy,
63915-
log_min_nz: opts.ymin_nz && (opts.ymin_nz < 0.01*this.ymax) ? 0.3 * opts.ymin_nz : 0,
63915+
log_min_nz: opts.ymin_nz && (opts.ymin_nz < this.ymax) ? 0.9*opts.ymin_nz : 0,
6391663916
logminfactor: logminfactorY });
6391763917

6391863918
this.y_handle.assignFrameMembers(this, 'y');
@@ -79214,8 +79214,7 @@ let TH1Painter$2 = class TH1Painter extends THistPainter {
7921479214
else
7921579215
hsum += histo.getBinContent(0) + histo.getBinContent(this.nbinsx + 1);
7921679216

79217-
this.stat_entries = hsum;
79218-
if (histo.fEntries > 1) this.stat_entries = histo.fEntries;
79217+
this.stat_entries = (histo.fEntries > 1) ? histo.fEntries : hsum;
7921979218

7922079219
this.hmin = hmin;
7922179220
this.hmax = hmax;

changes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
23. Fix - vertical position of up elements like {M}^{2} in TLatex
2727
24. Fix - let draw THStack with diff binning hists
2828
25. Fix - better tooltip name for the items
29+
26. Fix - better logy scale selection
2930

3031

3132
## Changes in 7.5.4

modules/core.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const version_id = 'dev',
44

55
/** @summary version date
66
* @desc Release date in format day/month/year like '14/04/2022' */
7-
version_date = '20/02/2024',
7+
version_date = '21/02/2024',
88

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

0 commit comments

Comments
 (0)