Skip to content

Commit dd87894

Browse files
authored
Merge pull request #91 from universalweb/beta
Beta Snapshot Merge
2 parents b6537d5 + 9216363 commit dd87894

File tree

387 files changed

+14104
-25127
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

387 files changed

+14104
-25127
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,28 @@
11
# Custom Dictionary Words
22
Acks
3+
arpa
34
beuracratic
45
brotli
6+
CCID
57
cshake
68
dilithium
9+
handshaked
710
ICANN
811
jubjub
912
keccak
1013
keccakprg
1114
kmac
15+
kyber
1216
Nacks
1317
Packetization
1418
ripemd
1519
Ristretto
20+
scalarmult
1621
schnorr
1722
scid
1823
secp
24+
sphincs
1925
SPHINCS
26+
streamid
27+
udsp
28+
viat

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,7 @@ Thumbs.db
5353
# CERTS #
5454
######################
5555
*.rootcert
56+
57+
# PRIVATE #
58+
######################
59+
*.private

.htmlhintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
"attr-no-duplication": true,
1111
"title-require": false,
1212
"space-tab-mixed-disabled": "tab"
13-
}
13+
}

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
optional=false

.vscode/launch.json

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,20 @@
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
55
"version": "0.2.0",
66
"configurations": [
7-
{
8-
"type": "pwa-node",
9-
"request": "launch",
10-
"name": "Launch Program",
11-
"skipFiles": [
12-
"<node_internals>/**"
13-
],
14-
"program": "${workspaceFolder}/main.js"
15-
}
16-
]
17-
}
7+
{
8+
"type": "pwa-node",
9+
"request": "launch",
10+
"name": "Launch Program",
11+
"skipFiles": [
12+
"<node_internals>/**"
13+
],
14+
"program": "${workspaceFolder}/main.js"
15+
},
16+
{
17+
"type": "chrome",
18+
"name": "http://127.0.0.1:3000/docs/index.html",
19+
"request": "launch",
20+
"url": "http://127.0.0.1:3000/docs/index.html"
21+
}
22+
]
23+
}

.vscode/ltex.dictionary.en-US.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
VIAT
2+
UDSP

.vscode/settings.json

Lines changed: 50 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
{
2-
"editor.fontFamily": "JetBrainsMono Nerd Font",
3-
"editor.fontLigatures": true,
42
"editor.cursorBlinking": "solid",
53
"editor.formatOnType": false,
64
"editor.autoClosingOvertype": "always",
@@ -40,6 +38,20 @@
4038
"todo-tree.tree.scanMode": "workspace only",
4139
"editor.tokenColorCustomizations": {
4240
"textMateRules": [
41+
{
42+
"scope": "keyword.control.trycatch.js",
43+
"settings": {
44+
"foreground": "#55ebff",
45+
"fontStyle": "bold"
46+
}
47+
},
48+
{
49+
"scope": "keyword.operator.ternary.js",
50+
"settings": {
51+
"foreground": "#d587ff",
52+
"fontStyle": "bold"
53+
}
54+
},
4355
{
4456
"scope": "constant.language.boolean.true.js",
4557
"settings": {
@@ -64,8 +76,8 @@
6476
{
6577
"scope": "storage.type.js",
6678
"settings": {
67-
"foreground": "#C5C5C5",
68-
"fontStyle": "italic"
79+
"foreground": "#bcffff",
80+
"fontStyle": "italic bold"
6981
}
7082
},{
7183
"scope": "keyword.operator.assignment.js",
@@ -76,22 +88,29 @@
7688
},{
7789
"scope": "keyword.operator.logical.js",
7890
"settings": {
79-
"foreground": "#b1b1b1",
91+
"foreground": "#baff90",
8092
"fontStyle": ""
8193
}
8294
},
8395
{
8496
"scope": "keyword.control.export.js",
8597
"settings": {
8698
"foreground": "#FF7F50",
87-
"fontStyle": "italic bold"
99+
"fontStyle": "italic"
100+
}
101+
},
102+
{
103+
"scope": "keyword.control.from.js",
104+
"settings": {
105+
"foreground": "#ff5398",
106+
"fontStyle": "italic"
88107
}
89108
},
90109
{
91110
"scope": "keyword.control.import.js",
92111
"settings": {
93112
"foreground": "#ff5398",
94-
"fontStyle": "italic bold"
113+
"fontStyle": "italic"
95114
}
96115
},
97116
{
@@ -105,7 +124,7 @@
105124
"scope": "storage.modifier.async.js",
106125
"settings": {
107126
"foreground": "#f64747",
108-
"fontStyle": "italic"
127+
"fontStyle": "bold underline"
109128
}
110129
},
111130
{
@@ -139,7 +158,13 @@
139158
{
140159
"scope": "punctuation.accessor.optional.js",
141160
"settings": {
142-
"foreground": "#c0c0c0",
161+
"foreground": "#d3b2ff",
162+
"fontStyle": "bold"
163+
}
164+
},
165+
{
166+
"scope": "variable.parameter.js",
167+
"settings": {
143168
"fontStyle": ""
144169
}
145170
},
@@ -167,9 +192,23 @@
167192
{
168193
"scope": "storage.type.function.js",
169194
"settings": {
170-
"foreground": "#acdfff",
195+
"foreground": "#43ffff",
196+
"fontStyle": "italic"
197+
}
198+
},
199+
{
200+
"scope": "storage.type.class.js",
201+
"settings": {
202+
"foreground": "#ff88f5",
171203
"fontStyle": "italic"
172204
}
205+
},
206+
{
207+
"scope": "variable.language.this",
208+
"settings": {
209+
"foreground": "#ffb459",
210+
"fontStyle": ""
211+
}
173212
}
174213
],
175214
"[*Light*]": {
@@ -200,4 +239,5 @@
200239
"hint"
201240
],
202241
"explorer.copyRelativePathSeparator": "/",
242+
203243
}

CHANGELOG.md

Lines changed: 169 additions & 3 deletions
Large diffs are not rendered by default.

CNAME

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 79 additions & 99 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)