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/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/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",