Skip to content

Commit

Permalink
Merge pull request #18 from robinmitra/support-mojave-dark-mode
Browse files Browse the repository at this point in the history
Support Mojave dark mode
  • Loading branch information
robinmitra authored Jun 23, 2019
2 parents 3951fbc + 56118e9 commit f92a574
Show file tree
Hide file tree
Showing 12 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ before_cache:
- rm -rf $HOME/.cache/electron-builder/wine

branches:
except:
- "/^v\\d+\\.\\d+\\.\\d+$/"
only:
- master
Binary file modified build/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const initialise = () => quoteService.initialise().then(menu.initialise);
const createTray = () => {
return initialise()
.then(() => {
tray = new Tray(`${__dirname}/resources/icon/icon.png`);
tray = new Tray(`${__dirname}/resources/icon/iconTemplate.png`);
tray.setToolTip('Gimme Quote - get your daily dose of famous quotes');
tray.setContextMenu(menu.getContextMenu());
})
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gimme-quote",
"version": "0.2.4",
"version": "0.3.0",
"description": "A minimal desktop app for getting your dose of famous quotes.",
"main": "main.js",
"scripts": {
Expand All @@ -13,7 +13,8 @@
"appId": "com.robinmitra.gimme-quote-desktop",
"productName": "Gimme Quote",
"mac": {
"category": "public.app-category.lifestyle"
"category": "public.app-category.lifestyle",
"darkModeSupport": true
}
},
"repository": "https://github.com/robinmitra/gimme-quote-desktop",
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes

0 comments on commit f92a574

Please sign in to comment.