Skip to content

Commit

Permalink
Merge branch 'master' into 'release'
Browse files Browse the repository at this point in the history
Version 0.5.3-beta3

See merge request kirbo/slothy!22
  • Loading branch information
Kirbo committed Feb 5, 2020
2 parents 83f84b5 + 41f73ba commit d8c38ec
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 7 deletions.
16 changes: 10 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]


## [0.5.3-beta3] - 2020-02-05
### Changed
- Removed `border-bottom` from `:last-child`.

### Fixed
- Fixed couple of typos in changelog.

## [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.
- `allowDowngrade` is always `true`, so if you have 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 a buggy version of the app and want to delete 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).
- 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
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-beta2",
"version": "0.5.3-beta3",
"name": "slothy",
"description": "Changes your Slack status based on the SSID you're currently connected to.",
"productName": "Slothy",
Expand Down
7 changes: 7 additions & 0 deletions src/assets/css/globalStyles.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,11 @@ export const GlobalStyles = createGlobalStyle`
width: 100%;
}
}
.ant-table-thead > tr:last-child,
.ant-table-tbody > tr:last-child {
& > td {
border-bottom: none;
}
}
`;
4 changes: 4 additions & 0 deletions src/container/View/Configuration/Configuration.js
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,10 @@ const ConfigurationSection = styled.div`
justify-content: space-between;
border-bottom: ${BORDER.thin} solid ${COLOR.borderLight};
`}
&:last-child {
border-bottom: none;
}
`;

export default Configuration;

0 comments on commit d8c38ec

Please sign in to comment.