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
2 changes: 1 addition & 1 deletion THIRD_PARTY_NOTICES.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ eRAW itself is distributed under GPL-3.0-or-later. Dependency copyrights remain
| echarts | 6.1.0 | runtime | Apache-2.0 |
| fdir | 6.5.0 | development | MIT |
| fsevents | 2.3.3 | development | MIT |
| katex | 0.18.1 | runtime | MIT |
| katex | 0.18.4 | runtime | MIT |
| lightningcss | 1.33.0 | development | MPL-2.0 |
| lightningcss-android-arm64 | 1.33.0 | development | MPL-2.0 |
| lightningcss-darwin-arm64 | 1.33.0 | development | MPL-2.0 |
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-dialog": "^2.0.0",
"echarts": "^6.1.0",
"katex": "^0.18.1"
"katex": "^0.18.4"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion tests/help-window.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ test("the application distributes no named font or font file", () => {
assert.doesNotMatch(styleSource, /@font-face|Cascadia|Consolas|Segoe|Microsoft YaHei/);
assert.match(pixelOverlaySource, /ui-monospace, monospace/);
assert.doesNotMatch(pixelOverlaySource, /Cascadia|Consolas|Segoe|Microsoft YaHei/);
assert.equal(JSON.parse(packageSource).dependencies.katex, "^0.18.1");
assert.equal(JSON.parse(packageSource).dependencies.katex, "^0.18.4");
assert.match(appSource, /<strong>KaTeX<\/strong>/);
assert.match(appSource, /<code>MIT<\/code>/);
assert.match(fontPolicySource, /MathML/);
Expand Down