Skip to content

Commit

Permalink
Update to version 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
vaverix committed Apr 30, 2020
1 parent 6feb8e2 commit 20239c9
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Desktop application that allows you to log-in into multiple Twitch.tv channels a
Doesn't matter if you wanna grind channel points or just be aware if someone is talking about you, this app is for you!

![Screenshot](screen1.png)

![Screenshot](screen2.png)

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vaverix-twitch-bot",
"description": "Desktop application that allows you to log-in into multiple Twitch.tv channels at once. It also notifies you when someone mentions you in any channel you choose and has couple of other extra features.",
"author": "vaverix",
"version": "0.0.3",
"version": "0.0.4",
"license": "MIT",
"scripts": {
"dev": "electron-webpack dev",
Expand Down
Binary file modified screen1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screen2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 7 additions & 1 deletion src/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,13 @@ app.on('ready', () => {
mainWindow = createMainWindow()
// check for updates
autoUpdater.checkForUpdatesAndNotify()
setInterval(autoUpdater.checkForUpdatesAndNotify, 600000)
setInterval(() => {
try {
autoUpdater.checkForUpdatesAndNotify()
} catch (error) {
console.log(error)
}
}, 600000)
})

const getWindowPosition = () => {
Expand Down

0 comments on commit 20239c9

Please sign in to comment.