@@ -18,7 +18,7 @@ export const team = [
1818]
1919
2020export async function getLatestRelease ( ) {
21- return fetch ( "https://api.github.com/repos/anomalyco/opencode /releases/latest" )
21+ return fetch ( "https://api.github.com/repos/Latitudes-Dev/shuvcode /releases/latest" )
2222 . then ( ( res ) => {
2323 if ( ! res . ok ) throw new Error ( res . statusText )
2424 return res . json ( )
@@ -39,7 +39,7 @@ export async function getCommits(from: string, to: string): Promise<Commit[]> {
3939
4040 // Get commit data with GitHub usernames from the API
4141 const compare =
42- await $ `gh api "/repos/anomalyco/opencode /compare/${ fromRef } ...${ toRef } " --jq '.commits[] | {sha: .sha, login: .author.login, message: .commit.message}'` . text ( )
42+ await $ `gh api "/repos/Latitudes-Dev/shuvcode /compare/${ fromRef } ...${ toRef } " --jq '.commits[] | {sha: .sha, login: .author.login, message: .commit.message}'` . text ( )
4343
4444 const commitData = new Map < string , { login : string | null ; message : string } > ( )
4545 for ( const line of compare . split ( "\n" ) . filter ( Boolean ) ) {
@@ -195,7 +195,7 @@ export async function getContributors(from: string, to: string) {
195195 const fromRef = from . startsWith ( "v" ) ? from : `v${ from } `
196196 const toRef = to === "HEAD" ? to : to . startsWith ( "v" ) ? to : `v${ to } `
197197 const compare =
198- await $ `gh api "/repos/anomalyco/opencode /compare/${ fromRef } ...${ toRef } " --jq '.commits[] | {login: .author.login, message: .commit.message}'` . text ( )
198+ await $ `gh api "/repos/Latitudes-Dev/shuvcode /compare/${ fromRef } ...${ toRef } " --jq '.commits[] | {login: .author.login, message: .commit.message}'` . text ( )
199199 const contributors = new Map < string , string [ ] > ( )
200200
201201 for ( const line of compare . split ( "\n" ) . filter ( Boolean ) ) {
0 commit comments