Skip to content

Commit b92f22d

Browse files
author
isaac_ros_deploy_bot
committed
Update release notes
1 parent 76c65d6 commit b92f22d

File tree

296 files changed

+304
-300
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

296 files changed

+304
-300
lines changed

public/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: bbd1f560bccfa2c0aa010d2514e7f18e
3+
config: d86f066d449a1cad6fc01ca17aaf2d26
44
tags: 645f666f9bcd5a90fca523b33c5a78b7
1.36 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
474 Bytes
Binary file not shown.

public/_sources/releases/index.rst.txt

Lines changed: 1 addition & 0 deletions

public/_static/searchtools.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ const Search = {
178178

179179
htmlToText: (htmlString, anchor) => {
180180
const htmlElement = new DOMParser().parseFromString(htmlString, 'text/html');
181-
for (const removalQuery of [".headerlinks", "script", "style"]) {
181+
for (const removalQuery of [".headerlink", "script", "style"]) {
182182
htmlElement.querySelectorAll(removalQuery).forEach((el) => { el.remove() });
183183
}
184184
if (anchor) {
@@ -328,13 +328,14 @@ const Search = {
328328
for (const [title, foundTitles] of Object.entries(allTitles)) {
329329
if (title.toLowerCase().trim().includes(queryLower) && (queryLower.length >= title.length/2)) {
330330
for (const [file, id] of foundTitles) {
331-
let score = Math.round(100 * queryLower.length / title.length)
331+
const score = Math.round(Scorer.title * queryLower.length / title.length);
332+
const boost = titles[file] === title ? 1 : 0; // add a boost for document titles
332333
normalResults.push([
333334
docNames[file],
334335
titles[file] !== title ? `${titles[file]} > ${title}` : title,
335336
id !== null ? "#" + id : "",
336337
null,
337-
score,
338+
score + boost,
338339
filenames[file],
339340
]);
340341
}

public/about/contact.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2782,7 +2782,7 @@ <h1>Contact<a class="headerlink" href="#contact" title="Link to this heading">
27822782

27832783
<div role="contentinfo">
27842784
<p>&#169; Copyright 2023-2024, NVIDIA.
2785-
<span class="lastupdated">Last updated on Jul 12, 2024.
2785+
<span class="lastupdated">Last updated on Jul 15, 2024.
27862786
</span></p>
27872787
</div>
27882788

0 commit comments

Comments
 (0)