From b5bf17a1ea43b21d72b8bd95e4b7a53e90fe4dfc Mon Sep 17 00:00:00 2001 From: Hugh Lilly Date: Thu, 22 Sep 2022 11:52:16 +1200 Subject: [PATCH 1/2] Change action when clicking on GitHub icon Opens GitHub notifcations page instead of Gitify repo (which can be opened by clicking the app's icon) --- src/components/Sidebar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Sidebar.tsx b/src/components/Sidebar.tsx index be3364ff0..895426eab 100644 --- a/src/components/Sidebar.tsx +++ b/src/components/Sidebar.tsx @@ -91,8 +91,8 @@ export const Sidebar: React.FC = () => {
From bb2c866e34ec102c90e3d74c968a3cc7357dd376 Mon Sep 17 00:00:00 2001 From: Hugh Lilly Date: Fri, 23 Sep 2022 17:57:28 +1200 Subject: [PATCH 2/2] Sets more appropriate dimensions for `authWindow` --- src/utils/auth.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/auth.ts b/src/utils/auth.ts index f89a7e4c0..3f1d5aad9 100644 --- a/src/utils/auth.ts +++ b/src/utils/auth.ts @@ -12,8 +12,8 @@ export const authGitHub = ( return new Promise((resolve, reject) => { // Build the OAuth consent page URL const authWindow = new BrowserWindow({ - width: 800, - height: 600, + width: 548, + height: 780, show: true, });