| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
All the platforms and build system we support have a config.h header.
|
| |
|
|
|
| |
Drop the DocBook documentation, and move everything to the MarkDown
format used by modern gtk-doc.
|
| |
|
|
|
| |
Only include the necessary headers, and use a single-header inclusion
guard to prevent people from including only json-gvariant.h.
|
| |
|
|
|
|
|
|
|
| |
Consider the following JSON: ["123"]
Trying to convert it to GVariant with signature "(i)" would previously fail,
as string-to-number conversions weren't implemented. This patch implements
string-to-number and string-to-boolean conversions.
https://bugzilla.gnome.org/show_bug.cgi?id=707382
|
| |
|
|
|
| |
The returned GVariant when deserializing from JSON has a floating
reference that needs to be sunk.
|
| |
|
|
| |
Fix casting issue in Gvariant creation on some architectures.
|
| |
|
|
| |
These errors might find their way into a UI.
|
| |
|
|
| |
We need to translate the GError messages.
|
| |
|
|
|
|
|
| |
The 'signature' arguments of the json_gvariant_deserialize functions are
optional.
Signed-off-by: Emmanuele Bassi <ebassi@gnome.org>
|
| |
|
|
|
|
|
|
| |
Some small internal change from passing the signature to a pointer to
the signature down the call chain caused all the checks for
signature==NULL to fail.
Signed-off-by: Emmanuele Bassi <ebassi@linux.intel.com>
|
| |
|
|
|
|
|
|
|
| |
G_VARIANT_CLASS_DICTIONARY is a define; GCC complais loudly when trying
to use a switch() on an enumeration type with case values not from the
enumeration.
Plus: coding style in JSON-GLib is mostly the same as GTK+ and Clutter,
so we should adhere to it.
|
|
|
https://bugzilla.gnome.org/show_bug.cgi?id=632940
|