Releases: vercel/hyper
1.2.0
Bye tab focus issue! + Lots of Win/Linux fixes
Improvements
Fix dragging and dropping URLs into the terminal.
- Inserts them as text into the shell instead of navigating!
- Thanks @grahamkennery df0a3c6
Add right click to copy
- Configurable via `quickEdit` in `~/.hyper.js`. - Default `true` for Windows, `false` otherwise - Thanks @Specro 270fe5bOthers
- Make the scrollbar look the same on all platforms (@stefanivic) ed28256
- Make titlebar look better on Windows (@paulcbetts) 0ff1cb9
Bugfixes
- Fixed plugin installation in the Fish shell (@knewter) 6fac65e
- Fixed "shell configuration change" warning when the shell hasn't changed (@matheuss) d44deb3
- Fixed copy+paste for Linux and Windows (@matheuss) b4943a0
- Fixed up/down on Bash for Windows via
node-pty
(@Tyriar)
Meta-improvements
Improvements on the docs, plugin hooks, DX, …
- Fix task (
npm run pack
) for producing a prod-like bundle during dev (@rauchg) 2094765 - Add instructions to install via Chocolatey (@chantisnake) 62c0f80
- The Hyper website is now under this main repo (under
./website
) to simplify docs contributions (@matheuss) - Bump webpack to
2.2.0
(@matheuss) 40d5c2f - Update Windows installations instructions (@felixrieseberg) 6f75865
- Add
reduceTermGroups
docs reference for plugin authors (@chabou) a2accca - Improve notes for
node-pty
compilation (@matheuss) 28e7e8e
Credits
1.1.0
20% faster bootup + bug fixes + better plugin DX
We improved bootup time by making the JS bundle 20% faster (parse and evaluation time).
We also fixed a race condition seen if you had special characters in the first data packet coming from the terminal (e.g.: the prompt), which could sometimes be rendered as follows:
Many other fixes from multiple contributors! Read on…
Minor Changes
Patches
- Ensure line endings are correct on Windows: #1230
- Prevent loosing focus after a char composition ended by Tab key (fix #1341): #1349
- Scrollbar Fix on macOS (fix #100) #1354
- Fix decoding race condition with new terminal sessions: #1366
- 20% faster bootup time: #1350
Credits
Huge thanks to @timneutkens, @chabou, @paulcbetts, @micopc and @rauchg for their help!
1.0.1
Perf improvements and URL, emojis, + bug fixes 😱
- Fix lingering text selection upon paste (#819, PR #1218) [@ppot]
- Fix matching of URLs (#1253, #1210, #1042 , #910, #594, #97, PR #1216, PR #1259) [@KevinRamsunder, @ppot]
- Fix issues with zsh and improve unicode performance (#1131, #1116, #96, PR #1111) [@dotcypress]
- Add
Consolas
to the list of default fonts for Windows (PR #1196) [@mqudsi] - Reset background color after reloading (PR #1262) [@ppot]
line-height
improvements for rendering emoji (PR #1322) [@dotcypress]
Also note-worthy: URL support will probably move into a core plugin in the near future_.
We'll be introducing, highlighting and documenting a series of core-maintained plugins that you'll be able to include as @hyper/plugin
inside your config 🎉
1.0.0
Hyper 1.0.0 is here!
Windows support and improved Linux support
We are very excited to announce that we now support Windows – and we're also shipping a first-class Linux version:
- We moved from [`child_pty`](https://github.com/Gottox/child_pty) to [`pty.js`](https://github.com/Tyriar/pty.js) – they're both great libraries to interact with a pseudo terminal, but just the latter supports Windows – https://github.com//pull/946/commits/33844425a9fb094cbcd64a596d813ace96c68d40 – [Thanks @Tyriar] - We rewrote the UI for the tabs in order for them to work with Electron's constraints on Windows and Linux – https://github.com//pull/946/commits/f8a8da645fecc2f7c7e33587bc4b14f267cf9842 – [@codetheory] - We added a _hamburguer menu_ so the application menu can be easily accessed – [@codetheory + @evilrabbit] Check #946 and #1058 for more infoImproved internationalization and foreign keyboards support
We are shipping a fix for a very common issue: if you're using a foreign keyboard, such as Portuguese, Norwegian, Swedish etc, you weren't able to type some characters like á
, ä
, ~
and so on. That's not the case anymore!
Unicode and emojis
This version comes with an initial fix for issues with special Unicode characters – and Emojis 😍. Thanks to our amazing contributors, you will now see the following instead of a bunch of �s:
- We patched `hterm` to make it handle strings with _special_ Unicode characters correctly – some emojis are composed of multiple characters, so we need to be careful when splitting a string to render it https://github.com//pull/1018 – [@dotcypress] - We also patched the way `hterm` render special Unicode chars – we now wrap each one with a `` instead of wrapping the entire line – https://github.com//pull/740 – [@BenoitAverty]Customize the look of the active session
Now you can customize the look of the active session via the .term_active
CSS class:
- The active
<Term />
will receive anactive
CSS class. Therefore, after the rendering, the.term_active
CSS class will be available. You can use it (and the absence of it) to customize any CSS property for the active split pane – #905 – [@weslleyaraujo] - Check
hyper-simple-highlight-active-session
for an example of how to use it.
Vibrancy
We are shipping a new Electron version that supports vibrancy on macOS:
- You can choose from a list of available vibrancy types. Make sure to check
hyper-simple-vibrancy
for an example of how to do it – you will need to set a background color with some level of transparency to get a proper vibrancy effect
Further improved developer experience
We have improved the development workflow – we hope that we made easier for you to contribute:
- Instead of using a unified
start
task withconcurrently
, we now have separatedev
andstart
tasks. This means that Hyper will not fail to boot anymore because Webpack is still working – ed76f4e - We introduced a
lint
task, so you can run only the linter to check if your code style match ours – 332d303
Special thanks
We'd like to thank these 22 contributors for their amazing work on Hyper – they made this release possible!
❤️ @BenoitAverty @breber @chabou @codetheory @davegomez @dfrankland @dotcypress @evilrabbit @flyngate @iamstarkov @mike-engel @oliverdunk @parro-it @ppot @Specro @stefanivic @timneutkens @Tyriar @vors @weslleyaraujo @zbuttram ❤️
0.8.3
0.8.2
Many fixes, including paste ヘ(◕。◕ヘ)
Bug fixes
- Temporary workaround for paste bug [@flybayer]
- Bump
gaze
to prevent uncaught JavaScript exceptions during runtime [@rauchg]
Performance improvements
- Only attempt to fetch remote notifications in the main process, instead of each window [@ekmartin]
UI improvements
- Set default cursor opacity to 0.8 [@chabou]
- Set default background to white for webviews [@colepeters]
DX improvements
- Expose
Component
to plugin authors [@timneutkens] - Build Linux packages for 32 and 64 bit architectures [@fearphage]
- Run tests in Travis [@fearphage]
- Fix linting issues [@maxdeviant, @ekmartin]
- Fix lots of typos and finish renaming [@kenma9123, @shime, @danielbayerlein, @codetheory]
We received commits from 12 authors for this release. It's only been 9 days since 0.8.1! Thank you!
0.8.1
New name
Per our announcement, we've renamed:
.hyperterm.js
=>.hyper.js
.hyperterm_modules
=>.hyper_modules
When you first launch the app, we migrate you config automatically. Plugins will re-install automatically under the new location, and you can delete .hyperterm_modules
manually later. You might see some plugin error notifications while that happens.
Splits
This version adds horizontal and vertical splits (⌘+D and ⌘+Shift+D)
For plugin developers, we've added new actions and reducers to be able to control these. See term-groups.
Transparency support
I've refactored the tab bar (which might break some themes in the short run) so that it's 100% compatible with transparency support
Some bugs exist in regards to the implementation of transparency in both Electron and Chrome, but this new release prepares us for the future. Almost every color configurable in .hyper.js
Window position and size memorization
Unless you configure a specific size and position in your config, we know remember the last used one across re-launches and new windows
Window cascading
New windows open automatically at an offset to avoid overlapping
DX improvements
We've improved a lot of the workflows related to running tests, linting, starting development (it now just takes a npm start
to run webpack and launch electron).
We've started using xo
by @sindresorhus for consistent styling across the entire codebase