summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-11-17fd.o #31664: use tp_dbus_daemon_register_object to avoid deprecated tp_get_busHEADmasterSimon McVittie2-2/+5
2010-11-11ChangeLog: 2.1.0Pekka Pessi1-0/+5
2010-11-11ring-extensions/Makefile: add clean-local rulePekka Pessi1-1/+5
2010-11-11test-modem-call: update test casePekka Pessi1-16/+19
2010-11-11configure.ac: 2.1.0Pekka Pessi1-1/+1
2010-11-11README: updatedPekka Pessi1-28/+1
2010-11-08ring-call-channel.c: do not delay answeringPekka Pessi1-19/+1
2010-11-05modem/test: disable most modem testsPekka Pessi2-0/+18
2010-11-05Combine modem library components into single libraryPekka Pessi3-23/+8
2010-11-05ring-connection: use new modem and sim objectsPekka Pessi1-269/+348
Connection gets connected once it finds suitable modem: modem can be specified by IMSI or object path. Modem selection code also supports IMEI, but the account information does not contain IMEI.
2010-11-05ring-text-manager: use new sms service objectPekka Pessi3-208/+89
Text manager does not keep track of connection status anymore, but rather the presence of sms service object corresponding to the org.ofono.MessageManager interface. Text manager allows clients to open channels even if there is no org.ofono.MessageManager available.
2010-11-05ring-media-manager: use new call service and call objectsPekka Pessi5-169/+165
Media manager does not keep track of connection status anymore, but rather the presence of call service object corresponding to org.ofono.VoiceCallManager interface. Also, the MediaChannel call-instance property is now transient: when it is removed channel gets Closed.
2010-11-05ring-util: add ring_signal_disconnect ()Pekka Pessi1-0/+8
2010-11-05ring-emergency-service: do not abuse constPekka Pessi2-8/+9
2010-11-05ring-param-spec: add ring_param_spec_sms_service() and ↵Pekka Pessi2-0/+28
ring_param_spec_service ()
2010-11-05modem/sim: derive ModemSIMService from ModemOfacePekka Pessi2-205/+66
2010-11-05modem/sms: derive ModemSMSService from ModemOfacePekka Pessi2-284/+188
2010-11-05modem/modem: derive Modem from ModemOfacePekka Pessi2-113/+403
New functions: - modem_list_interfaces () - modem_has_imsi () - modem_has_imei () New signals: - "interface-added" - "interface-removed" - "imsi-added"
2010-11-05modem/service: derive ModemService from ModemOfacePekka Pessi2-177/+406
Add new functions: - modem_service_find_by_imsi () - modem_service_find_by_imei () - modem_service_find_by_path () - modem_service_find_best () New signals: - "modem-powered" - "imei-added" - "imsi-added"
2010-11-05modem/call: derive ModemCallService and ModemCall from ModemOfacePekka Pessi3-538/+413
2010-11-05modem/ofono: use oface for properties and descs of managed objectsPekka Pessi2-191/+8
ModemOface provides the removed functionality.
2010-11-05modem/oface: addedPekka Pessi3-1/+779
New base class for modem services
2010-11-05ring-param-spec: add flags parameter to ring_param_spec_imsi()Pekka Pessi3-5/+5
2010-11-05ring-media-manager: allow 'w' in dial stringPekka Pessi1-1/+1
2010-11-05modem/sms: MessageManager.SendMessage returns now object_pathPekka Pessi1-8/+6
2010-10-21Added RingProtocol implementation.Pekka Pessi6-144/+297
New connections are created through a Protocol object. Connection parameters are also parsed to an asv hash instead of a private structure.
2010-10-21media-manager: support .InitialVideo = FALSEPekka Pessi1-2/+25
2010-10-21modem/sms-service: fix broken macrosPekka Pessi2-7/+7
Oops.
2010-10-15modem/sms: using telepathy coding stylePekka Pessi2-402/+417
2010-10-15Require dbus-glib 0.88Pekka Pessi1-1/+1
2010-10-15test-modem-request: g_message reason for crashPekka Pessi1-0/+3
We really need dbus-glib 0.88
2010-10-15test-modem-call.c: modem_service() registers marshallersPekka Pessi1-0/+2
2010-10-15modem_service: register all signal marshallersPekka Pessi2-3/+4
2010-10-15modem/tests: link with modem servicePekka Pessi1-0/+1
2010-10-15modem/error: using telepathy coding stylePekka Pessi2-179/+206
2010-10-14modem/ofono: using telepathy coding stylePekka Pessi2-168/+180
2010-10-14modem/service: using telepathy coding stylePekka Pessi2-17/+17
2010-10-14modem/request: using telepathy coding stylePekka Pessi3-202/+216
2010-10-14modem/sim: using telepathy coding stylePekka Pessi2-207/+222
2010-10-14modem/call: using telepathy coding stylePekka Pessi3-1549/+1629
2010-10-14Telepathy style for EmacsPekka Pessi1-0/+31
Telepathy style tries to mimic coding style used in telepathy-glib and gabble.
2010-10-13Use new Modem and ModemService interface.Pekka Pessi2-120/+238
2010-10-13modem/service: use Modem objectsPekka Pessi4-365/+222
Provide simple interface to modems being added or removed.
2010-10-13modem/modem: add Modem objectPekka Pessi3-1/+554
Modem object corresponds to oFono Modem interface.
2010-10-13ring-media-manager: start connecting only oncePekka Pessi1-0/+3
2010-10-13ring-text-manager: start connecting only oncePekka Pessi1-0/+3
2010-10-13Added RingConnectionManagerPrivatePekka Pessi2-3/+13
2010-10-12ring-text-manager: add connected checkPekka Pessi2-10/+33
Allow connection to become connected without SMS. Text manager is considered connected if both connection and ModemSMSService are connected.
2010-10-12modem/ofono.h: SmsManager is now MessageManagerPekka Pessi1-1/+1
2010-10-12modem/service: use post-0.26 ModemManager APIPekka Pessi2-253/+227
Support GetModems, ModemAdded, ModemRemoved