Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-11-16 | libmm-glib: fix license in sources | Aleksander Morgado | |
The libmm-glib library is LGPLv2+, not GPLv2+. | |||
2021-07-01 | libmm-glib,modem-messaging: use helper macros to manage the monitored properties | Aleksander Morgado | |
2021-07-01 | libmm-glib: use single mutex in each type to sync access | Aleksander Morgado | |
There is truly no need for a per-property mutex, using a global one for the whole object is equally fine. | |||
2021-06-24 | libmm-glib,messaging: avoid array cleanup in get_supported_storages() | Aleksander Morgado | |
If we return a reference to the internal array in ensure_internal_supported_storages() and then we free the array unconditionally in the caller, the next time we call it, the array would be valid, but it would be fully empty. | |||
2019-10-28 | docs,libmm-glib: provide per-version indices | Aleksander Morgado | |
2018-03-13 | libmm-glib: use ModemManager prefix to refer to the introspected types | Aleksander Morgado | |
2017-06-25 | libmm-glib,messaging: port mm_modem_messaging_list to use GTask | Ben Chan | |
2017-06-25 | libmm-glib,messaging: port mm_modem_messaging_create to use GTask | Ben Chan | |
2017-06-23 | libmm-glib: use g_list_copy_deep for deep copying a GList | Ben Chan | |
2017-06-23 | libmm-glib,messaging: fix object unref in list_sms_context_complete_and_free | Ben Chan | |
2017-03-29 | libmm-glib: remove explicit GDestroyNotify cast on g_object_unref | Ben Chan | |
g_object_unref is in form of `void (*)(gpointer)`, which matches the GDestroyNotify signature. An explicit GDestroyNotify cast on g_object_unref is thus not needed. | |||
2015-08-02 | libmm-glib,docs: fix missing documentations | Aleksander Morgado | |
2014-05-05 | libmm-glib: Initialize result array | Martin Pitt | |
In mm_modem_messaging_get_supported_storages(), initialize array to avoid a potential crash with an uninitialized value, and a build failure due to mm-modem-messaging.c:168:24: error: 'array' may be used uninitialized in this function [-Werror=maybe-uninitialized] *n_storages = array->len; https://bugzilla.gnome.org/show_bug.cgi?id=729267 | |||
2013-11-21 | introspection,api: new 'Messages' property in the Messaging interface | Aleksander Morgado | |
https://bugzilla.gnome.org/show_bug.cgi?id=712276 | |||
2013-08-14 | libmm-glib: Fix and add introspection annotations | Christian Persch | |
Bug #705641. | |||
2012-10-04 | libmm-glib: remove the `libmm-common.h' header | Aleksander Morgado | |
Both the ModemManager daemon and the mmcli will now include `libmm-glib.h' only. We also handle two new special `_LIBMM_INSIDE_MM' and `LIBMM_INSIDE_MMCLI' symbols, which if included before the `libmm-glib.h' library allow us to: * Don't include the libmm-glib high level API in the ModemManager daemon, as the object names would clash with those in the core. * Define some of the methods of helper objects to be included only if compiling ModemManager daemon or the mmcli. | |||
2012-10-03 | libmm-glib,sms: `MMSms' is now a real object | Aleksander Morgado | |
Not just a typedef of the gdbus-codegen generated `MmGdbusSms'. | |||
2012-10-02 | libmm-glib,messaging: `MMModemMessaging' is now a real object | Aleksander Morgado | |
Not just a typedef of the gdbus-codegen generated `MmGdbusModemMessaging'. | |||
2012-09-14 | libmm-glib: new `mm_modem_messaging_get_default_storage()' method | Aleksander Morgado | |
2012-09-14 | libmm-glib: new `mm_modem_messaging_get_supported_storages()' method | Aleksander Morgado | |
2012-03-16 | libmm-common: `MMSmsProperties' won't be considered internal any more | Aleksander Morgado | |
Renamed `MMCommonSmsProperties' to `MMSmsProperties', and removed the `MMSmsProperties' provided in libmm-glib. We'll just use the original one from libmm-common always. | |||
2012-03-15 | api,dbus: remove the option to send the SMS in the Create() call | Aleksander Morgado | |
An SMS must be first created with the Messaging interface, and then sent using the Send() method from the SMS-specific interface. | |||
2012-03-15 | libmm-glib: implement support for the Messaging interface | Aleksander Morgado | |