Skip to content

Commit

Permalink
chore: bump version and update new features modal
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreminger committed Nov 2, 2024
1 parent 030234b commit 0f3d907
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@
const apiUrl = window.location.origin;
const currentVersion = 20240827;
const tutorialHash = "hUts8q3sKUqJGFUwSdL5ZS";
const currentVersion = 20241102;
const tutorialHash = "moJCuTwjPi7dZeZn5QiuaP";
const termsVersion = 20240110;
let termsAccepted = 0;
Expand Down Expand Up @@ -132,7 +132,7 @@
title: "Equation Solving"
},
{
path: "/8pWM9yEqEPNntRBd6Jr9Sv",
path: "/V53SzSCEixmE9MQz6m66mk",
title: "Matrices and Vectors"
},
{
Expand Down
15 changes: 15 additions & 0 deletions src/Updates.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,21 @@
}
</style>

<em>November 2, 2024</em>
<h4>Matrix Multiplication Improvements</h4>
<p>
The two multiplication symbols (the dot symbol obtained using the * key and the x symbol
obtained using the @ key) can now be used interchangeably and will correctly apply
either scalar or matrix multiplication as appropriate for the situation.
Previously, the dot symbol would give unexpected results for some matrix
multiplication situations. The only difference between the two symbols is that the
x multiplication symbol will automatically perform a cross product when operating on
compatible vectors (both 3x1 or both 1x3). This cross product behavior is unchanged from
previous versions.
</p>

<br>

<em>August 27, 2024</em>
<h4>PDF Export Improvements</h4>
<p>
Expand Down

0 comments on commit 0f3d907

Please sign in to comment.