nschoe
nschoe
For now, when calling `bus.getService2()` on a service name that is not started, the implementation does not check for activatable names, as stated [here](https://github.com/sidorares/node-dbus/blob/DBusProxy/lib/bus.js#L350-L357). I'm putting this issue here as...
It's currently not possible to set a DBus property to a service. Let's consider this minimalistic service: ``` Javascript let ifaceDesc = { name: 'fr.diag', properties: { StringProp: 's' }...
So this should be a good start at implementing the 'Set' function: we should be able to actually 'Get' and 'Set' DBus properties now! I have tested with single types...
I was scouting through the code and found [this](https://github.com/sidorares/node-dbus/blob/master/lib/bus.js#L59): in the functoin `bus.sendSignal()`, the `signalMsg` gets a field `serial`, like all other DBus messages, but usually, as seen [here](https://github.com/sidorares/node-dbus/blob/master/lib/bus.js#L25-L26) the...
Currently trying to implement `org.freedesktop.Notifications`. Inspecting by hand : `gdbus introspect --session --dest org.freedesktop.Notifications --object-path /org/freedesktop/Notifications` returns: ``` [...] interface org.freedesktop.Notifications { methods: CloseNotification(in u id); GetCapabilities(out as capabilities); GetServerInformation(out...
When extending an object into a second, the `Map` values of the first don't get copied.
Hi, I have been packaging a few additional ROS packages to the ones already packaged (I'm happy to make a merge request if you're interested), this has worked very well,...
Hi @akru sorry it's me again (I hope I'm helping making things go further will all this). It seems I have an issue with `ros_comm` package concerning the `CMAKE_PREFIX_PATH`. Here...
Hi, first of all, kudos for this project! It's a very ambitious project and I fully support it. It looks like fun :-) I'm also working on something myself and...
I was trying to implement `org.freedesktop.Notifications` as "Hello, World" dbus application. When using `notify-send "Title" "Message"`, the application should display on screen the message. As per defined [here](https://developer.gnome.org/notification-spec/), we need...