Skip to content

Commit

Permalink
Merge branch 'main' into feat/launch-minimized
Browse files Browse the repository at this point in the history
  • Loading branch information
setchy committed May 12, 2024
2 parents e742c0d + a013411 commit 72dcce9
Show file tree
Hide file tree
Showing 25 changed files with 499 additions and 264 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Expand Up @@ -38,6 +38,7 @@ body:
label: Gitify Version
description: What version of Gitify are you using?
options:
- 5.5.0
- 5.4.0
- 5.3.0
- 5.2.0
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
@@ -1 +1 @@
20.12.2
20.13.1
8 changes: 2 additions & 6 deletions main.js
Expand Up @@ -62,12 +62,8 @@ menubarApp.on('ready', () => {
}
});

ipcMain.handle('get-platform', async () => {
return process.platform;
});
ipcMain.handle('get-app-version', async () => {
return app.getVersion();
});
ipcMain.handle('get-platform', () => process.platform);
ipcMain.handle('get-app-version', () => app.getVersion());

ipcMain.on('reopen-window', () => menubarApp.showWindow());
ipcMain.on('hide-window', () => menubarApp.hideWindow());
Expand Down
10 changes: 5 additions & 5 deletions package.json
Expand Up @@ -118,25 +118,25 @@
"react": "18.3.1",
"react-dom": "18.3.1",
"react-final-form": "6.5.9",
"react-router-dom": "6.23.0",
"react-router-dom": "6.23.1",
"react-transition-group": "4.4.5",
"ts-loader": "9.5.1",
"typescript": "5.4.5"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@electron/notarize": "2.3.0",
"@testing-library/react": "15.0.6",
"@testing-library/react": "15.0.7",
"@types/jest": "29.5.12",
"@types/node": "20.12.8",
"@types/node": "20.12.11",
"@types/nprogress": "0.2.3",
"@types/react": "18.3.1",
"@types/react-router-dom": "5.3.3",
"@types/react-test-renderer": "18.3.0",
"@types/react-transition-group": "4.4.10",
"autoprefixer": "10.4.19",
"css-loader": "7.1.1",
"electron": "30.0.2",
"electron": "30.0.3",
"electron-builder": "24.13.3",
"graphql-tag": "2.12.6",
"husky": "9.0.11",
Expand All @@ -146,7 +146,7 @@
"postcss": "8.4.38",
"postcss-loader": "8.1.1",
"react-test-renderer": "18.3.1",
"rimraf": "5.0.5",
"rimraf": "5.0.6",
"style-loader": "4.0.0",
"tailwindcss": "3.4.3",
"ts-jest": "29.1.2",
Expand Down

0 comments on commit 72dcce9

Please sign in to comment.