Releases: timrogers/litra
Releases · timrogers/litra
v3.4.0
v3.3.1
v3.3.0
3.3.0 (2023-02-11)
Features
- add
getNameForDevice
function which gets a device's name (e.g. "Logitech Litra Glow") (e1f9be9) - add new
litra-identify
command for identifying the serial number of Litra devices (cee9939) - improve Oversight integration with
litra-oversight
to target all available devices (e2efb2a) - update command line utilities to enable targeting a specific device with
--serial-number
/-s
(73a7f80)
v3.2.0
v3.1.0
3.1.0 (2023-01-31)
Features
- add support for Objective-See's OverSight (https://objective-see.org/products/oversight.html) with new
litra-oversight
executable (17bea70)
v3.0.1
v3.0.0
3.0.0 (2023-01-19)
Features
- add support for Logitech Litra Beam devices (e27cbf1)
- expose the device type on each
Device
, and expose and enforce permitted brightness and temperature ranges for each device (c09c8dc) - rename package from litra-glow to litra (a75228e)
BREAKING CHANGES
- This renames the package from
litra-glow
to
litra
to reflect our new support for the Logitech Litra Beam.
v2.1.0
v2.0.0
2.0.0 (2022-11-13)
Bug Fixes
- add support for Windows (22aa29b), closes #24 #24 /github.com/timrogers/litra-glow/issues/24#issue-1443507807
Features
- change the API of
findDevice
to return null if no device is found, rather than throwing an error (c8f3295)
BREAKING CHANGES
- This refactors the API of the
findDevice
function to returnnull
rather than throwing an error if a Logitech Litra Glow device cannot be found attached to the computer. If you're using this function, you should update any call sites so they don't assume that a device has been returned - for example with anif (device)
null
check.