Skip to content

Commit d2109e3

Browse files
committed
Prepare 7.4.1 release
1 parent d8cd992 commit d2109e3

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

build/jsroot.js

Lines changed: 3 additions & 3 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.4.x';
10+
let version_id = '7.4.1';
1111

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

1616
/** @summary version id and date
1717
* @desc Produced by concatenation of {@link version_id} and {@link version_date}
@@ -65304,7 +65304,7 @@ class StandaloneMenu extends JSRootMenu {
6530465304
`.jsroot_dialog_header { flex: 0 1 auto; padding: 5px; }`+
6530565305
`.jsroot_dialog_content { flex: 1 1 auto; padding: 5px; }`+
6530665306
`.jsroot_dialog_footer { flex: 0 1 auto; padding: 5px; }`+
65307-
`.jsroot_dialog_button { float: right; margin-right: 1em; }`, element.node());
65307+
`.jsroot_dialog_button { float: right; width: fit-content; margin-right: 1em; }`, element.node());
6530865308

6530965309
return new Promise(resolveFunc => {
6531065310
element.on('keyup', evnt => {

changes.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# JSROOT changelog
22

3-
## Changes in 7.4.x
3+
## Changes in 7.4.1
44

55
1. Fix - context menu position on lego plots
6-
2. Fix - properly add interactive resize elements
7-
3. Fix - drag and drop handling on tabs layout
6+
2. Fix - add missing math functions Chebyshev0 and normalized Gaus
7+
3. Fix - correctly render TPolyLine3D
8+
4. Fix - properly add interactive resize elements for paves and frame
9+
5. Fix - drag and drop handling on tabs layout
810

911

1012
## Changes in 7.4.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.4.x';
4+
let version_id = '7.4.1';
55

66
/** @summary version date
77
* @desc Release date in format day/month/year like '14/04/2022' */
8-
let version_date = '5/07/2023';
8+
let version_date = '6/07/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)