Skip to content

Commit ef90c9d

Browse files
committed
v0.2.9
1 parent 88588e1 commit ef90c9d

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

build/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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": {

src/main/main.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)