Skip to content

Commit 14fd1f6

Browse files
authored
Merge pull request #13 from manosim/app-tray
Support the Tray position
2 parents 2e0deb3 + 97749db commit 14fd1f6

File tree

21 files changed

+179
-390
lines changed

21 files changed

+179
-390
lines changed

.circleci/config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,5 +86,8 @@ workflows:
8686
requires:
8787
- setup
8888
- build-bundle:
89+
filters:
90+
branches:
91+
only: master
8992
requires:
9093
- run-unit-tests

.gitignore

Lines changed: 76 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,80 @@
1+
# Mac Files
12
.DS_Store
2-
npm-debug.log
33

4-
dist/
5-
coverage/
4+
# Logs
5+
logs
6+
*.log
7+
npm-debug.log*
8+
yarn-debug.log*
9+
yarn-error.log*
10+
lerna-debug.log*
11+
12+
# Diagnostic reports (https://nodejs.org/api/report.html)
13+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
14+
15+
# Runtime data
16+
pids
17+
*.pid
18+
*.seed
19+
*.pid.lock
20+
21+
# Directory for instrumented libs generated by jscoverage/JSCover
22+
lib-cov
23+
24+
# Coverage directory used by tools like istanbul
25+
coverage
26+
*.lcov
27+
28+
# nyc test coverage
29+
.nyc_output
30+
31+
# Compiled binary addons (https://nodejs.org/api/addons.html)
32+
build/Release
33+
34+
# Dependency directories
635
node_modules/
36+
jspm_packages/
37+
38+
# TypeScript v1 declaration files
39+
typings/
40+
41+
# TypeScript cache
42+
*.tsbuildinfo
43+
44+
# Optional npm cache directory
45+
.npm
46+
47+
# Optional eslint cache
48+
.eslintcache
49+
50+
# Optional REPL history
51+
.node_repl_history
52+
53+
# Output of 'npm pack'
54+
*.tgz
55+
56+
# Yarn Integrity file
57+
.yarn-integrity
58+
59+
# dotenv environment variables file
60+
.env
61+
.env.test
62+
63+
# parcel-bundler cache (https://parceljs.org/)
64+
.cache
65+
66+
# Uncomment the public line if your project uses Gatsby
67+
# https://nextjs.org/blog/next-9-1#public-directory-support
68+
# https://create-react-app.dev/docs/using-the-public-folder/#docsNav
69+
# public
70+
71+
# Storybook build outputs
72+
.out
73+
.storybook-out
74+
75+
# Temporary folders
76+
tmp/
77+
temp/
78+
79+
dist/
780
Gitify-darwin-x64/

electron/app-menu-template.js

Lines changed: 0 additions & 146 deletions
This file was deleted.

0 commit comments

Comments
 (0)