chore: change repo

This commit is contained in:
Fu Diwei
2025-06-17 16:27:35 +08:00
parent 205275b52d
commit b8bbbee1e0
369 changed files with 832 additions and 833 deletions

View File

@@ -28,7 +28,7 @@ const Version = ({ className, style }: VersionProps) => {
<Divider type="vertical" />
<Badge styles={{ indicator: { transform: "scale(0.75) translate(50%, -50%)" } }} count={hasNewVersion ? "NEW" : undefined}>
<Typography.Link type="secondary" href="https://github.com/usual2970/certimate/releases" target="_blank">
<Typography.Link type="secondary" href="https://github.com/certimate-go/certimate/releases" target="_blank">
{version}
</Typography.Link>
</Badge>

View File

@@ -38,7 +38,7 @@ const compareVersions = (a: string, b: string) => {
const useVersionChecker = () => {
const { data, refresh } = useRequest(
async () => {
const releases = await fetch("https://api.github.com/repos/usual2970/certimate/releases")
const releases = await fetch("https://api.github.com/repos/certimate-go/certimate/releases")
.then((res) => res.json())
.then((res) => Array.from(res));