mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
Merge pull request #792 from danielbayerlein/hyperterm-to-hyper-app
HyperTerm 👉 Hyper.app
This commit is contained in:
commit
a6c1db2b53
5 changed files with 9 additions and 9 deletions
|
|
@ -9,7 +9,7 @@ For more details, head to: https://hyper.is
|
|||
|
||||
## Usage
|
||||
|
||||
You can download the latest release [here](https://hyperterm.org/#installation).
|
||||
You can download the latest release [here](https://hyper.is/#installation).
|
||||
|
||||
If you're on macOS, you can also use [Homebrew Cask](https://caskroom.github.io/) to download the app by running these commands:
|
||||
|
||||
|
|
@ -35,7 +35,7 @@ After that, you'll see the binary in the `./dist` folder!
|
|||
|
||||
## Related Repositories
|
||||
|
||||
- [Art](https://github.com/zeit/hyperterm-art)
|
||||
- [Website](https://github.com/zeit/hyperterm-website)
|
||||
- [Art](https://github.com/zeit/art)
|
||||
- [Website](https://github.com/zeit/hyper-website)
|
||||
- [Sample Extension](https://github.com/zeit/hyperpower)
|
||||
- [Sample Theme](https://github.com/zeit/hyperyellow)
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ module.exports = {
|
|||
// URL to custom bell
|
||||
// bellSoundURL: 'http://example.com/bell.mp3',
|
||||
|
||||
// for advanced config flags please refer to https://hyperterm.org/#cfg
|
||||
// for advanced config flags please refer to https://hyper.is/#cfg
|
||||
},
|
||||
|
||||
// a list of plugins to fetch and install from npm
|
||||
|
|
@ -84,7 +84,7 @@ module.exports = {
|
|||
plugins: [],
|
||||
|
||||
// in development, you can create a directory under
|
||||
// `~/.hyperterm_plugins/local/` and include it here
|
||||
// `~/.hyper_plugins/local/` and include it here
|
||||
// to load it and avoid it being `npm install`ed
|
||||
localPlugins: []
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<title>HyperTerm</title>
|
||||
<title>Hyper.app</title>
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="initial-scale=1.0">
|
||||
|
|
|
|||
|
|
@ -108,7 +108,7 @@ app.on('ready', () => installDevExtensions(isDev).then(() => {
|
|||
minHeight: 190,
|
||||
minWidth: 370,
|
||||
titleBarStyle: 'hidden-inset',
|
||||
title: 'HyperTerm',
|
||||
title: 'Hyper.app',
|
||||
backgroundColor: toElectronBackgroundColor(cfg.backgroundColor || '#000'),
|
||||
transparent: true,
|
||||
icon: resolve(__dirname, 'static/icon.png'),
|
||||
|
|
|
|||
|
|
@ -322,7 +322,7 @@ module.exports = function createMenu({createWindow, updatePlugins}) {
|
|||
{
|
||||
label: `${appName} Website`,
|
||||
click() {
|
||||
shell.openExternal('https://hyperterm.now.sh');
|
||||
shell.openExternal('https://hyper.is');
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
@ -337,7 +337,7 @@ ${app.getName()} ${app.getVersion()}
|
|||
Electron ${process.versions.electron}
|
||||
${process.platform} ${process.arch} ${os.release()}`;
|
||||
|
||||
shell.openExternal(`https://github.com/zeit/hyperterm/issues/new?body=${encodeURIComponent(body)}`);
|
||||
shell.openExternal(`https://github.com/zeit/hyper/issues/new?body=${encodeURIComponent(body)}`);
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in a new issue