Merge pull request #792 from danielbayerlein/hyperterm-to-hyper-app

HyperTerm 👉 Hyper.app
This commit is contained in:
Tony Kovanen 2016-10-06 20:47:18 +03:00 committed by GitHub
commit a6c1db2b53
5 changed files with 9 additions and 9 deletions

View file

@ -9,7 +9,7 @@ For more details, head to: https://hyper.is
## Usage ## 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: 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 ## Related Repositories
- [Art](https://github.com/zeit/hyperterm-art) - [Art](https://github.com/zeit/art)
- [Website](https://github.com/zeit/hyperterm-website) - [Website](https://github.com/zeit/hyper-website)
- [Sample Extension](https://github.com/zeit/hyperpower) - [Sample Extension](https://github.com/zeit/hyperpower)
- [Sample Theme](https://github.com/zeit/hyperyellow) - [Sample Theme](https://github.com/zeit/hyperyellow)

View file

@ -72,7 +72,7 @@ module.exports = {
// URL to custom bell // URL to custom bell
// bellSoundURL: 'http://example.com/bell.mp3', // 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 // a list of plugins to fetch and install from npm
@ -84,7 +84,7 @@ module.exports = {
plugins: [], plugins: [],
// in development, you can create a directory under // 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 // to load it and avoid it being `npm install`ed
localPlugins: [] localPlugins: []
}; };

View file

@ -1,7 +1,7 @@
<!doctype html> <!doctype html>
<html> <html>
<head> <head>
<title>HyperTerm</title> <title>Hyper.app</title>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0"> <meta name="viewport" content="initial-scale=1.0">

View file

@ -108,7 +108,7 @@ app.on('ready', () => installDevExtensions(isDev).then(() => {
minHeight: 190, minHeight: 190,
minWidth: 370, minWidth: 370,
titleBarStyle: 'hidden-inset', titleBarStyle: 'hidden-inset',
title: 'HyperTerm', title: 'Hyper.app',
backgroundColor: toElectronBackgroundColor(cfg.backgroundColor || '#000'), backgroundColor: toElectronBackgroundColor(cfg.backgroundColor || '#000'),
transparent: true, transparent: true,
icon: resolve(__dirname, 'static/icon.png'), icon: resolve(__dirname, 'static/icon.png'),

View file

@ -322,7 +322,7 @@ module.exports = function createMenu({createWindow, updatePlugins}) {
{ {
label: `${appName} Website`, label: `${appName} Website`,
click() { click() {
shell.openExternal('https://hyperterm.now.sh'); shell.openExternal('https://hyper.is');
} }
}, },
{ {
@ -337,7 +337,7 @@ ${app.getName()} ${app.getVersion()}
Electron ${process.versions.electron} Electron ${process.versions.electron}
${process.platform} ${process.arch} ${os.release()}`; ${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)}`);
} }
} }
] ]