kopia lustrzana https://github.com/glidernet/python-ogn-client
Release v0.8.0
rodzic
0c73709058
commit
382eae4ef7
|
@ -3,6 +3,7 @@ language: python
|
|||
python:
|
||||
- 3.4
|
||||
- 3.5
|
||||
- 3.6
|
||||
|
||||
before_script:
|
||||
- flake8 tests ogn
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
# CHANGELOG
|
||||
|
||||
## Unreleased
|
||||
- parser: Added support for heared aircrafts
|
||||
## 0.8.0 - 2017-10-02
|
||||
- parser: Merged function 'parse_aprs' and 'parse_ogn_beacon' to 'parse'
|
||||
- parser: Added support for OGNSDR (receiver), OGNTRK (ogn tracker), OGNFLR (flarm) and OGNAV (Naviter) beacons
|
||||
- parser: Added support for RELAYed messages
|
||||
- parser: Added support for ddmmss time format (eg. '312359z')
|
||||
- parser: Added support for heared aircrafts
|
||||
- client: Allow client to do sequential connect-disconnect
|
||||
|
||||
## 0.7.1 - 2017-06-05
|
||||
|
|
|
@ -4,7 +4,7 @@ APRS_SERVER_PORT_CLIENT_DEFINED_FILTERS = 14580
|
|||
|
||||
APRS_APP_NAME = 'python-ogn-client'
|
||||
|
||||
PACKAGE_VERSION = '0.7.1'
|
||||
PACKAGE_VERSION = '0.8.0'
|
||||
APRS_APP_VER = PACKAGE_VERSION[:3]
|
||||
|
||||
APRS_KEEPALIVE_TIME = 240
|
||||
|
|
5
setup.py
5
setup.py
|
@ -30,6 +30,7 @@ setup(
|
|||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.4',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
],
|
||||
keywords='gliding ogn',
|
||||
packages=['ogn.{}'.format(package) for package in find_packages(where='ogn')],
|
||||
|
@ -37,8 +38,8 @@ setup(
|
|||
extras_require={
|
||||
'dev': [
|
||||
'nose==1.3.7',
|
||||
'coveralls==1.1',
|
||||
'flake8==3.3.0'
|
||||
'coveralls==1.2',
|
||||
'flake8==3.4.1'
|
||||
]
|
||||
},
|
||||
zip_safe=False
|
||||
|
|
Ładowanie…
Reference in New Issue