- 14 Apr, 2016 2 commits
-
-
Slava Monich authored
See merge request !10
-
Slava Monich authored
According to valgrind: 16 bytes in 2 blocks are definitely lost in loss record 1,408 of 3,437 at 0x4841B84: calloc (vg_replace_malloc.c:623) by 0x51620C3: g_malloc0 (gmem.c:134) by 0x1F9CB: mms_transfer_dbus_handle_enable_updates (mms_transfer_dbus.c:246) if the corresponding conversation is open in Messages UI when MMS is being sent or received.
-
- 04 Apr, 2016 1 commit
-
-
Slava Monich authored
-
- 02 Apr, 2016 1 commit
-
-
Slava Monich authored
-
- 16 Mar, 2016 1 commit
-
-
Slava Monich authored
-
- 15 Mar, 2016 2 commits
-
-
Slava Monich authored
-
Slava Monich authored
Transfer progress API Intended for the Messages app, so that it can show MMS send/receive progress. D-Bus interface for the list of transfers goes like this: <interface name="org.nemomobile.MmsEngine.TransferList"> <method name="Get"> <arg name="list" type="ao" direction="out"/> </method> <signal name="TransferStarted"> <arg name="path" type="o"/> </signal> <signal name="TransferFinished"> <arg name="path" type="o"/> </signal> </interface> D-Bus interface for individual transfers (identified by path): <interface name="org.nemomobile.MmsEngine.Transfer"> <method name="GetAll"> <arg name="version" type="u" direction="out"/> <arg name="bytes_sent" type="u" direction="out"/> <arg name="bytes_to_send" type="u" direction="out"/> <arg name="bytes_received" type="u" direction="out"/> <arg name="bytes_to_receive" type="u" direction="out"/> </method> <method name="EnableUpdates"> <!-- 1 - send, 2 - receive, 3 - both --> <arg name="flags" type="u" direction="in"/> <arg name="cookie" type="u" direction="out"/> </method> <method name="DisableUpdates"> <arg name="cookie" type="u" direction="in"/> </method> <method name="GetInterfaceVersion"> <arg name="version" type="u" direction="out"/> </method> <method name="GetSendProgress"> <arg name="bytes_sent" type="u" direction="out"/> <arg name="bytes_to_send" type="u" direction="out"/> </method> <method name="GetReceiveProgress"> <arg name="bytes_received" type="u" direction="out"/> <arg name="bytes_to_receive" type="u" direction="out"/> </method> <signal name="SendProgressChanged"> <arg name="bytes_sent" type="u"/> <arg name="bytes_to_send" type="u"/> </signal> <signal name="ReceiveProgressChanged"> <arg name="bytes_received" type="u"/> <arg name="bytes_to_receive" type="u"/> </signal> <signal name="Finished"/> </interface> Progress signals are not emitted unless there's at least one D-Bus client expressed an interest by calling EnableUpdates with appropriate flags. Request for updates can be revoked with DisableUpdates. This complicates things a bit but I think it's worth the trouble. See merge request !9
-
- 13 Mar, 2016 2 commits
-
-
Slava Monich authored
-
Slava Monich authored
-
- 12 Mar, 2016 4 commits
-
-
Slava Monich authored
-
Slava Monich authored
-
Slava Monich authored
-
Slava Monich authored
-
- 11 Mar, 2016 8 commits
-
-
Slava Monich authored
-
Slava Monich authored
Some tests did't delete temporary directories.
-
Slava Monich authored
-
Slava Monich authored
Processing of downloaded messages is now finished before the next download is started.
-
Slava Monich authored
-
Slava Monich authored
-
Slava Monich authored
-
Slava Monich authored
-
- 07 Mar, 2016 6 commits
-
-
Slava Monich authored
-
Slava Monich authored
-
Slava Monich authored
MMS_CONNMAN_NEMO defined from the command line conflicted with the macro defined in mms_connman_nemo.c
-
Slava Monich authored
ligofono 1.0.11 does it for us.
-
Slava Monich authored
This way it will end up in the tarball generated by MMS Logger app, and it's generally useful for debugging.
-
Slava Monich authored
-
- 22 Feb, 2016 2 commits
-
-
Slava Monich authored
-
Slava Monich authored
Drop inactive connections Otherwise mms_connman_nemo_open_connection() may keep on returning the same dead connection. See merge request !7
-
- 19 Feb, 2016 2 commits
-
-
Slava Monich authored
-
Slava Monich authored
See merge request !6
-
- 17 Feb, 2016 2 commits
-
-
Slava Monich authored
This error means that operation should be retried.
-
Slava Monich authored
Pass "user request" flag to the connection manager It's not being used at the moment but we may need it soon. See merge request !5
-
- 16 Feb, 2016 2 commits
-
-
Slava Monich authored
It's not being used at the moment but we may need it soon.
-
Slava Monich authored
-
- 05 Feb, 2016 2 commits
-
-
Slava Monich authored
-
Slava Monich authored
Fix "auto" voice SIM behavior mms-engine was interpreting "auto" default voice sim literally, as an IMSI. Instead, the default should be IMSI of the SIM associated with the default voice modem (if it's not empty). See merge request !4
-
- 04 Feb, 2016 1 commit
-
-
Slava Monich authored
The default should be IMSI of the SIM associated with the default voice modem (if it's not empty)
-
- 02 Feb, 2016 2 commits
-
-
Slava Monich authored
-
Slava Monich authored
It can still be overwritten by MMS_ENGINE_VERSION macro, it's just that now we have a reasonable default for it.
-