diff --git a/package.json b/package.json index 9622af82404..24a4858192d 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { - "name": "element-web", + "name": "elecord-web", "version": "1.11.87", - "description": "A feature-rich client for Matrix.org", - "author": "New Vector Ltd.", + "description": "Privacy focused chat app for gamers", + "author": "hazzuk", "repository": { "type": "git", - "url": "https://github.com/element-hq/element-web" + "url": "https://github.com/elecordapp/elecord-web" }, "license": "AGPL-3.0-only OR GPL-3.0-only", "files": [ diff --git a/scripts/fetchdep.sh b/scripts/fetchdep.sh index 666a74ff67c..df4de14bf29 100755 --- a/scripts/fetchdep.sh +++ b/scripts/fetchdep.sh @@ -11,10 +11,10 @@ rm -r "$defrepo" || true # figure out where to look for pull requests: # - We may have been told an explicit repo via the PR_ORG/PR_REPO/PR_NUMBER env vars # - otherwise, check the $GITHUB_ env vars which are set by Github Actions -# - failing that, fall back to the element-hq/element-web repo. +# - failing that, fall back to the elecordapp/elecord-web repo. # # in ether case, the PR_NUMBER variable must be set explicitly. -default_org_repo=${GITHUB_REPOSITORY:-"element-hq/element-web"} +default_org_repo=${GITHUB_REPOSITORY:-"elecordapp/elecord-web"} PR_ORG=${PR_ORG:-${default_org_repo%%/*}} PR_REPO=${PR_REPO:-${default_org_repo##*/}} diff --git a/scripts/layered.sh b/scripts/layered.sh index 3da209812d7..7fd5f4bafa7 100755 --- a/scripts/layered.sh +++ b/scripts/layered.sh @@ -17,11 +17,11 @@ set -ex yarn install --frozen-lockfile # Pass appropriate repo to fetchdep.sh -export PR_ORG=element-hq -export PR_REPO=element-web +export PR_ORG=elecordapp +export PR_REPO=elecord-web # Set up the js-sdk first -scripts/fetchdep.sh matrix-org matrix-js-sdk develop +scripts/fetchdep.sh elecordapp matrix-js-sdk develop pushd matrix-js-sdk [ -n "$JS_SDK_GITHUB_BASE_REF" ] && git fetch --depth 1 origin $JS_SDK_GITHUB_BASE_REF && git checkout $JS_SDK_GITHUB_BASE_REF yarn link diff --git a/src/components/views/dialogs/ChangelogDialog.tsx b/src/components/views/dialogs/ChangelogDialog.tsx index ae3c157c788..e15299fc0fe 100644 --- a/src/components/views/dialogs/ChangelogDialog.tsx +++ b/src/components/views/dialogs/ChangelogDialog.tsx @@ -30,7 +30,7 @@ interface Commit { }; } -const REPOS = ["element-hq/element-web", "matrix-org/matrix-js-sdk"] as const; +const REPOS = ["elecordapp/elecord-web", "elecordapp/matrix-js-sdk"] as const; export type DevelopVersionString = string & { _developVersionString: never };