Skip to content

Commit

Permalink
chore: optimize some ui, add new version change log
Browse files Browse the repository at this point in the history
  • Loading branch information
Okabe-Rintarou-0 committed Aug 21, 2024
1 parent 7f2b7fc commit 20ea271
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 4 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@ sudo xattr -r -d com.apple.quarantine /Applications/SJTU\ Canvas\ Helper.app SJT
<sub><b>wytili</b></sub>
</a>
</td>
<td align="center">
<a href="https://github.com/xeonliu" style="display:inline-block;width:80px">
<img src="https://github.com/xeonliu.png" width="64px;" alt="xeonliu"/><br/>
<sub><b>xeonliu</b></sub>
</a>
</td>
</tr>
</table>

Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

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

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sjtu_canvas_helper"
version = "1.3.12"
version = "1.3.13"
description = "SJTU Canvas Helper"
authors = ["Okabe"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"package": {
"productName": "SJTU Canvas Helper",
"version": "1.3.12"
"version": "1.3.13"
},
"tauri": {
"allowlist": {
Expand Down
6 changes: 6 additions & 0 deletions src/components/change_log_modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ export function ChangeLogModal({ open, onCancel, onOk }: {
overflow: "scroll",
}}>
<Typography>
<Title level={4}>v1.3.13 2024/8/21</Title>
<Paragraph>
<ul>
<li>[Enhancement] 优化“作业批改”中选择学生的方式(源自 PR: <a target="_blank" href="https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper/pull/33">https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper/pull/33</a>)</li>
</ul>
</Paragraph>
<Title level={4}>v1.3.12 2024/6/25</Title>
<Paragraph>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion src/page/submissions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ export default function SubmissionsPage() {
}
{statistic && <GradeStatisticChart statistic={statistic} />}
{/* <Input.Search placeholder="输入学生姓名关键词" onSearch={setKeyword} /> */}
<Select mode="multiple" allowClear style={{ width: '100%' }} placeholder="Please select" onChange={(value) => { setKeywords(value) }} options={options} />
<Select mode="multiple" allowClear style={{ width: '100%' }} placeholder="请选择学生" onChange={(value) => { setKeywords(value) }} options={options} />
<Table style={{ width: "100%" }}
columns={columns}
loading={loading}
Expand Down

0 comments on commit 20ea271

Please sign in to comment.