aboutsummaryrefslogtreecommitdiff
path: root/data
AgeCommit message (Collapse)Author
2014-03-09data: add iconAleksander Morgado
2014-02-13context: new '--test-plugin-dir' to allow specifying where the plugins areAleksander Morgado
2014-02-13service,tests: run in MM in debug mode in service testsAleksander Morgado
2014-02-13context: new '--test-enable' to enable the Test interfaceAleksander Morgado
2014-02-13context: new '--test-no-auto-scan' to avoid automatic scanning for devicesAleksander Morgado
2014-02-13context: new '--test-session' allows launching the MM daemon in the session busAleksander Morgado
2014-02-13service,tests: new DBus service file for testsAleksander Morgado
2013-08-21api,introspection: new 'Signal' interface for extended signal qualityAleksander Morgado
2013-07-23build: fix dbus activation file generationAleksander Morgado
https://bugzilla.gnome.org/show_bug.cgi?id=704711
2013-06-25systemd: schedule to restart the service on-abortAleksander Morgado
See https://bugzilla.gnome.org/show_bug.cgi?id=701229.
2013-06-23dbus: no need for systemd and nosystemd setups of the service fileAleksander Morgado
We can just merge them.
2013-06-23Revert "systemd: simplify unit file"Aleksander Morgado
This reverts commit 91898aa8b0bb8164b61e84ae68534c38cebb1482. See additional comments in the following bug: https://bugzilla.gnome.org/show_bug.cgi?id=701229 Basically, 'mask' and 'unmask' operations are not the ones we should be using or suggesting; and the Alias= for the DBus file is the correct way to go.
2013-06-13build: new strict & permissive polkit policies in '--with-polkit'Aleksander Morgado
The '--with-polkit' configure switch now supports more options than just yes or no: * strict: Active user needs to explicitly authenticate when peforming an operation defined in the Device.Control, Messaging, Location or Contacts interfaces. Polkit policy is set to 'auth_self_keep'. * permissive: Active user doesn't need to explicitly authenticate when peforming an operation defined in the Device.Control, Messaging, Location or Contacts interfaces. Polkit policy is set to 'yes'. * none: don't use polkit. If '--with-polkit' is not given, usage will be automatically decided based on the presence of the Polkit headers in the system (if headers found, strict policy will be applied, otherwise none). Also: * '--with-polkit' is equivalent to '--with-polkit=strict' * '--with-polkit=yes' is equivalent to '--with-polkit=strict' * '--with-polkit=no' is equivalent to '--with-polkit=none' * '--without-polkit' is equivalent to '--with-polkit=none' By default, ModemManager will always apply the strict policy, in order to protect the user from unwanted operations in the modem (e.g. getting the PIN locked forever after wrong PIN/PUK unlock attempts). https://bugzilla.gnome.org/show_bug.cgi?id=701740
2013-06-06build: fix distcheckAleksander Morgado
2013-06-06systemd: simplify unit fileAleksander Morgado
Avoid setting up the Alias rule, which was a helper to let us 'disable' the systemd service including dbus-activations. Without the Alias, 'disable' will still let starting ModemManager through dbus-activation. If you really want to fully disallow starting MM also through dbus-activation, you should 'mask' and 'unmask' the service. E.g.: $ sudo systemctl mask ModemManager ln -s '/dev/null' '/etc/systemd/system/ModemManager.service' $ sudo mmcli -L error: couldn't find the ModemManager process in the bus $ sudo systemctl unmask ModemManager rm '/etc/systemd/system/ModemManager.service' $ sudo mmcli -L No modems were found https://bugzilla.gnome.org/show_bug.cgi?id=701229
2013-05-26docs: don't require 'dia' to build the docsAleksander Morgado
These diagrams are not expected to change much, so just include the generated PNGs in the repository, and remove 'dia' from the prerequisites to build the documentation.
2013-02-06trivial: fix typoDan Williams
2013-02-06systemd: include systemd unit file supportAleksander Morgado
Allow having systemd handling the life cycle of the ModemManager process.
2012-10-04data: include ModemManager logo imagesAleksander Morgado
2012-10-04build: merge libmm-common into libmm-glibAleksander Morgado
It's pointless to have libmm-common around, just merge it into libmm-glib and make ModemManager depend on libmm-glib directly. At the end, the non-common stuff in libmm-glib is really minimal.
2012-05-24build: provide pkg-config files for ModemManager, libmm-common and libmm-glibAleksander Morgado
2012-05-23dbus: remove 'max_replies_per_connection' limit from D-Bus configurationJiří Klimeš
It is leftover from times when D-Bus default limit was 32. Now, it is 8192, see http://cgit.freedesktop.org/dbus/dbus/commit/?id=8d3d8ff55739eebd84d0d53a20a025329feafc3b
2012-03-16build: rename the binary from `modem-manager' to `ModemManager'Aleksander Morgado
2012-03-16introspection: setup all new files and remove old onesAleksander Morgado
2012-03-16policy: implement Sms interface rulesAleksander Morgado
2012-03-16policy: implement Messaging interface rulesAleksander Morgado
2012-03-16policy: implement Location interface rulesAleksander Morgado
2012-03-16policy: implement USSD interface rulesAleksander Morgado
2012-03-16policy: implement Bearer interface rulesAleksander Morgado
2012-03-16policy: implement Sim interface rulesAleksander Morgado
2012-03-16policy: implement CDMA interface rulesAleksander Morgado
2012-03-16policy: implement 3GPP interface rulesAleksander Morgado
2012-03-16policy: implement Simple interface rulesAleksander Morgado
2012-03-16policy: implement Modem interface rulesAleksander Morgado
2012-03-16policy: implement Manager interface rulesAleksander Morgado
2012-03-16policy: no need for a rule to manage readable infoAleksander Morgado
2012-03-16policy: renamed `Sms' action to `Messaging'Aleksander Morgado
2012-03-15build: install DBus service and data files for the new APIAleksander Morgado
2012-03-15build: setup all data (polkit, icon, dbus...) in the same `data' directoryAleksander Morgado
Also fixed dist when not using polkit, the icon was no longer included in the tarball.