Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,17 @@

All notable changes to this project will be documented in this file.

## [0.4.4] - 2025-08-29

### Changed

- Made signal in Disconnected optional as reported on LiteBeam 8.7.15

## [0.4.3] - 2025-08-22

### Changed

- Made antenna_gain and nol_* optional for Prism and LiteBeam 8.7.8 support
- Made antenna_gain and nol_* optional as reported on Prism and LiteBeam 8.7.8 support

## [0.4.2] - 2025-08-17

Expand Down
2 changes: 1 addition & 1 deletion airos/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,12 +397,12 @@ class Disconnected(AirOSDataClass):

mac: str
lastip: str
signal: int
hostname: str
platform: str
reason_code: int
disconnect_duration: int
airos_connected: bool = False # Mock add to determine Disconnected vs Station
signal: int | None = None # Litebeam 5AC can have no signal


@dataclass
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "airos"
version = "0.4.3"
version = "0.4.4"
license = "MIT"
description = "Ubiquiti airOS module(s) for Python 3."
readme = "README.md"
Expand Down