Skip to content
This repository has been archived by the owner on Aug 27, 2022. It is now read-only.

Releases: OpenBluetoothToolbox/SimpleDBus

SimpleDBus v2.2.0

13 Jun 02:33
Compare
Choose a tag to compare

[2.2.0] - 2022-06-12

Added

  • Log forwarding based on logfwd.

Changed

  • Updated libfmt to version 8.1.1.
  • Cleaned up dependency management for libfmt.
  • Moved kvn::safe_callback into the simpledbus include directory.

Fixed

  • Made the manipulation of SimpleDBus::Connection thread-safe.

SimpleDBus v2.1.0

26 Mar 01:35
13de624
Compare
Choose a tag to compare

[2.1.0] - 2022-03-25

Added

  • (Message) Enable the creation of response messages to method calls.
  • (Message) Enable the creation of error messages.
  • (Connection) Provide interface to query the unique name of the connection.
  • (Proxy) Provide interface to directly append a child.

Changed

  • Migrated to using safe callbacks from external vendor (kvn::safe_callback).

Fixed

  • (Interface) Messages are now passed by reference.

SimpleDBus v2.0.0

29 Dec 05:27
8531bed
Compare
Choose a tag to compare

[2.0.0] - 2021-12-28

Added

  • Testing framework.
  • Exceptions for error detection and handling.
  • Proxy object to generalize path and message handling.
  • Interface object with advanced features to generalize common functionality.
  • Generic callback class to generalize callback functionality.

Changed

  • Log levels use now a sane naming convention.
  • Default logging level can be set during build time.
  • Holders containing dictionaries can now support any generic key type.
  • Message types are now part of the class and not a separate enum.

Removed

  • Legacy implementations of Property and Introspection.

Fixed

  • Interface access is now thread-safe.
  • Proxy access is now thread-safe.

SimpleDBus v2.0.0-alpha.2

14 Dec 07:07
94d075e
Compare
Choose a tag to compare
Pre-release

[2.0.0-alpha.2] - 2021-12-13

Added

  • Testing framework.
  • Exceptions for error detection and handling.
  • Proxy object to generalize path and message handling.
  • Interface object with advanced features to generalize common functionality.
  • Generic callback class to generalize callback functionality.

Changed

  • Log levels use now a sane naming convention.
  • Default logging level can be set during build time.
  • Holders containing dictionaries can now support any generic key type.
  • Message types are now part of the class and not a separate enum.

Removed

  • Legacy implementations of Property and Introspection.

SimpleDBus v2.0.0-alpha

05 Nov 06:58
Compare
Choose a tag to compare
Pre-release

[2.0.0-alpha] - 2021-11-04

Added

  • Testing framework.
  • Exceptions for error detection and handling.

Changed

  • Log levels use now a sane naming convention.
  • Default logging level can be set during build time.
  • Holders containing dictionaries can now support any generic key type.

SimpleDBus v1.2.0

27 Aug 06:21
d352886
Compare
Choose a tag to compare

[1.2.0] - 2021-08-26

Added

  • Added function to request a list of all available adapters.
  • Adapters now provide their address and their OS identifier.
  • Adapters now provide another callback that notifies whenever a device is updated.
  • Devices can now be queried for their list of services and characteristics.
  • Devices now indicate if their services have been resolved.
  • Added logging methods to SimpleDBus::Properties.
  • Adapter1, Device1 and GattCharacteristic1 can now execute direct queries and action calls, bypassing any state checks.
  • Added introspection capability to BluezService and BluezAdapter.
  • Added ManufacturerData field to Device1.

Fixed

  • Made project compilation settings private, as it would interfere when embedded in other projects.
  • Message won't trigger a crash when extracting an invalid message.
  • Removed broken copy constructor and copy assignment functions for Holder.
  • Fixed multiple callback issue in Device1.

Changed

  • BluezAdapter::OnDeviceFound callback now expects a pointer to a BluezDevice.
  • SimpleDBus::PropertyHandler now handles property events, leaving SimpleDBus::Properties for getting/setting properties.
  • Device1 will now always run a DBus query to check if connected.

SimpleDBus v1.1.1

20 Feb 22:55
4b6aca4
Compare
Choose a tag to compare

[1.1.1] - 2021-02-20

Added

  • Implemented move and copy constructors for SimpleDBus::Message.

Changed

  • Pointers to DBus connection and error objects within SimpleDBus::Connection were made private.
  • All library targets are now compiled with maximum optimization options.
  • Changed code formatting settings.

Fixed

  • SimpleDBus::Holder array representation would only print the last element of the array.
  • InterfacesRemoved signal would unnecessarily delete an object.

SimpleDBus v1.1.0

09 Feb 06:56
c9e8298
Compare
Choose a tag to compare

[1.1.0] - 2021-02-08

Added

  • BluezService can now pick a specific adapter.
  • Basic logging capabilities.
  • Added Alias and RSSI fields to BluezDevice. (Thank you xloem!)
  • BluezAdapter, BluezDevice and BluezGattService now properly handle removal events from DBus.

Changed

  • The bytearray Holder representation gets its own specific print functionality.
  • Adapter1, Device1 and GattCharacteristic1 DBus objects now run some basic validations before issuing commands to BlueZ.
  • GattCharacteristic1.ValueChanged callback parameters are now passed by value.
  • Modified the project directory structure.
  • Updated the project documentation.
  • Minor modification to the Logger format structure to ease readability.

Fixed

  • Message copy-assignments would cause memory leaks of the underlying DBus message object.
  • Check if a message iterator has additional contents before attempting to fetch them.
  • Message iterator initialization would not work with older DBus headers. (Thank you xloem!)
  • Recursion deadlock when attempting to print logs. (Thank you xloem!)
  • Proper cleanup of internal string buffer of the logging module. (Thank you xloem!)
  • Holder objects not clearing their state during copy-assignment. (Thank you xloem!)

SimpleDBus v1.0.0

09 Feb 06:55
Compare
Choose a tag to compare

[1.0.0] - 2020-06-19

  • First implementation!