summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update READMEHEADmasterRobert Dower2021-09-151-0/+4
|
* Merge pull request #15 from rdower/patch-1Robert Dower2021-09-151-0/+7
|\ | | | | Update README
| * Update READMERobert Dower2021-09-151-0/+7
|/
* [Release] Version 0.3.0v0.3.00.3.0Rick Bell2017-03-041-0/+9
|
* Changed the Copyright to 2017Rick Bell2017-02-273-3/+3
|
* Merge pull request #12 from puleglot/masterRick Bell2015-08-042-41/+32
|\ | | | | m4: use portable shell
| * [m4] Use AS_VAR_APPEND macro instead of "+="Alexander Tsoy2015-07-021-23/+23
| | | | | | | | | | | | Also get rid of unnecessary subshells. Signed-off-by: Alexander Tsoy <alexander@tsoy.me>
| * [m4] Don't use bash "let" builtinAlexander Tsoy2015-07-011-2/+2
| | | | | | | | Signed-off-by: Alexander Tsoy <alexander@tsoy.me>
| * [m4] Don't use bash arrays in m4 macrosJussi Kukkonen2015-07-011-18/+9
|/ | | | Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
* Merge pull request #10 from debarshiray/masterRick Bell2015-03-241-7/+4
|\ | | | | Don't crash when trying to unwatch non-existent client
| * Don't crash when trying to unwatch non-existent clientDebarshi Ray2015-03-121-7/+4
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | $ gdbus call \ --session \ --dest com.intel.dleyna-renderer \ --object-path /com/intel/dLeynaRenderer \ --method com.intel.dLeynaRenderer.Manager.Release If a service is spawned as a result of the above command, then it will lead to a crash with this backtrace: (client_name=0x7f7c94009750 ":1.603") at src/connector-dbus.c:271 (conn=<optimized out>, sender=0x7f7c94009750 ":1.603", object=<optimized out>, interface=<optimized out>, method=<optimized out>, parameters=<optimized out>, invocation=0x2360e00) at server.c:780 at gdbusconnection.c:4884 at gmain.c:3111 (context=context@entry=0x2342ea0) at gmain.c:3710 block=block@entry=1, dispatch=dispatch@entry=1, self=<optimized out>) at gmain.c:3781 at gmain.c:3975 (server=<optimized out>, control_point=<optimized out>, user_data=0x0) at libdleyna/core/main-loop.c:155 argv=<optimized out>) at daemon.c:93 This is because g_hash_table_lookup returns NULL which we try to dereference to get the client_id. Instead of our hand-spun solution for storing unsigned integers in a GHashTable, let's use standard GLib mechanisms for doing that. We avoid this problem and reduce a g_new/g_free pair as a bonus.
* [configuration] Update version to start unstable cycleRegis Merlino2013-10-031-1/+1
| | | | Signed-off-by: Regis Merlino <regis.merlino@intel.com>
* [Configuration] Post-release version bumpRegis Merlino2013-08-221-1/+1
| | | | Signed-off-by: Regis Merlino <regis.merlino@intel.com>
* [Release] Version 0.2.0v0.2.0Regis Merlino2013-08-221-0/+3
| | | | Signed-off-by: Regis Merlino <regis.merlino@intel.com>
* [Connector] Change publish_object() signatureRegis Merlino2013-07-232-5/+13
| | | | | | | | | | | | The interface_index parameter relates to the corresponding xml part from the introspection data passed to initialize(). This was convenient for the d-bus connector implementation, but required xml parsing for other connector implementations. This commit replaces the interface_index parameter with the actual interface name to avoid the xml parsing task. Signed-off-by: Regis Merlino <regis.merlino@intel.com>
* [Configuration] Post-branch version bumpRegis Merlino2013-06-031-1/+1
| | | | Signed-off-by: Regis Merlino <regis.merlino@intel.com>
* [Release] Version 0.1.0v0.1.0version-0-1-0Regis Merlino2013-06-032-1/+4
| | | | Signed-off-by: Regis Merlino <regis.merlino@intel.com>
* [PATCH 2/2] [Configuration] Post-release version bumpRegis Merlino2013-05-311-1/+1
| | | | Signed-off-by: Regis Merlino <regis.merlino@intel.com>
* [Release] Version 0.0.2v0.0.2Regis Merlino2013-05-311-0/+3
| | | | Signed-off-by: Regis Merlino <regis.merlino@intel.com>
* [Copyright] Fix copyright headersLudovic Ferrandis2013-05-221-2/+3
| | | | Signed-off-by: Ludovic Ferrandis <ludovic.ferrandis@intel.com>
* [Build] Add autogen.sh script to call `autoreconf -i`Emanuele Aina2013-05-023-5/+23
| | | | | | | | | | | | Even when using autoreconf an autogen.sh script is usually expected, as it save users from needing to know which flags to pass to autoreconf (ie. '-i'). It is also usually responsible of launching autoreconf from the right directory, calling utilities like intltoolize and gtkdocize, checking out git submodules and running ./configure unless $NOCONFIGURE is set. Signed-off-by: Emanuele Aina <emanuele.aina@collabora.com>
* [Makefile] Add a pkgconfig fileRegis Merlino2013-04-103-1/+20
| | | | Signed-off-by: Regis Merlino <regis.merlino@intel.com>
* [Configuration] Post-release version bumpLudovic Ferrandis2013-03-121-1/+1
| | | | Signed-off-by: Ludovic Ferrandis <ludovic.ferrandis@intel.com>
* [Release] dLeyna-connector-dbus v0.0.1Ludovic Ferrandis2013-03-121-1/+1
| | | | Signed-off-by: Ludovic Ferrandis <ludovic.ferrandis@intel.com>
* [Build] Enable build from a master projectRegis Merlino2013-03-111-1/+10
| | | | Signed-off-by: Regis Merlino <regis.merlino@intel.com>
* [Connector] Add a disconnect functionRegis Merlino2013-02-261-2/+11
| | | | Signed-off-by: Regis Merlino <regis.merlino@intel.com>
* [Build] Updated the project name in two files.Mark Ryan2013-02-262-2/+2
| | | | Signed-off-by: Mark Ryan <mark.d.ryan@intel.com>
* [Init] Add initial source filesRegis Merlino2013-02-2211-0/+1534
| | | | Signed-off-by: Regis Merlino <regis.merlino@intel.com>
* [Configuration] Initial CommitLudovic Ferrandis2013-02-201-0/+5
Signed-off-by: Ludovic Ferrandis <ludovic.ferrandis@intel.com>