diff --git a/CHANGELOG.md b/CHANGELOG.md index e68df2e..9291c5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,13 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Crash reporter. - Ability to downgrade. -## [0.5.1] - 2019-04-25 +## [0.5.2-beta] - 2019-04-26 +### Fixed +- Auto updater bug. + +## [0.5.1-beta] - 2019-04-25 ### Fixed - Bug fixes that made the application to crash, due too heavy refactoring. - `Reload` button for connections is disabled when connections are being reloaded via timer. - `Enabled`/`Disabled` radio button on modifying existing configuration was not working, due refactoring. -## [0.5.0] - 2019-04-25 +## [0.5.0-beta] - 2019-04-25 ### Added - [Feat #25](https://gitlab.com/kirbo/slothy/issues/25) - One click enable/disable configuration, in `Enabled` column. - [Docs #17](https://gitlab.com/kirbo/slothy/issues/17) - Added JSDocs. diff --git a/package.json b/package.json index fd70eb0..348bedf 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "0.5.1-beta", + "version": "0.5.2-beta", "name": "slothy", "description": "Changes your Slack status based on the SSID you're currently connected to.", "productName": "Slothy", diff --git a/src/container/App/AppProvider.js b/src/container/App/AppProvider.js index eaa75d7..739927f 100644 --- a/src/container/App/AppProvider.js +++ b/src/container/App/AppProvider.js @@ -122,7 +122,7 @@ class AppProvider extends Component { }; componentDidMount = () => { - const { setProperty, appConfigurations } = this.state; + const { setProperty } = this.state; ipcRenderer.send('initialize'); ipcRenderer @@ -240,6 +240,7 @@ class AppProvider extends Component { closeOtherNotifications('update-notification'); }) .on('update-progress', (event, data) => { + const { appConfigurations } = this.state; notification[data.type || 'open']({ message: data.title, description: ,