Skip to content

Commit a7e0a80

Browse files
authored
Merge pull request #121 from LFDT-Lockness/update-katex
Update katex-header.html
2 parents 1eaebae + a7987db commit a7e0a80

6 files changed

+29
-40
lines changed

cggmp21/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v0.5.1
4+
* Update `katex-header.html` injected into docs [#121]
5+
6+
[#121]: https://github.com/LFDT-Lockness/cggmp21/pull/121
7+
38
## v0.5.0
49
* BREAKING: use `hd-wallet` crate for HD support instead of `slip-10` [#115]
510
* BREAKING: rename `hd-wallets` feature into `hd-wallet` [#115]

cggmp21/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cggmp21"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "TSS ECDSA implementation based on CGGMP21 paper"

katex-header.html

+16-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
1-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.13.13/dist/katex.min.css" integrity="sha384-RZU/ijkSsFbcmivfdRBQDtwuwVqK7GMOw6IMvKyeWL2K5UAlyp6WonmB8m7Jd0Hn" crossorigin="anonymous" type="text/css">
2-
<script defer src=
3-
"https://cdn.jsdelivr.net/npm/katex@0.13.13/dist/katex.min.js" integrity="sha384-pK1WpvzWVBQiP0/GjnvRxV4mOb0oxFuyRxJlk6vVw146n3egcN5C925NCP7a7BY8" crossorigin="anonymous" type="text/javascript">
1+
<link rel="stylesheet"
2+
href="https://cdn.jsdelivr.net/npm/katex@0.13.13/dist/katex.min.css"
3+
integrity="sha384-RZU/ijkSsFbcmivfdRBQDtwuwVqK7GMOw6IMvKyeWL2K5UAlyp6WonmB8m7Jd0Hn"
4+
crossorigin="anonymous" type="text/css">
5+
<script defer
6+
src="https://cdn.jsdelivr.net/npm/katex@0.13.13/dist/katex.min.js"
7+
integrity="sha384-pK1WpvzWVBQiP0/GjnvRxV4mOb0oxFuyRxJlk6vVw146n3egcN5C925NCP7a7BY8"
8+
crossorigin="anonymous" type="text/javascript">
49
</script>
5-
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.13.13/dist/contrib/auto-render.min.js" integrity="sha384-vZTG03m+2yp6N6BNi5iM4rW4oIwk5DfcNdFfxkk9ZWpDriOkXX8voJBFrAO7MpVl" crossorigin="anonymous" type="text/javascript">
10+
<script defer
11+
src="https://cdn.jsdelivr.net/npm/katex@0.13.13/dist/contrib/auto-render.min.js"
12+
integrity="sha384-vZTG03m+2yp6N6BNi5iM4rW4oIwk5DfcNdFfxkk9ZWpDriOkXX8voJBFrAO7MpVl"
13+
crossorigin="anonymous" type="text/javascript">
614
</script>
15+
716
<script type="text/javascript">
8-
document.addEventListener("DOMContentLoaded", function() {
17+
document.addEventListener("DOMContentLoaded", function() {
918
renderMathInElement(document.body, {
1019
delimiters: [
1120
{left: "$$", right: "$$", display: true},
@@ -22,9 +31,8 @@
2231
"\\V": "\\mathcal{V}",
2332
"\\H": "\\mathcal{H}",
2433
"\\?": "\\stackrel{?}{=}",
25-
"\\ith": "i^{\\text{th}}",
26-
"\\sk": "\\text{sk}",
2734
},
2835
});
29-
});
36+
});
3037
</script>
38+

key-share/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v0.5.1
4+
* Update `katex-header.html` injected into docs [#121]
5+
6+
[#121]: https://github.com/LFDT-Lockness/cggmp21/pull/121
7+
38
## v0.5.0
49
* BREAKING: use `hd-wallet` crate for HD support instead of `slip-10` [#115]
510
* BREAKING: rename `hd-wallets` feature into `hd-wallet` [#115]

key-share/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "key-share"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Key share of any Threshold Signature Scheme (TSS)"

key-share/katex-header.html

-30
This file was deleted.

key-share/katex-header.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../katex-header.html

0 commit comments

Comments
 (0)