Update README.md with latest changes

This commit is contained in:
Alessandro
2020-04-15 20:23:26 +02:00
parent 6e0a161b89
commit ce2cfdc76a
2 changed files with 7 additions and 2 deletions

View File

@@ -5,10 +5,15 @@ The first release is [3.0.0] because this is actually the third major version (c
## [Unreleased] ## [Unreleased]
### Fixed
- 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.
- Add some basic logging to the application. Also for severe errors, track them in info.log file in local folder.
## [3.2.0] - 2019-12-14 ## [3.2.0] - 2019-12-14
### Added ### Added
- The default font can be changed ([#14](https://github.com/AresValley/Artemis/pull/14)) - The default font can be changed ([#14](https://github.com/AresValley/Artemis/pull/14)).
- Move `Themes` into `Settings`. - Move `Themes` into `Settings`.
- Better settings management in `settings.json`. - Better settings management in `settings.json`.

View File

@@ -156,7 +156,7 @@ class DownloadThread(BaseDownloadThread):
"""Verify the checksum of the downloaded data and set the status accordingly.""" """Verify the checksum of the downloaded data and set the status accordingly."""
try: try:
is_checksum_ok = checksum_ok(raw_data, self._target.hash_code) is_checksum_ok = checksum_ok(raw_data, self._target.hash_code)
except Exception: # Invalid hash code. except ValueError: # Invalid hash code.
self.status = ThreadStatus.NO_CONNECTION_ERR self.status = ThreadStatus.NO_CONNECTION_ERR
return True return True
else: else: