Skip to content

Commit

Permalink
ui: change patch notes target (#79)
Browse files Browse the repository at this point in the history
* ui: change patch notes target

* soc link
  • Loading branch information
or2e committed Oct 9, 2023
1 parent ada3201 commit eaeb970
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Application/Common/Services/IPatchNotesService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public async Task<IList<PatchNotes>> GetPatchNotesAsync(CancellationToken cancel
IList<PatchNotes>? patchNotes;
try
{
var res = await _githubHttpClient.GetFromJsonAsync<GithubRelease[]>("repos/verdie-g/crpg/releases",
var res = await _githubHttpClient.GetFromJsonAsync<GithubRelease[]>("repos/namidaka/crpg/releases",
cancellationToken);
patchNotes = res!
.Select(r => new PatchNotes(r.Id.ToString(), r.Name, r.HtmlUrl, r.PublishedAt))
Expand Down
2 changes: 1 addition & 1 deletion src/WebUI/src/components/app/PatchNotes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const timeAgo = useLocaleTimeAgo(new Date(latestPatch.value.createdAt));
</a>
<div v-if="patchNotes.length > 1" class="pl-5">
<a
href="https://github.com/verdie-g/crpg/releases"
href="https://github.com/namidaka/crpg/releases"
class="text-[0.85rem] text-content-300 underline hover:no-underline"
>
{{ $t('patchNotes.showAllPatches', { count: patchNotes.length - 1 }) }}
Expand Down
2 changes: 1 addition & 1 deletion src/WebUI/src/components/app/Socials.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const socialsLinks: SocialLink[] = [
id: 'github',
title: 'Github',
icon: 'github',
href: 'https://github.com/verdie-g/crpg',
href: 'https://github.com/namidaka/crpg',
},
];
Expand Down

0 comments on commit eaeb970

Please sign in to comment.