mirror of
https://github.com/Quad4-Software/MeshChatX.git
synced 2026-08-18 09:49:09 -04:00
16 lines
561 B
Python
16 lines
561 B
Python
# SPDX-License-Identifier: 0BSD
|
|
|
|
"""Reticulum MeshChatX - A mesh network communications app."""
|
|
|
|
# Synced from package.json via scripts/sync_version.js (also writes meshchatx/src/version.py).
|
|
__version__ = "4.8.2"
|
|
# LXST vendored pyogg can NameError on import when libopus is present but
|
|
# libogg is not. Apply before any meshchatx module imports LXST.
|
|
try:
|
|
from meshchatx.src.backend.lxst_pyogg_ctypes_compat import (
|
|
ensure_lxst_pyogg_ctypes_compat,
|
|
)
|
|
|
|
ensure_lxst_pyogg_ctypes_compat()
|
|
except (ImportError, OSError, ValueError):
|
|
pass
|