Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] main from hanzi-chai:main #31

Open
wants to merge 54 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
e294a1a
Add custom element
tansongchen May 24, 2024
a9bb149
Add pruning; improve analysis page
tansongchen May 30, 2024
8c2e239
Make readings customizable
tansongchen Jun 1, 2024
2c5c162
Update libchai
tansongchen Jun 8, 2024
b5f74a7
Add yima
tansongchen Jun 11, 2024
79d6350
Refresh database
tansongchen Jun 22, 2024
8f67341
Format
tansongchen Jun 23, 2024
9bad705
Add yustar
tansongchen Jun 23, 2024
c858cc1
Update test
tansongchen Jun 24, 2024
e51653d
Add snow
tansongchen Jun 24, 2024
55c5b50
Add statistics
tansongchen Jun 25, 2024
b6db7a2
Improve UX
tansongchen Jun 26, 2024
58d5ad3
Fix lint
tansongchen Jun 27, 2024
15b2125
Improve UX
tansongchen Jun 27, 2024
9b8d9e0
Add analyze
tansongchen Jun 28, 2024
87925b6
Fix several bugs; improve UX
tansongchen Jun 28, 2024
707dcc9
Add jdh
tansongchen Jun 29, 2024
04389a3
Real time encoding
tansongchen Jun 29, 2024
302770e
Update packages
tansongchen Jun 29, 2024
27fe368
Add metric table
tansongchen Jun 30, 2024
f4de326
Add instant statistics via s2
tansongchen Jun 30, 2024
f60fdd3
Add statistics
tansongchen Jun 30, 2024
0892a5f
Add c3 serializer
tansongchen Jul 1, 2024
f20a89a
Fix bug in singlerules
tansongchen Jul 5, 2024
f162bd9
Fix pointer problem
tansongchen Jul 5, 2024
320f511
Improve metric display
tansongchen Jul 5, 2024
95f24cf
remove BEX
yb6b Jul 6, 2024
93c4f1c
fix: gh pages
yb6b Jul 6, 2024
0135e2d
add prefetch
yb6b Jul 6, 2024
b464b6f
Fix test; improve UI
tansongchen Jul 6, 2024
870a771
fix: prefetch tygf.txt
yb6b Jul 8, 2024
cb5dcfc
perf: accelerate the analysis function by removing mathjs dependency
yb6b Jul 8, 2024
df647cf
workflow: vscode snippets
yb6b Jul 8, 2024
a8af9e6
add mdx and tailwindcss
yb6b Jul 8, 2024
3d17334
fix: mdx module type
yb6b Jul 9, 2024
2caa146
feat: add changelog button
yb6b Jul 9, 2024
c45aadc
Fix recursion problem
tansongchen Jul 18, 2024
de44cbc
Add bezier page
tansongchen Jun 24, 2024
143f027
[FEAT]add biezer controller, but there is some bugs
YantD729 Jul 3, 2024
724d6b2
the points position is wrong
YantD729 Jul 6, 2024
4f33ba3
Improve ComponentForm
tansongchen Jul 19, 2024
3fe7495
Update yustar
tansongchen Jul 20, 2024
a854a40
Add zhangma
tansongchen Jul 22, 2024
f868593
Fix graph editor
tansongchen Jul 23, 2024
de93b1a
Add dnd for elements
tansongchen Jul 25, 2024
6e8c3ac
Add xuma
tansongchen Jul 25, 2024
6159786
Add huma
tansongchen Jul 27, 2024
efa9fee
Update huma
tansongchen Jul 27, 2024
4c7b71d
optimize analysis
tansongchen Aug 4, 2024
6f720a6
Fix compound roots
tansongchen Aug 4, 2024
c189106
Update libchai
tansongchen Aug 6, 2024
d147019
Add ziyuan
tansongchen Aug 11, 2024
dc6e337
Add zhenma
tansongchen Aug 11, 2024
97ddf80
Add bxm
tansongchen Aug 20, 2024
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ dist-ssr

# Editor directories and files
.vscode/*
!.vscode/*.code-snippets
!.vscode/extensions.json
.idea
.DS_Store
Expand Down
59 changes: 59 additions & 0 deletions .vscode/react.code-snippets
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{
// hanzi-chai.github.io workspace snippets.
// Each snippet is defined under a snippet name and has a scope, prefix, body and description.
"template of react component file": {
"scope": "javascriptreact,typescriptreact",
"prefix": "tmplcomp",
"body": [
"import React, { useState, useEffect, useRef, useReducer } from 'react'",
"import * as A from 'antd'",
"import * as atoms from '~/atoms'",
"",
"",
"//#region $TM_FILENAME_BASE default component",
"export interface ${TM_FILENAME_BASE}Props {",
" $1",
"}",
"export default function ${TM_FILENAME_BASE}(props: ${TM_FILENAME_BASE}Props) {",
" $0",
" return (<>",
" ",
" </>)",
"}",
"//#endregion",
],
"description": "template of react component",
"isFileTemplate": true,
},
"template of component": {
"scope": "javascriptreact,typescriptreact",
"prefix": "comp",
"body": [
"//#region ${1:YourComponent} component",
"interface ${1:YourComponent}Props {",
" $2",
"}",
"",
"function ${1:YourComponent}(props: ${1:YourComponent}Props) {",
" $0",
" return (<>",
" ",
" </>)",
"}",
"//#endregion",
"",
],
},
"import antd components": {
"scope": "javascriptreact,typescriptreact",
"prefix": "impantd",
"body": "import * as A from 'antd'",
"description": "import * as A from 'antd'",
},
"import atoms": {
"scope": "javascriptreact,typescriptreact,javascript,typescript",
"prefix": "impatoms",
"body": "import * as atoms from '~/atoms'",
"description": "import atoms from '~/atoms'",
},
}
Loading