From 601c7aa25003ad9feafe726d7d93b1e07e42339b Mon Sep 17 00:00:00 2001 From: Philip Peterson Date: Sun, 27 Apr 2025 01:04:36 -0700 Subject: [PATCH] [tweak] use quine global branding --- app/menus/menu.ts | 11 ++++++++++- bin/notarize.js | 2 +- cli/index.ts | 2 +- electron-builder.json | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/app/menus/menu.ts b/app/menus/menu.ts index 140d8b42..9162803f 100644 --- a/app/menus/menu.ts +++ b/app/menus/menu.ts @@ -56,7 +56,16 @@ export const createMenu = ( void dialog.showMessageBox({ title: `About ${appName}`, message: `${appName} ${appVersion} (${updateChannel})`, - detail: `Renderers: ${renderers}\nPlugins: ${pluginList}\n\nCreated by Guillermo Rauch\nCopyright © 2022 Vercel, Inc.`, + detail: ` + Renderers: ${renderers} + Plugins: ${pluginList} + + Maintained by QUINE Global + Copyright © 2025 + + Created by Guillermo Rauch + Copyright © 2022 Vercel, Inc. + `.split('\n').map(z => z.trim()).join('\n'), buttons: [], icon: icon as any }); diff --git a/bin/notarize.js b/bin/notarize.js index f839c9f3..d4ce1ef4 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: "com.quinefoundation.hyper", + appBundleId: "com.quineglobal.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 275a3132..9e8e1aa5 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 com.quinefoundation.hyper ${args_}`; + const cmd = `open -b com.quineglobal.hyper ${args_}`; const opts = { env }; diff --git a/electron-builder.json b/electron-builder.json index dff5cb05..a692fa9a 100644 --- a/electron-builder.json +++ b/electron-builder.json @@ -1,5 +1,5 @@ { - "appId": "com.quinefoundation.hyper", + "appId": "com.quineglobal.hyper", "afterSign": "./bin/notarize.js", "afterPack": "./bin/cp-snapshot.js", "directories": {