From 6a5ddc0c70f78850830296bad415f0e04782b8c1 Mon Sep 17 00:00:00 2001 From: Daniel Bayerlein Date: Thu, 6 Oct 2016 19:33:08 +0200 Subject: [PATCH] =?UTF-8?q?HyperTerm=20=F0=9F=91=89=20Hyper.app?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 6 +++--- app/config-default.js | 4 ++-- app/index.html | 2 +- app/index.js | 2 +- app/menu.js | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index dfe29cd6..1a00e7ac 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/app/config-default.js b/app/config-default.js index 2abf4166..7382413d 100644 --- a/app/config-default.js +++ b/app/config-default.js @@ -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: [] }; diff --git a/app/index.html b/app/index.html index 4269a513..2f3c458f 100644 --- a/app/index.html +++ b/app/index.html @@ -1,7 +1,7 @@ - HyperTerm + Hyper.app diff --git a/app/index.js b/app/index.js index a4b3425c..4d6c66df 100644 --- a/app/index.js +++ b/app/index.js @@ -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'), diff --git a/app/menu.js b/app/menu.js index ae4de9f1..c942a162 100644 --- a/app/menu.js +++ b/app/menu.js @@ -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)}`); } } ]