Compare commits
	
		
			16 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					38cc9dd67d | ||
| 
						 | 
					f4b17e4266 | ||
| 
						 | 
					0d161d6b95 | ||
| 
						 | 
					f4e89b99c2 | ||
| 
						 | 
					8a2f0096ae | ||
| 
						 | 
					bffba82ed6 | ||
| 
						 | 
					c71040dcd1 | ||
| 
						 | 
					348ebf4525 | ||
| 
						 | 
					58b5ee55a6 | ||
| 
						 | 
					489e489c88 | ||
| 
						 | 
					42e930998c | ||
| 
						 | 
					fa2b8aa3a8 | ||
| 
						 | 
					ff899e3917 | ||
| 
						 | 
					b3de512237 | ||
| 
						 | 
					ac94c56b38 | ||
| 
						 | 
					f813e5dd80 | 
							
								
								
									
										34
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										34
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							@@ -1,3 +1,37 @@
 | 
			
		||||
mce-dev (1.16.0) unstable; urgency=low
 | 
			
		||||
 | 
			
		||||
  * [mce] Add D-Bus constants for exposing blanking pause and inhibit
 | 
			
		||||
    states. Contributes to JB#28929
 | 
			
		||||
 | 
			
		||||
 -- Simo Piiroinen <simo.piiroinen@jollamobile.com>  Wed, 20 May 2015 12:54:50 +0300
 | 
			
		||||
 | 
			
		||||
mce-dev (1.15.0) unstable; urgency=low
 | 
			
		||||
 | 
			
		||||
  * [mce] Add dbus method for requesting settings reset. Contributes to
 | 
			
		||||
    JB#24286
 | 
			
		||||
 | 
			
		||||
 -- Simo Piiroinen <simo.piiroinen@jollamobile.com>  Tue, 17 Feb 2015 10:42:49 +0200
 | 
			
		||||
 | 
			
		||||
mce-dev (1.14.0) unstable; urgency=low
 | 
			
		||||
 | 
			
		||||
  * [mce] Add dbus method for requesting display low power mode.
 | 
			
		||||
    Contributes to JB#20906
 | 
			
		||||
 | 
			
		||||
 -- Simo Piiroinen <simo.piiroinen@jollamobile.com>  Tue, 05 Aug 2014 12:55:05 +0300
 | 
			
		||||
 | 
			
		||||
mce-dev (1.13.0) unstable; urgency=low
 | 
			
		||||
 | 
			
		||||
  * [mce-headers] Add D-Bus signals for led pattern active state changes
 | 
			
		||||
  * [mce-headers] Document tracking id parameter for cpu keepalive method calls
 | 
			
		||||
 | 
			
		||||
 -- Simo Piiroinen <simo.piiroinen@jollamobile.com>  Tue, 18 Mar 2014 15:00:14 +0200
 | 
			
		||||
 | 
			
		||||
mce-dev (1.12.5) unstable; urgency=low
 | 
			
		||||
 | 
			
		||||
 * [mce-headers] Fix MCE_CPU_KEEPALIVE_PERIOD_REQ method call documentation
 | 
			
		||||
 | 
			
		||||
 -- Simo Piiroinen <simo.piiroinen@jollamobile.com>  Wed, 11 Sep 2013 08:26:03 +0300
 | 
			
		||||
 | 
			
		||||
mce-dev (1.12.4) unstable; urgency=low
 | 
			
		||||
 | 
			
		||||
  * [packaging] move to git based packaging
 | 
			
		||||
 
 | 
			
		||||
@@ -262,6 +262,18 @@
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_DISPLAY_OFF_REQ		"req_display_state_off"
 | 
			
		||||
 | 
			
		||||
/** Set display to low power mode
 | 
			
		||||
 *
 | 
			
		||||
 * Low power mode is a display off sub state. From normal
 | 
			
		||||
 * display state signaling point of view it behaves just as
 | 
			
		||||
 * display off would. Depending on available hw support and
 | 
			
		||||
 * configuration extra ipc relevant for home screen / system
 | 
			
		||||
 * ui only might happen.
 | 
			
		||||
 *
 | 
			
		||||
 * @since v1.33.0
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_DISPLAY_LPM_REQ             "req_display_state_lpm"
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Prevent display from blanking
 | 
			
		||||
 *
 | 
			
		||||
@@ -276,6 +288,24 @@
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_CANCEL_PREVENT_BLANK_REQ	"req_display_cancel_blanking_pause"
 | 
			
		||||
 | 
			
		||||
/** Get current blank prevention status
 | 
			
		||||
 *
 | 
			
		||||
 * @since 1.51.0
 | 
			
		||||
 *
 | 
			
		||||
 * @return @c gchar @c * with the blanking pause state
 | 
			
		||||
 *         (see @ref mce/mode-names.h for valid blanking pause states)
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_PREVENT_BLANK_GET		"get_display_blanking_pause"
 | 
			
		||||
 | 
			
		||||
/** Get current blank inhibition status
 | 
			
		||||
 *
 | 
			
		||||
 * @since 1.51.0
 | 
			
		||||
 *
 | 
			
		||||
 * @return @c gchar @c * with the blanking inhibit state
 | 
			
		||||
 *         (see @ref mce/mode-names.h for valid blanking inhibit states)
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_BLANKING_INHIBIT_GET	"get_display_blanking_inhibit"
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Request CABC mode change
 | 
			
		||||
 *
 | 
			
		||||
@@ -346,7 +376,20 @@
 | 
			
		||||
 *
 | 
			
		||||
 * @since v1.12.8
 | 
			
		||||
 *
 | 
			
		||||
 * @return period in seconds as DBUS_TYPE_UINT32
 | 
			
		||||
 * @since v1.23.7
 | 
			
		||||
 *
 | 
			
		||||
 * An unique within process tracking id can be passed to all
 | 
			
		||||
 * cpu keepalive related D-Bus method calls. This allows mce
 | 
			
		||||
 * to keep track of multiple, possibly overlapping keepalive
 | 
			
		||||
 * periods from one process.
 | 
			
		||||
 *
 | 
			
		||||
 * Old code that does not pass the tracking id still works
 | 
			
		||||
 * as long as the client process does not have multiple
 | 
			
		||||
 * overlapping periods at once.
 | 
			
		||||
 *
 | 
			
		||||
 * @param context Tracking id as DBUS_TYPE_STRING
 | 
			
		||||
 *
 | 
			
		||||
 * @return period in seconds as DBUS_TYPE_INT32
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_CPU_KEEPALIVE_PERIOD_REQ	"req_cpu_keepalive_period"
 | 
			
		||||
 | 
			
		||||
@@ -362,6 +405,8 @@
 | 
			
		||||
 *
 | 
			
		||||
 * @since v1.12.8
 | 
			
		||||
 *
 | 
			
		||||
 * @param context Tracking id as DBUS_TYPE_STRING
 | 
			
		||||
 *
 | 
			
		||||
 * @return success as DBUS_TYPE_BOOLEAN
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_CPU_KEEPALIVE_START_REQ	"req_cpu_keepalive_start"
 | 
			
		||||
@@ -377,6 +422,8 @@
 | 
			
		||||
 *
 | 
			
		||||
 * @since v1.12.8
 | 
			
		||||
 *
 | 
			
		||||
 * @param context Tracking id as DBUS_TYPE_STRING
 | 
			
		||||
 *
 | 
			
		||||
 * @return success as DBUS_TYPE_BOOLEAN
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_CPU_KEEPALIVE_STOP_REQ	"req_cpu_keepalive_stop"
 | 
			
		||||
@@ -418,6 +465,19 @@
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_CONFIG_SET	"set_config"
 | 
			
		||||
 | 
			
		||||
/** Reset configuration values to default
 | 
			
		||||
 *
 | 
			
		||||
 * All config settings with keyname that matches the given substring
 | 
			
		||||
 * will be reset to configured defaults e.g. using "/" resets all
 | 
			
		||||
 * settings while using "/display/" resets only display related values.
 | 
			
		||||
 *
 | 
			
		||||
 * @since v1.42.0
 | 
			
		||||
 *
 | 
			
		||||
 * @param keyish Substring of config value name as DBUS_TYPE_STRING
 | 
			
		||||
 *
 | 
			
		||||
 * @return Number of changed settings as DBUS_TYPE_INT32; -1 on failure
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_CONFIG_RESET "reset_config"
 | 
			
		||||
/*@}*/
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
@@ -444,6 +504,24 @@
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_DISPLAY_SIG			"display_status_ind"
 | 
			
		||||
 | 
			
		||||
/** Notify everyone whether the display blanking is paused
 | 
			
		||||
 *
 | 
			
		||||
 * @since v1.51.0
 | 
			
		||||
 *
 | 
			
		||||
 * @return @c gchar @c * with the blanking pause state
 | 
			
		||||
 *         (see @ref mce/mode-names.h for valid blanking pause states)
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_PREVENT_BLANK_SIG		"display_blanking_pause_ind"
 | 
			
		||||
 | 
			
		||||
/** Notify everyone whether the display blanking is inhibited
 | 
			
		||||
 *
 | 
			
		||||
 * @since v1.51.0
 | 
			
		||||
 *
 | 
			
		||||
 * @return @c gchar @c * with the display baling inhibit state
 | 
			
		||||
 *         (see @ref mce/mode-names.h for valid blanking inhibit states)
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_BLANKING_INHIBIT_SIG	"display_blanking_inhibit_ind"
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Notify everyone that the state of the automatic power saving mode changed
 | 
			
		||||
 *
 | 
			
		||||
@@ -510,8 +588,11 @@
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Activates a pre-defined LED pattern
 | 
			
		||||
 *
 | 
			
		||||
 * Non-existing patterns are ignored
 | 
			
		||||
 *
 | 
			
		||||
 * See also: MCE_LED_PATTERN_ACTIVATED_SIG
 | 
			
		||||
 *
 | 
			
		||||
 * @credential mce::LEDControl
 | 
			
		||||
 * @since v1.5.0
 | 
			
		||||
 * @param pattern @c gchar @c * with the pattern name
 | 
			
		||||
@@ -521,8 +602,11 @@
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Deactivates a pre-defined LED pattern
 | 
			
		||||
 *
 | 
			
		||||
 * Non-existing patterns are ignored
 | 
			
		||||
 *
 | 
			
		||||
 * See also: MCE_LED_PATTERN_DEACTIVATED_SIG
 | 
			
		||||
 *
 | 
			
		||||
 * @credential mce::LEDControl
 | 
			
		||||
 * @since v1.5.0
 | 
			
		||||
 * @param pattern @c gchar @c * with the pattern name
 | 
			
		||||
@@ -530,6 +614,20 @@
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_DEACTIVATE_LED_PATTERN	"req_led_pattern_deactivate"
 | 
			
		||||
 | 
			
		||||
/** Notify everyone that a led pattern has been activated
 | 
			
		||||
 *
 | 
			
		||||
 * @since v1.25.0
 | 
			
		||||
 * @return @c gchar @c * led pattern name
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_LED_PATTERN_ACTIVATED_SIG   "led_pattern_activated_ind"
 | 
			
		||||
 | 
			
		||||
/** Notify everyone that a led pattern has been deactivated
 | 
			
		||||
 *
 | 
			
		||||
 * @since v1.25.0
 | 
			
		||||
 * @return @c gchar @c * led pattern name
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_LED_PATTERN_DEACTIVATED_SIG "led_pattern_deactivated_ind"
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Enable LED; this does not affect the LED pattern stack
 | 
			
		||||
 * Note: The GConf setting for LED flashing overrides this value
 | 
			
		||||
 
 | 
			
		||||
@@ -163,6 +163,28 @@
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_DISPLAY_OFF_STRING			"off"
 | 
			
		||||
 | 
			
		||||
/** Blank prevent state name for active
 | 
			
		||||
 *
 | 
			
		||||
 * @since v1.51.0
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_PREVENT_BLANK_ACTIVE_STRING		"active"
 | 
			
		||||
/** Blank prevent state name for inactive
 | 
			
		||||
 *
 | 
			
		||||
 * @since v1.51.0
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_PREVENT_BLANK_INACTIVE_STRING	"inactive"
 | 
			
		||||
 | 
			
		||||
/** Blank inhibit state name for active
 | 
			
		||||
 *
 | 
			
		||||
 * @since v1.51.0
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_INHIBIT_BLANK_ACTIVE_STRING		"active"
 | 
			
		||||
/** Blank inhibit state name for inactive
 | 
			
		||||
 *
 | 
			
		||||
 * @since v1.51.0
 | 
			
		||||
 */
 | 
			
		||||
#define MCE_INHIBIT_BLANK_INACTIVE_STRING	"inactive"
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * CABC name for CABC disabled
 | 
			
		||||
 *
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								mce.pc
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								mce.pc
									
									
									
									
									
								
							@@ -3,7 +3,7 @@ includedir=${prefix}/include
 | 
			
		||||
 | 
			
		||||
Name: mce
 | 
			
		||||
Description: Mode Control Entity
 | 
			
		||||
Version: 1.12.4
 | 
			
		||||
Version: 1.16.0
 | 
			
		||||
Requires:
 | 
			
		||||
Libs:
 | 
			
		||||
Cflags: -I${includedir}
 | 
			
		||||
 
 | 
			
		||||
@@ -9,7 +9,7 @@ Name:       mce-headers
 | 
			
		||||
# << macros
 | 
			
		||||
 | 
			
		||||
Summary:    Development files for mce
 | 
			
		||||
Version:    1.12.4
 | 
			
		||||
Version:    1.16.0
 | 
			
		||||
Release:    1
 | 
			
		||||
Group:      Development/Libraries
 | 
			
		||||
License:    LGPLv2
 | 
			
		||||
 
 | 
			
		||||
@@ -1,6 +1,6 @@
 | 
			
		||||
Name: mce-headers
 | 
			
		||||
Summary: Development files for mce
 | 
			
		||||
Version: 1.12.4
 | 
			
		||||
Version: 1.16.0
 | 
			
		||||
Release: 1
 | 
			
		||||
Group: Development/Libraries
 | 
			
		||||
License: LGPLv2
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user