Skip to content

Commit

Permalink
Version 0.5.2-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirbo committed Apr 25, 2019
1 parent 334e4e5 commit 08478f4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
3 changes: 2 additions & 1 deletion src/container/App/AppProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ class AppProvider extends Component {
};

componentDidMount = () => {
const { setProperty, appConfigurations } = this.state;
const { setProperty } = this.state;
ipcRenderer.send('initialize');

ipcRenderer
Expand Down Expand Up @@ -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: <Progress percent={((data.progress.percent).toFixed(2))} status={data.progress.percent < 100 ? 'active' : 'success'} />,
Expand Down

0 comments on commit 08478f4

Please sign in to comment.