From caef8509668ee71787737701a61fef333af47a03 Mon Sep 17 00:00:00 2001 From: Ralf Habacker Date: Tue, 9 Nov 2021 00:01:46 +0100 Subject: [PATCH] Clean up use of the term for an array of dict entries fixes #347 Signed-off-by: Ralf Habacker --- doc/dbus-specification.xml | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/doc/dbus-specification.xml b/doc/dbus-specification.xml index 3f3576daa..556d9a7b8 100644 --- a/doc/dbus-specification.xml +++ b/doc/dbus-specification.xml @@ -78,6 +78,16 @@ See commit log + + 0.37 + (not yet released) + + + + Clean up use of the term for an array of dict entries + + + 0.36 2020-04-21 @@ -4314,7 +4324,7 @@ in STRING property_name, in VARIANT value); org.freedesktop.DBus.Properties.GetAll (in STRING interface_name, - out DICT<STRING,VARIANT> props); + out ARRAY of DICT_ENTRY<STRING,VARIANT> props); @@ -4364,7 +4374,7 @@ org.freedesktop.DBus.Properties.PropertiesChanged (STRING interface_name, - DICT<STRING,VARIANT> changed_properties, + ARRAY of DICT_ENTRY<STRING,VARIANT> changed_properties, ARRAY<STRING> invalidated_properties); @@ -4411,7 +4421,7 @@ - org.freedesktop.DBus.ObjectManager.GetManagedObjects (out DICT<OBJPATH,DICT<STRING,DICT<STRING,VARIANT>>> objpath_interfaces_and_properties); + org.freedesktop.DBus.ObjectManager.GetManagedObjects (out ARRAY of DICT_ENTRY<OBJPATH,ARRAY of DICT_ENTRY<STRING,ARRAY of DICT_ENTRY<STRING,VARIANT>>> objpath_interfaces_and_properties); @@ -4434,7 +4444,7 @@ org.freedesktop.DBus.ObjectManager.InterfacesAdded (OBJPATH object_path, - DICT<STRING,DICT<STRING,VARIANT>> interfaces_and_properties); + ARRAY of DICT_ENTRY<STRING,ARRAY of DICT_ENTRY<STRING,VARIANT>> interfaces_and_properties); org.freedesktop.DBus.ObjectManager.InterfacesRemoved (OBJPATH object_path, ARRAY<STRING> interfaces); @@ -6534,7 +6544,7 @@ As a method: - UpdateActivationEnvironment (in ARRAY of DICT<STRING,STRING> environment) + UpdateActivationEnvironment (in ARRAY of DICT_ENTRY<STRING,STRING> environment) Message arguments: @@ -6549,7 +6559,7 @@ 0 - ARRAY of DICT<STRING,STRING> + ARRAY of DICT_ENTRY<STRING,STRING> Environment to add or update @@ -6728,7 +6738,7 @@ As a method: - DICT<STRING,VARIANT> GetConnectionCredentials (in STRING bus_name) + ARRAY of DICT_ENTRY<STRING,VARIANT> GetConnectionCredentials (in STRING bus_name) Message arguments: @@ -6764,7 +6774,7 @@ 0 - DICT<STRING,VARIANT> + ARRAY of DICT_ENTRY<STRING,VARIANT> Credentials -- 2.47.3