Skip to content

Commit

Permalink
chore: fix uigf links
Browse files Browse the repository at this point in the history
  • Loading branch information
lgou2w committed Jun 17, 2024
1 parent 85eb231 commit cd51211
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
- [x] 管理游戏的多个账号。
- [x] 获取游戏的抽卡链接。
- [x] 获取抽卡记录并保存到本地数据库文件。
- [x] 实现 [`UIGF`](https://uigf.org/zh/standards/UIGF.html) 统一可交换祈愿记录标准。
- [x] 实现 [`SRGF`](https://uigf.org/zh/standards/SRGF.html) 星穹铁道抽卡记录标准。
- [x] 实现 [`UIGF`](https://uigf.org/zh/standards/uigf.html) 统一可交换祈愿记录标准。
- [x] 实现 [`SRGF`](https://uigf.org/zh/standards/srgf.html) 星穹铁道抽卡记录标准。
- [ ] 更多开发中...

<details>
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/src/gacha/srgf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use serde::{Deserialize, Serialize};
use std::io::{Read, Write};
use time::OffsetDateTime;

// See: https://uigf.org/zh/standards/SRGF.html
// See: https://uigf.org/zh/standards/srgf.html

const SRGF_VERSION: &str = "v1.0";

Expand Down
2 changes: 1 addition & 1 deletion src-tauri/src/gacha/uigf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use std::io::{Read, Write};
use time::format_description;
use time::OffsetDateTime;

// See: https://uigf.org/zh/standards/UIGF.html
// See: https://uigf.org/zh/standards/uigf.html

const UIGF_VERSION: &str = "v2.2";

Expand Down
4 changes: 2 additions & 2 deletions src/routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,14 @@ export default function Index () {
</li>
<li>
{'实现 '}
<MuiLink href="https://uigf.org/zh/standards/UIGF.html" target="_blank" underline="hover">
<MuiLink href="https://uigf.org/zh/standards/uigf.html" target="_blank" underline="hover">
<code>UIGF</code>
</MuiLink>
{' 统一可交换祈愿记录标准。'}
</li>
<li>
{'实现 '}
<MuiLink href="https://uigf.org/zh/standards/SRGF.html" target="_blank" underline="hover">
<MuiLink href="https://uigf.org/zh/standards/srgf.html" target="_blank" underline="hover">
<code>SRGF</code>
</MuiLink>
{' 星穹铁道抽卡记录标准'}
Expand Down

0 comments on commit cd51211

Please sign in to comment.