Skip to content
Merged
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
4 changes: 4 additions & 0 deletions src/DocumentationField.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,10 @@
max-height: 99px;
overflow: visible;
opacity: 1;
position: sticky;
top: -8px;
z-index: 50;
background-color: white;
}

:global(math-field.doc-field-math) {
Expand Down
12 changes: 12 additions & 0 deletions src/Updates.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@
}
</style>

<em>June 12, 2026 (Permalink: <a href="https://20260612.engineeringpaper.xyz" target="_blank">20260612.engineeringpaper.xyz</a>)</em>
<h4>Bug Fixes and Usability Improvements</h4>
<p>
A bug was fixed where dividing a vector by a scalar with units would result in a recursion
limit error. Additionally, the toolbar for documentation cells is now always visible,
even if the documentation cell is taller than the window.
Finally, support for square brackets in international keyboard layouts
has been improved. Previously, custom units did not always render correctly
and square brackets did not always scale properly with the height of the contents.
</p>
<br>

<em>April 14, 2026 (Permalink: <a href="https://20260414.engineeringpaper.xyz" target="_blank">20260414.engineeringpaper.xyz</a>)</em>
<h4>Pyodide Update</h4>
<p>
Expand Down
2 changes: 1 addition & 1 deletion src/stores.svelte.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ type AppState = {
}

const appState: AppState = $state<AppState>({
currentVersion: 20260414,
currentVersion: 20260612,
termsVersion: 20240110,

unsavedChange: false,
Expand Down
Loading