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({
|
void dialog.showMessageBox({
|
||||||
title: `About ${appName}`,
|
title: `About ${appName}`,
|
||||||
message: `${appName} ${appVersion} (${updateChannel})`,
|
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: [],
|
buttons: [],
|
||||||
icon: icon as any
|
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;
|
const appName = context.packager.appInfo.productFilename;
|
||||||
return await notarize({
|
return await notarize({
|
||||||
appBundleId: "com.quinefoundation.hyper",
|
appBundleId: "com.quineglobal.hyper",
|
||||||
appPath: `${appOutDir}/${appName}.app`,
|
appPath: `${appOutDir}/${appName}.app`,
|
||||||
appleId: process.env.APPLE_ID,
|
appleId: process.env.APPLE_ID,
|
||||||
appleIdPassword: process.env.APPLE_PASSWORD
|
appleIdPassword: process.env.APPLE_PASSWORD
|
||||||
|
|
|
||||||
|
|
@ -234,7 +234,7 @@ const main = (argv: string[]) => {
|
||||||
options['stdio'] = 'ignore';
|
options['stdio'] = 'ignore';
|
||||||
if (process.platform === 'darwin') {
|
if (process.platform === 'darwin') {
|
||||||
//Use `open` to prevent multiple Hyper process
|
//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 = {
|
const opts = {
|
||||||
env
|
env
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"appId": "com.quinefoundation.hyper",
|
"appId": "com.quineglobal.hyper",
|
||||||
"afterSign": "./bin/notarize.js",
|
"afterSign": "./bin/notarize.js",
|
||||||
"afterPack": "./bin/cp-snapshot.js",
|
"afterPack": "./bin/cp-snapshot.js",
|
||||||
"directories": {
|
"directories": {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue