mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
[tweak] use quine global branding
This commit is contained in:
parent
d660fbdd0e
commit
601c7aa250
4 changed files with 13 additions and 4 deletions
|
|
@ -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
|
||||
});
|
||||
|
|
|
|||
2
bin/notarize.js
vendored
2
bin/notarize.js
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"appId": "com.quinefoundation.hyper",
|
||||
"appId": "com.quineglobal.hyper",
|
||||
"afterSign": "./bin/notarize.js",
|
||||
"afterPack": "./bin/cp-snapshot.js",
|
||||
"directories": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue