Skip to content

Commit

Permalink
Prepare 7.4.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
linev committed Jul 6, 2023
1 parent d8cd992 commit d2109e3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
6 changes: 3 additions & 3 deletions build/jsroot.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ typeof define === 'function' && define.amd ? define(['exports'], factory) :

/** @summary version id
* @desc For the JSROOT release the string in format 'major.minor.patch' like '7.0.0' */
let version_id = '7.4.x';
let version_id = '7.4.1';

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

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

return new Promise(resolveFunc => {
element.on('keyup', evnt => {
Expand Down
8 changes: 5 additions & 3 deletions changes.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# JSROOT changelog

## Changes in 7.4.x
## Changes in 7.4.1

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


## Changes in 7.4.0
Expand Down
4 changes: 2 additions & 2 deletions modules/core.mjs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

/** @summary version id
* @desc For the JSROOT release the string in format 'major.minor.patch' like '7.0.0' */
let version_id = '7.4.x';
let version_id = '7.4.1';

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

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

0 comments on commit d2109e3

Please sign in to comment.