Close #16 Remove 'exclusive' parameter from a PyQt function. Also update readme.md
This commit is contained in:
@@ -4,11 +4,15 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|||||||
The first release is [3.0.0] because this is actually the third major version (completely rewritten) of the software.
|
The first release is [3.0.0] because this is actually the third major version (completely rewritten) of the software.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
### Added
|
||||||
|
- Add some basic logging to the application. Also for severe errors, track them in info.log file in local folder.
|
||||||
|
- Add Raspberry PI support ([#18](https://github.com/AresValley/Artemis/pull/18), [#20](https://github.com/AresValley/Artemis/pull/20))
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Support new `JSON` format for some forecast data ([#21](https://github.com/AresValley/Artemis/pull/14)).
|
- Support new `JSON` format for some forecast data ([#21](https://github.com/AresValley/Artemis/pull/14)).
|
||||||
- Fixed categorization for very low x-ray flux according to NOAA format.
|
- Fixed categorization for very low x-ray flux according to NOAA format.
|
||||||
- Add some basic logging to the application. Also for severe errors, track them in info.log file in local folder.
|
- Remove the `exclusive` parameter in a PyQt function ([#16](https://github.com/AresValley/Artemis/pull/16)).
|
||||||
|
|
||||||
|
|
||||||
## [3.2.0] - 2019-12-14
|
## [3.2.0] - 2019-12-14
|
||||||
|
|
||||||
|
|||||||
@@ -140,7 +140,7 @@ class ThemeManager:
|
|||||||
Connect all the actions to change the theme.
|
Connect all the actions to change the theme.
|
||||||
Display a QMessageBox if the theme folder is not found."""
|
Display a QMessageBox if the theme folder is not found."""
|
||||||
themes = []
|
themes = []
|
||||||
ag = QActionGroup(self._owner, exclusive=True)
|
ag = QActionGroup(self._owner)
|
||||||
themes_menu = self._owner.settings_menu.addMenu("Themes")
|
themes_menu = self._owner.settings_menu.addMenu("Themes")
|
||||||
if not os.path.exists(ThemeConstants.FOLDER):
|
if not os.path.exists(ThemeConstants.FOLDER):
|
||||||
pop_up(self._owner, title=ThemeConstants.THEME_FOLDER_NOT_FOUND,
|
pop_up(self._owner, title=ThemeConstants.THEME_FOLDER_NOT_FOUND,
|
||||||
|
|||||||
Reference in New Issue
Block a user