Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions js/build/jsroot.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ var _documentCurrentScript = typeof document !== 'undefined' ? document.currentS

/** @summary version id
* @desc For the JSROOT release the string in format 'major.minor.patch' like '7.0.0' */
const version_id = '7.11.x',
const version_id = '7.11.1',

/** @summary version date
* @desc Release date in format day/month/year like '14/04/2022' */
version_date = '24/07/2026',
version_date = '27/07/2026',

/** @summary version id and date
* @desc Produced by concatenation of {@link version_id} and {@link version_date}
Expand Down Expand Up @@ -179855,9 +179855,9 @@ function decodeZigzag32(view) {
* @private */
function decodeZigzag64(view) {
for (let o = 0; o < view.byteLength; o += 8) {
const x = view.getUint64(o, LITTLE_ENDIAN);
view.setInt64(o, (x >>> 1) ^ (-(x & 1)), LITTLE_ENDIAN);
}
const x = view.getBigUint64(o, LITTLE_ENDIAN);
view.setBigInt64(o, (x >> 1n) ^ (-(x & 1n)), LITTLE_ENDIAN);
}
}


Expand Down
3 changes: 2 additions & 1 deletion js/changes.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# JSROOT changelog

## Changes in 7.11.x
## Changes in 7.11.1
1. Fix - prevent very long header in context menu
2. Fix - JSON production for TWebCanvas
3. Fix - check evaluated value of TF1
4. Fix - corrupted page layout in SWAN after calling %rootbrowse
5. Fix - RNtuple decodeZigzag64 for SplitInt64 columns #410


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

/** @summary version id
* @desc For the JSROOT release the string in format 'major.minor.patch' like '7.0.0' */
const version_id = '7.11.x',
const version_id = '7.11.1',

/** @summary version date
* @desc Release date in format day/month/year like '14/04/2022' */
version_date = '24/07/2026',
version_date = '27/07/2026',

/** @summary version id and date
* @desc Produced by concatenation of {@link version_id} and {@link version_date}
Expand Down
6 changes: 3 additions & 3 deletions js/modules/rntuple.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,9 @@ function decodeZigzag32(view) {
* @private */
function decodeZigzag64(view) {
for (let o = 0; o < view.byteLength; o += 8) {
const x = view.getUint64(o, LITTLE_ENDIAN);
view.setInt64(o, (x >>> 1) ^ (-(x & 1)), LITTLE_ENDIAN);
}
const x = view.getBigUint64(o, LITTLE_ENDIAN);
view.setBigInt64(o, (x >> 1n) ^ (-(x & 1n)), LITTLE_ENDIAN);
}
}


Expand Down
Loading