Skip to content

Commit

Permalink
Version 0.5.3-beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirbo committed Feb 5, 2020
2 parents 296ced8 + 07fdb1c commit 83f84b5
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,25 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Work in progress]
### Added
- Crash reporter.

## [Unreleased]

## [0.5.3-beta2] - 2020-02-05
### Changed
- `allowDowngrade` is always `true`, so if you have opt enabled pre-releases and want to switch back to latest stable, just
disable `Allow pre-releases`, check updates, install and restart the app and you're back in the latest stable version.
Also if I have accidentally published buggy version of the app and want to relete the release (and you have already updated),
you would have in-app option to downgrade into latest stable version with ease.

### Fixed
- Fixed changelog, since Crash reporter was not finished yet (it's been too long since the last time I opened this project,
so I thought it was ready, because it was listed in Changelog).

## [0.5.3-beta1] - 2020-02-05
### Added
- Crash reporter.
- Ability to downgrade.

### Changed
Expand Down Expand Up @@ -38,7 +52,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [Docs #17](https://gitlab.com/kirbo/slothy/issues/17) - Added JSDocs.

### Fixed
- [Bug #26](https://gitlab.com/kirbo/slothy/issues/26) - No longer showing the ❌ in the `Enabled` column for SSIDs/BSSIDs which don't have confirutation yet, as it was misleading.
- [Bug #26](https://gitlab.com/kirbo/slothy/issues/26) - No longer showing the ❌ in the `Enabled` column for SSIDs/BSSIDs which don't have configuration yet, as it was misleading.

### Changed
- [Refactoring #14](https://gitlab.com/kirbo/slothy/issues/14) - Making application somewhat more robust and to log more useful debug data on errors.
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.3-beta1",
"version": "0.5.3-beta2",
"name": "slothy",
"description": "Changes your Slack status based on the SSID you're currently connected to.",
"productName": "Slothy",
Expand Down
4 changes: 2 additions & 2 deletions src/container/View/Configuration/Configuration.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ const Configuration = () => (
const updateAppConfiguration = (property, keys) => value => {
const newValues = keys.reduce((newConfig, key) => {
if (key === 'allowDowngrade') {
newConfig[key] = !value;
newConfig[key] = true;
} else {
newConfig[key] = value;
}
Expand Down Expand Up @@ -281,7 +281,7 @@ const Configuration = () => (
</Tooltip>
<Switch
checked={appConfigurations.updates.allowPrerelease}
onChange={updateAppConfiguration('updates', ['allowPrerelease', 'allowDowngrade'])}
onChange={updateAppConfiguration('updates', ['allowPrerelease'])}
/>
</ConfigurationSection>

Expand Down

0 comments on commit 83f84b5

Please sign in to comment.