feat: add keyboard shortcut to quit the app on Windows #1202
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/).
|
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
|
## [0.21.2] - 2018-03-22
|
||||||
|
|
||||||
|
|
||||||
|
@ -45,8 +50,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
||||||
* Fix Windows notifications not showing ([#1145](https://github.com/lbryio/lbry-app/pull/1145))
|
* 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))
|
* Fix export issues ([#1163](https://github.com/lbryio/lbry-app/pull/1163))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [0.20.0] - 2018-01-30
|
## [0.20.0] - 2018-01-30
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -2,6 +2,10 @@ import { app, Menu, shell } from 'electron';
|
||||||
|
|
||||||
export default () => {
|
export default () => {
|
||||||
const template = [
|
const template = [
|
||||||
|
{
|
||||||
|
label: 'File',
|
||||||
|
submenu: [{ role: 'quit', accelerator: 'CmdOrCtrl+Q' }],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: 'Edit',
|
label: 'Edit',
|
||||||
submenu: [
|
submenu: [
|
||||||
|
|
Loading…
Reference in a new issue