Skip to content

Commit

Permalink
Final setup of auto update and deployment to Github.
Browse files Browse the repository at this point in the history
  • Loading branch information
carlkuesters committed May 26, 2020
1 parent c70bd8a commit 52ac240
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "destrostudios",
"version": "1.0.3",
"version": "1.0.4",
"description": "Destrostudios cross-game launcher, offering the possibility to login, download, update and start games.",
"author": "destrostudios",
"license": "MIT",
Expand Down
3 changes: 2 additions & 1 deletion src/app/store/reducers/self-update.reducers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ const reducer = createReducer(
initialState,
on(SelfUpdateActions.setAvailable, (state, { isSelfUpdateAvailable }) => ({
...state,
isSelfUpdateAvailable
isSelfUpdateAvailable,
isSelfUpdateDownloaded: (isSelfUpdateAvailable ? false : null)
})),
on(SelfUpdateActions.setDownloaded, (state, { isSelfUpdateDownloaded }) => ({
...state,
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "destrostudios",
"version": "1.0.3",
"version": "1.0.4",
"description": "Destrostudios cross-game launcher, offering the possibility to login, download, update and start games.",
"author": "destrostudios",
"main": "electron-main.js",
Expand Down

0 comments on commit 52ac240

Please sign in to comment.