Skip to content

Commit 1af13c9

Browse files
author
Documenter.jl
committed
build based on 50c835e
1 parent d5b6d56 commit 1af13c9

13 files changed

+76
-42
lines changed

dev/.documenter-siteinfo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"documenter":{"julia_version":"1.11.5","generation_timestamp":"2025-05-07T21:31:05","documenter_version":"1.10.2"}}
1+
{"documenter":{"julia_version":"1.11.5","generation_timestamp":"2025-05-30T15:22:48","documenter_version":"1.11.4"}}

dev/assets/themes/catppuccin-frappe.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/assets/themes/catppuccin-latte.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/assets/themes/catppuccin-macchiato.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/assets/themes/catppuccin-mocha.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/assets/themes/documenter-dark.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/assets/themes/documenter-light.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/assets/warner.js

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function maybeAddWarning() {
22
// DOCUMENTER_NEWEST is defined in versions.js, DOCUMENTER_CURRENT_VERSION and DOCUMENTER_STABLE
3-
// in siteinfo.js.
4-
// If either of these are undefined something went horribly wrong, so we abort.
3+
// in siteinfo.js. DOCUMENTER_IS_DEV_VERSION is optional and defined in siteinfo.js.
4+
// If the required variables are undefined something went horribly wrong, so we abort.
55
if (
66
window.DOCUMENTER_NEWEST === undefined ||
77
window.DOCUMENTER_CURRENT_VERSION === undefined ||
@@ -30,17 +30,33 @@ function maybeAddWarning() {
3030
}
3131

3232
const div = document.createElement("div");
33-
div.classList.add("outdated-warning-overlay");
33+
// Base class is added by default
34+
div.classList.add("warning-overlay-base");
3435
const closer = document.createElement("button");
3536
closer.classList.add("outdated-warning-closer", "delete");
3637
closer.addEventListener("click", function () {
3738
document.body.removeChild(div);
3839
});
3940
const href = window.documenterBaseURL + "/../" + window.DOCUMENTER_STABLE;
40-
div.innerHTML =
41-
'This documentation is not for the latest stable release, but for either the development version or an older release.<br><a href="' +
41+
42+
// Determine if this is a development version or an older release
43+
let warningMessage = "";
44+
if (window.DOCUMENTER_IS_DEV_VERSION === true) {
45+
div.classList.add("dev-warning-overlay");
46+
warningMessage =
47+
"This documentation is for the <strong>development version</strong> and may contain unstable or unreleased features.<br>";
48+
} else {
49+
div.classList.add("outdated-warning-overlay");
50+
warningMessage =
51+
"This documentation is for an <strong>older version</strong> that may be missing recent changes.<br>";
52+
}
53+
54+
warningMessage +=
55+
'<a href="' +
4256
href +
4357
'">Click here to go to the documentation for the latest stable release.</a>';
58+
59+
div.innerHTML = warningMessage;
4460
div.appendChild(closer);
4561
document.body.appendChild(div);
4662
}

dev/dev.html

Lines changed: 44 additions & 27 deletions
Large diffs are not rendered by default.

dev/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
startOnLoad: true,
55
theme: "neutral"
66
});
7-
</script></article><nav class="docs-footer"><a class="docs-footer-nextpage" href="dev.html">Developers »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="auto">Automatic (OS)</option><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="catppuccin-latte">catppuccin-latte</option><option value="catppuccin-frappe">catppuccin-frappe</option><option value="catppuccin-macchiato">catppuccin-macchiato</option><option value="catppuccin-mocha">catppuccin-mocha</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.10.2 on <span class="colophon-date" title="Wednesday 7 May 2025 21:31">Wednesday 7 May 2025</span>. Using Julia version 1.11.5.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
7+
</script></article><nav class="docs-footer"><a class="docs-footer-nextpage" href="dev.html">Developers »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="auto">Automatic (OS)</option><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="catppuccin-latte">catppuccin-latte</option><option value="catppuccin-frappe">catppuccin-frappe</option><option value="catppuccin-macchiato">catppuccin-macchiato</option><option value="catppuccin-mocha">catppuccin-mocha</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.11.4 on <span class="colophon-date" title="Friday 30 May 2025 15:22">Friday 30 May 2025</span>. Using Julia version 1.11.5.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>

0 commit comments

Comments
 (0)