File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 6969 "build" : {
7070 "productName" : " Gitify" ,
7171 "appId" : " com.electron.gitify" ,
72- "copyright" : " Copyright © 2024 Gitify Team" ,
72+ "copyright" : " Copyright © 2025 Gitify Team" ,
7373 "asar" : true ,
7474 "files" : [
7575 " assets/images/*" ,
8383 "protocols" : [
8484 {
8585 "name" : " Gitify" ,
86- "schemes" : [" gitify" ]
86+ "schemes" : [" gitify" , " gitify-dev " ]
8787 }
8888 ],
8989 "mac" : {
Original file line number Diff line number Diff line change @@ -38,7 +38,9 @@ const menuBuilder = new MenuBuilder(mb);
3838const contextMenu = menuBuilder . buildMenu ( ) ;
3939
4040// Register your app as the handler for a custom protocol
41- app . setAsDefaultProtocolClient ( 'gitify' ) ;
41+ const protocol =
42+ process . env . NODE_ENV === 'development' ? 'gitify-dev' : 'gitify' ;
43+ app . setAsDefaultProtocolClient ( protocol ) ;
4244
4345if ( isMacOS ( ) || isWindows ( ) ) {
4446 /**
You can’t perform that action at this time.
0 commit comments