File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " twester" ,
33 "productName" : " Twester" ,
4- "version" : " 0.2.6 " ,
4+ "version" : " 0.2.9 " ,
55 "description" : " Twitch channel points without watching Twitch!" ,
66 "main" : " ./dist/main/main.js" ,
77 "author" : {
Original file line number Diff line number Diff line change 11{
22 "name" : " twester" ,
3- "version" : " 0.2.6 " ,
3+ "version" : " 0.2.9 " ,
44 "productName" : " Twester" ,
55 "description" : " Twitch channel points without watching Twitch!" ,
66 "scripts" : {
Original file line number Diff line number Diff line change @@ -109,7 +109,11 @@ const createWindow = async () => {
109109
110110 // Check for update once app is loading
111111 mainWindow . once ( 'ready-to-show' , ( ) => {
112- autoUpdater . checkForUpdatesAndNotify ( ) ;
112+ // We don't want to check for updates on macOS as our releases are not
113+ // code signed and it's a requirement for macOS.
114+ if ( process . platform !== 'darwin' ) {
115+ autoUpdater . checkForUpdatesAndNotify ( ) ;
116+ }
113117 } ) ;
114118} ;
115119
You can’t perform that action at this time.
0 commit comments