Skip to content

Commit

Permalink
feat: add keyboard shortcut to quit the app on Windows (#1202)
Browse files Browse the repository at this point in the history
  • Loading branch information
ykris45 authored and IGassmann committed Mar 30, 2018
1 parent 0201b10 commit 5ba8db6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Expand Up @@ -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


Expand Down Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions src/main/menu/setupBarMenu.js
Expand Up @@ -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: [
Expand Down

0 comments on commit 5ba8db6

Please sign in to comment.