Skip to content

Commit

Permalink
Updated readme and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Meisterschueler committed Jun 6, 2021
1 parent 0621307 commit 3e7ec2d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# CHANGELOG

# 1.2.0: - 2021-06-01
## unreleased
- client: Added peer IP to log messages
- parser: Added rainfall_1h and rainfall_24h to beacon_type 'position_weather'

## 1.2.0: - 2021-06-01
- parser: Added support for OGNSKY (safesky) beacons
- client: Replace bad characters with � instead of raising an exception (restore old behaviour with parameter ignore_decoding_error=False)

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ def process_beacon(raw_message):
print('Received {aprs_type}: {raw_message}'.format(**beacon))
except ParseError as e:
print('Error, {}'.format(e.message))
except NotImplementedError as e:
print('{}: {}'.format(e, raw_message))

client = AprsClient(aprs_user='N0CALL')
client.connect()
Expand Down

0 comments on commit 3e7ec2d

Please sign in to comment.