diff --git a/app/menus/menus/help.ts b/app/menus/menus/help.ts index 3c9214c1..59f0a6d8 100644 --- a/app/menus/menus/help.ts +++ b/app/menus/menus/help.ts @@ -61,11 +61,11 @@ ${JSON.stringify(getPlugins(), null, 2)} \`\`\` `; - const issueURL = `https://github.com/vercel/hyper/issues/new?body=${encodeURIComponent(body)}`; + const issueURL = `https://github.com/quine-global/hyper/issues/new?body=${encodeURIComponent(body)}`; const copyAndSend = () => { clipboard.writeText(body); void shell.openExternal( - `https://github.com/vercel/hyper/issues/new?body=${encodeURIComponent( + `https://github.com/quine-global/hyper/issues/new?body=${encodeURIComponent( '\n' )}` diff --git a/app/package.json b/app/package.json index 076047b8..a88297cf 100644 --- a/app/package.json +++ b/app/package.json @@ -8,7 +8,7 @@ "name": "ZEIT, Inc.", "email": "team@zeit.co" }, - "repository": "zeit/hyper", + "repository": "quine-global/hyper", "scripts": { "postinstall": "npx patch-package" }, diff --git a/app/updater.ts b/app/updater.ts index f32b27bb..62741738 100644 --- a/app/updater.ts +++ b/app/updater.ts @@ -94,7 +94,7 @@ const updater = (win: BrowserWindow) => { const {rpc} = win; const onupdate = (ev: Event, releaseNotes: string, releaseName: string, date: Date, updateUrl: string) => { - const releaseUrl = updateUrl || `https://github.com/vercel/hyper/releases/tag/${releaseName}`; + const releaseUrl = updateUrl || `https://github.com/quine-global/hyper/releases/tag/${releaseName}`; rpc.emit('update available', {releaseNotes, releaseName, releaseUrl, canInstall: !isLinux}); }; diff --git a/bin/notarize.js b/bin/notarize.js index 8cce22a3..f839c9f3 100644 --- a/bin/notarize.js +++ b/bin/notarize.js @@ -8,7 +8,7 @@ exports.default = async function notarizing(context) { const appName = context.packager.appInfo.productFilename; return await notarize({ - appBundleId: "co.zeit.hyper", + appBundleId: "com.quinefoundation.hyper", appPath: `${appOutDir}/${appName}.app`, appleId: process.env.APPLE_ID, appleIdPassword: process.env.APPLE_PASSWORD diff --git a/cli/index.ts b/cli/index.ts index 86dbc414..275a3132 100644 --- a/cli/index.ts +++ b/cli/index.ts @@ -234,7 +234,7 @@ const main = (argv: string[]) => { options['stdio'] = 'ignore'; if (process.platform === 'darwin') { //Use `open` to prevent multiple Hyper process - const cmd = `open -b co.zeit.hyper ${args_}`; + const cmd = `open -b com.quinefoundation.hyper ${args_}`; const opts = { env }; diff --git a/electron-builder.json b/electron-builder.json index e5f0d691..b01cab6e 100644 --- a/electron-builder.json +++ b/electron-builder.json @@ -1,6 +1,6 @@ { "$schema": "http://json.schemastore.org/electron-builder", - "appId": "co.zeit.hyper", + "appId": "com.quinefoundation.hyper", "afterSign": "./bin/notarize.js", "afterPack": "./bin/cp-snapshot.js", "directories": { diff --git a/lib/components/notifications.tsx b/lib/components/notifications.tsx index 79e6ede3..8100ff53 100644 --- a/lib/components/notifications.tsx +++ b/lib/components/notifications.tsx @@ -78,7 +78,7 @@ const Notifications = forwardRef((props, ref void window.require('electron').shell.openExternal(ev.currentTarget.href); ev.preventDefault(); }} - href={`https://github.com/vercel/hyper/releases/tag/${props.updateVersion}`} + href={`https://github.com/quine-global/hyper/releases/tag/${props.updateVersion}`} > notes diff --git a/package.json b/package.json index ca4c35ad..eb5f5b31 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "hyper", "version": "4.0.0q-canary.6", - "repository": "zeit/hyper", + "repository": "quine-global/hyper", "scripts": { "start": "echo 'please run `yarn run dev` in one tab and then `yarn run app` in another one'", "app": "cross-env ELECTRONMON_LOGLEVEL=error electronmon target",