summaryrefslogtreecommitdiff
path: root/src/librygel-ruih
Commit message (Collapse)AuthorAgeFilesLines
* all: API bumpJens Georg2022-06-032-5/+6
|
* All: Get rid of most deprecationsJens Georg2022-04-301-1/+1
|
* build: Drop AutotoolsJens Georg2019-10-202-54/+0
|
* Port to GSSDP/GUPnP 1.2 APIJens Georg2018-11-281-1/+1
|
* Port build system to mesonJens Georg2018-11-281-0/+27
|
* Use Unicode in translatable stringsPiotr Drąg2016-10-034-7/+7
| | | | See https://developer.gnome.org/hig/stable/typography.html
* all: Style fixes from superflous "static"Jens Georg2016-09-301-5/+3
| | | | Signed-off-by: Jens Georg <mail@jensge.org>
* Fix non-matching generic types of inferface implementationsRico Tzschichholz2016-09-301-1/+1
|
* Fix 'static const' warnings with vala 0.33.1Rico Tzschichholz2016-09-305-26/+26
|
* all: Update license text to LGPLv2.1 properJens Georg2015-11-0211-88/+88
| | | | | | We always claimed being LGPLv2.1 but the license text said differently. Signed-off-by: Jens Georg <mail@jensge.org>
* build: Fix librygel-ruih linkingJens Georg2015-05-091-3/+3
| | | | Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Check for mandatory argumentsParthiban Balasubramanian2015-05-071-0/+5
| | | | | | GetCompatibleUI action must check for 2 mandatory arguments with the action. Both the arguments can be empty but the element needs to be sent out in the request.
* all: Update log domainsJens Georg2015-01-101-1/+1
| | | | | | | Set log domains to core, server, renderer in the libraries to allow better filtering using G_LOG_MESSAGES. Signed-off-by: Jens Georg <mail@jensge.org>
* all: Bump ABI/API versionJens Georg2014-11-092-2/+2
| | | | Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Make license match with rest of rygelJens Georg2014-11-0811-152/+100
| | | | Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Watch config directoryJens Georg2014-11-082-14/+34
| | | | | | Dynamically disable/enable the plugin if the config file disappears/appears. Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Fix critical on first startJens Georg2014-11-081-0/+2
| | | | Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Don't abortJens Georg2014-11-081-10/+10
| | | | Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Style fixes for ServiceManagerJens Georg2014-11-081-24/+32
| | | | Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Service style fixesJens Georg2014-11-081-13/+11
| | | | Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Style fixes for RuihServerJens Georg2014-11-081-1/+1
| | | | Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Plugin style fixesJens Georg2014-11-081-7/+12
| | | | Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Style fixes for ProtocolElemJens Georg2014-11-081-30/+28
| | | | Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Style fixes for IconElemJens Georg2014-11-081-11/+23
| | | | Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Remove unreachable codeJens Georg2014-11-083-12/+0
| | | | | | | IconElem is created while iterating a list and icon_node->name is checked before creating the element. It's impossible to pass a null-node here. Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Fix style issues in FilterEntryJens Georg2014-11-082-13/+12
| | | | Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Style fixes for UIListingJens Georg2014-11-081-18/+19
| | | | Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Style fixes for UIElemJens Georg2014-11-081-28/+30
| | | | Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Allow null for protocolsJens Georg2014-11-084-4/+4
| | | | | | | | The code checks for == null and returns true then. But if the variable is not marked as nullable, vala will add g_val_return_if_fail (FALSE,… to the beginning of the function. Signed-off-by: Jens Georg <mail@jensge.org>
* core,ruih: Add XML node iterator and use itJens Georg2014-11-084-21/+13
| | | | Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Split get_compatible_uis into smaller functionsJens Georg2014-11-081-79/+93
| | | | Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Minor style fixesJens Georg2014-11-081-20/+24
| | | | Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Remove lockingJens Georg2014-11-081-124/+119
| | | | | | | get_compatible_uis () and set_ui_list () can never be called from different threads. It is not possible to modify the UI list while querying it. Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Make ServiceManager a singletonJens Georg2014-11-082-48/+60
| | | | | | | | | | | | | | | | Service was keeping information that belonged to ServiceManager and basically constructing it in its static constructor to create a single instance that was watching the file. This commit moves all static members of Service to ServiceManager, making it a full GObject and using the general singleton pattern we use in Rygel. This also fixes an potential issue in multi-homed hosts that the static file-monitor would cancelled by Service's instance destructor if one network interface went down. Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Fix for masterJens Georg2014-11-082-2/+2
| | | | Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Port fixes from cablelabsJens Georg2014-11-082-10/+21
| | | | Signed-off-by: Jens Georg <mail@jensge.org>
* ruih: Initial RUIH service implementationScott Deboy2014-11-0814-0/+1161
Initial implementation of RemoteUIServer:1 spec