Skip to content

Commit

Permalink
* Version tag 6.4.0
Browse files Browse the repository at this point in the history
* Fixes #69: PyTAK TAK_PROTO=1 doesn't always work with iTAK.
  • Loading branch information
ampledata committed Apr 28, 2024
1 parent 183afeb commit 2b91a17
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## PyTAK 6.4.0

- Fixes #69: PyTAK's TAK_PROTO=1 doesn't always work with iTAK.

## PyTAK 6.3.1

- Fixes #67: Add constrained logging for systemd invocation.
Expand Down
2 changes: 1 addition & 1 deletion pytak/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
:source: <https://github.com/snstac/pytak>
"""

__version__ = "6.3.2"
__version__ = "6.4.0"


from .constants import ( # NOQA
Expand Down
3 changes: 2 additions & 1 deletion pytak/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@
DEFAULT_MIN_ASYNC_SLEEP: float = 0.1

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

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

0 comments on commit 2b91a17

Please sign in to comment.