Skip to content

Commit 2b91a17

Browse files
committed
* Version tag 6.4.0
* Fixes #69: PyTAK TAK_PROTO=1 doesn't always work with iTAK.
1 parent 183afeb commit 2b91a17

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## PyTAK 6.4.0
2+
3+
- Fixes #69: PyTAK's TAK_PROTO=1 doesn't always work with iTAK.
4+
15
## PyTAK 6.3.1
26

37
- Fixes #67: Add constrained logging for systemd invocation.

pytak/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
:source: <https://github.com/snstac/pytak>
2020
"""
2121

22-
__version__ = "6.3.2"
22+
__version__ = "6.4.0"
2323

2424

2525
from .constants import ( # NOQA

pytak/constants.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@
9191
DEFAULT_MIN_ASYNC_SLEEP: float = 0.1
9292

9393
# TAK Protocol to use for CoT output, one of: 0 (XML, default), 1 (Mesh/Stream).
94-
DEFAULT_TAK_PROTO: str = "1"
94+
# Doesn't always work with iTAK. Recommend sticking with 0 (XML).
95+
DEFAULT_TAK_PROTO: str = "0"
9596

9697
# Python <3.8 has no way of including XML Declaration in ET.tostring():
9798
DEFAULT_XML_DECLARATION: bytes = (

0 commit comments

Comments
 (0)