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 69
69
"build" : {
70
70
"productName" : " Gitify" ,
71
71
"appId" : " com.electron.gitify" ,
72
- "copyright" : " Copyright © 2024 Gitify Team" ,
72
+ "copyright" : " Copyright © 2025 Gitify Team" ,
73
73
"asar" : true ,
74
74
"files" : [
75
75
" assets/images/*" ,
83
83
"protocols" : [
84
84
{
85
85
"name" : " Gitify" ,
86
- "schemes" : [" gitify" ]
86
+ "schemes" : [" gitify" , " gitify-dev " ]
87
87
}
88
88
],
89
89
"mac" : {
Original file line number Diff line number Diff line change @@ -38,7 +38,9 @@ const menuBuilder = new MenuBuilder(mb);
38
38
const contextMenu = menuBuilder . buildMenu ( ) ;
39
39
40
40
// 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 ) ;
42
44
43
45
if ( isMacOS ( ) || isWindows ( ) ) {
44
46
/**
You can’t perform that action at this time.
0 commit comments