dbus 0.6.0 dbus: ^0.6.0 copied to clipboard
A native Dart implementation of the D-Bus message bus client. This package allows Dart applications to directly access services on the Linux desktop.
Changelog #
0.6.0 #
- Make emitSignal async, fixing an issue where signals from a method call may be handled after the call completes.
- Use named parameters in object constructors.
0.5.6 #
- Fix default system bus address - it is /var/run, not /run.
0.5.5 #
- Fix JS compilation due to large integer literals.
- Fix D-Bus message serial numbers being mixed up on connection, which was causing apps to fail inside Flatpaks.
- Implement D-Bus authentication on Windows.
0.5.4 #
- Fix validation of maybe type.
- Use type specific constructors in DBusArray.toString() and DBusDict.toString().
0.5.3 #
- Improve efficiency of DBusReadBuffer.
- Add DBusMaybe type (not used in D-Bus, but used in other code that used GVariant).
- Move DBusDict key checks to D-Bus en/decoding - GVariant code that uses dicts is allowed more key types.
0.5.2 #
- Support abstract unix domain addresses (requires Dart >= 2.14.0-170.0.dev).
- Fix message type not being written in DBusMessage.toString().
0.5.1 #
- Replace Iterable with List for children in DBusArray, DBusStruct.
- Add a signature check to DBusSignalStream/DBusRemoteSignalStream.
- Validate signatures of DBusDict and DBusArray.
- Send no reply flag in generated code with the org.freedesktop.DBus.Method.NoReply annotation.
- Add noAutoStart and allowInteractiveAuthorization flags to generated method calls.
0.5.0 #
- Make callMethod always return success and throw an exception on error.
- Add a response signature check parameter to method calls and getting properties.
- Fix equality operators for DBusStruct, DBusArray and DBusDict.
- Use DBusStruct class in generated code.
- Replace simple exceptions with ArgumentError/FormatException where appropiate.
- Validate D-Bus integer values.
- Add more validation for DBusSignature, DBusObjectPath.
- Validate more introspection XML.
- Break out code generation from dart-dbus to classes.
- Allow dart-dbus to read introspection XML from stdin.
- Rename test file so can just run 'dart test'.
- Add test for basic DBus types.
- Add tests for generted code.
- Add test for introspection XML parsing.
0.4.3 #
- Fix a race unsubscribing from signals which could trigger an exception if a DBusClient was closed very soon after creation or signal subscription.
0.4.2 #
- Add DBusArray factories for object paths and variants.
- Add DBusDict factory for the common string→variant mapping.
0.4.1 #
- Add DBusArray factories to create common simple arrays.
0.4.0 #
- Change DBusObject.path from a property to a constructor.
- Replaced DBusClient.subscribeSignals/DBusRemoteObject.subscribeSignal with new DBusSignalStream and DBusRemoteObjectSignalStream classes.
- Added DBusRemoteObjectManager class for easier use of D-Bus ObjectManager API.
- Fixed error messages in code generated by dart-dbus.
- Make able to disable introspection on exported objects.
- Fixed PropertiesChanged signal detection broken in 0.3.0.
0.3.3 #
- Fix DBusServer matching signals subscriptions with owned names
0.3.2 #
- Support building in Flutter web applications by conditionally importing dart:ffi.
0.3.1 #
- server: Fix messages not being forwarded to clients with owned names.
- Convert some inputs from List to Iterable
0.3.0 #
- DBusClient.registerObject now connects to the bus if it was disconnected.
- Add DBusMethodCall object to use when processing incoming method calls.
- Add signature checking on incoming method calls.
- Improve validation of D-Bus messages.
- Support messages received in big endian format
- Make DBusServer able to launch services by name.
- Support getting credentials of connections.
- Add flags (no reply, no autostart, allow interactive authorization) to method calls.
- Don't reply to requests if no reply was requested.
- Use DBusAddress class for addresses.
- Support connecting over TCP/IP.
- Fix invalid unique bus names assigned by DBusServer.
- Implement name queuing in DBusServer.
- Make ping() and getMachineId() contact the server by default.
- Add regression tests.
0.2.5 #
- Fixed namespace matching not working for the root namespace, could cause signals to be incorrectly subscribed.
- Added DBusServer.
0.2.4 #
- Fix regression subcribing to signals introduced in 0.2.1.
0.2.3 #
- Fix DBusClient blocking when cancelling signal streams.
0.2.2 #
- Fix regression in matching signals using pathNamespace, which affects ObjectManager usage.
- Code tidy ups to pass dart analyze in 1.12 final release.
0.2.1 #
- Use a meta version that works with the Dart 1.12 SDK.
0.2.0 #
- Add null safety support
0.1.2 #
- Ensure generated classes don't collide method/arg names.
- Add API to get owned names and subscribe to changes.
- Allow the class name to be provided for generated code.
- Generate a required parameter if D-Bus introspection doesn't contain a path.
- Implement DBusCkient.listQueuedOwners().
0.1.1 #
- Fix DBusClient blocking on close
0.1.0 #
- Initial release