feat: add keyboard shortcut to quit the app on Windows (#1202)
This commit is contained in:
parent
0201b10e95
commit
5ba8db6b6a
2 changed files with 10 additions and 3 deletions
|
@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
### Added
|
||||
* Add keyboard shortcut to quit the app on Windows ([#1202](https://github.com/lbryio/lbry-app/pull/1202))
|
||||
|
||||
## [0.21.2] - 2018-03-22
|
||||
|
||||
|
||||
|
@ -45,9 +50,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
|||
* LBRY URLs not working on Linux ([#1120](https://github.com/lbryio/lbry-app/issues/1120))
|
||||
* Fix Windows notifications not showing ([#1145](https://github.com/lbryio/lbry-app/pull/1145))
|
||||
* Fix export issues ([#1163](https://github.com/lbryio/lbry-app/pull/1163))
|
||||
|
||||
|
||||
|
||||
|
||||
## [0.20.0] - 2018-01-30
|
||||
|
||||
### Added
|
||||
|
|
|
@ -2,6 +2,10 @@ import { app, Menu, shell } from 'electron';
|
|||
|
||||
export default () => {
|
||||
const template = [
|
||||
{
|
||||
label: 'File',
|
||||
submenu: [{ role: 'quit', accelerator: 'CmdOrCtrl+Q' }],
|
||||
},
|
||||
{
|
||||
label: 'Edit',
|
||||
submenu: [
|
||||
|
|
Loading…
Reference in a new issue