common: update tizen version information for api descriptions 74/71774/1 accepted/tizen/common/20160530.132102 accepted/tizen/ivi/20160602.022319 accepted/tizen/mobile/20160602.022359 accepted/tizen/tv/20160602.022232 accepted/tizen/wearable/20160602.022313 submit/tizen/20160530.054141
authorTaeyoung Kim <ty317.kim@samsung.com>
Fri, 27 May 2016 05:36:48 +0000 (14:36 +0900)
committerTaeyoung Kim <ty317.kim@samsung.com>
Fri, 27 May 2016 05:36:48 +0000 (14:36 +0900)
- Tizen 2.4 does not support Wearable profile. Thus the version
  information need to be updated to 3.0 fir wearable profile.

Change-Id: I79635d9e7276eaf872be1c5c0f4050f0d3331f78
Signed-off-by: Taeyoung Kim <ty317.kim@samsung.com>
include/callback.h
include/led.h
include/power.h

index 91d207d..65934be 100755 (executable)
@@ -40,7 +40,7 @@ typedef enum {
     DEVICE_CALLBACK_BATTERY_LEVEL,       /**< Called when a battery level is changed */
     DEVICE_CALLBACK_BATTERY_CHARGING,    /**< Called when battery charging state is changed */
     DEVICE_CALLBACK_DISPLAY_STATE,       /**< Called when a display state is changed */
-    DEVICE_CALLBACK_FLASH_BRIGHTNESS,    /**< Called when a flash brightness is changed (Since Tizen 2.4) */
+    DEVICE_CALLBACK_FLASH_BRIGHTNESS,    /**< Called when a flash brightness is changed (Since Tizen @if Mobile 2.4 @elseif WEARABLE 3.0 @endif) */
     DEVICE_CALLBACK_MAX
 } device_callback_e;
 
index 403dc7e..7eb51b6 100755 (executable)
@@ -81,7 +81,7 @@ int device_flash_get_brightness(int *brightness);
  * @privlevel public
  * @privilege %http://tizen.org/privilege/led
  *
- * @remarks Since 2.4, this API check camera flash status whether camera API preempted flash or not, so it could be failed if flash was preempted by camera API. In this case, API will return #DEVICE_ERROR_RESOURCE_BUSY error.
+ * @remarks Since @if Mobile 2.4 @elseif WEARABLE 3.0 @endif, this API check camera flash status whether camera API preempted flash or not, so it could be failed if flash was preempted by camera API. In this case, API will return #DEVICE_ERROR_RESOURCE_BUSY error.
  * This API is related to the following feature: %http://tizen.org/feature/camera.back.flash
  *
  * @param[in] brightness The brightness value of LED (@c 0 ~ MAX)
index bd05bb2..ab81bc8 100755 (executable)
@@ -42,7 +42,7 @@ extern "C" {
  * <TR><TD>POWER_LOCK_DISPLAY</TD><TD>ON</TD><TD>ON(Normal)</TD></TR>
  * <TR><TD>POWER_LOCK_DISPLAY_DIM</TD><TD>ON</TD><TD>ON(Dim)</TD></TR>
  * </TABLE>
- *          The POWER_LOCK_DISPLAY and POWER_LOCK_DISPLAY_DIM types were deprecated in Tizen 2.4.\n
+ *          The POWER_LOCK_DISPLAY and POWER_LOCK_DISPLAY_DIM types were deprecated in Tizen @if Mobile 2.4 @elseif WEARABLE 3.0 @endif.\n
  *          Please use below api set instead of these types.\n
  *          int efl_util_set_window_screen_mode(Evas_Object *window, efl_util_screen_mode_e mode);\n
  *          int efl_util_get_window_screen_mode(Evas_Object *window, efl_util_screen_mode_e *mode);
@@ -56,8 +56,8 @@ extern "C" {
  */
 typedef enum {
     POWER_LOCK_CPU,         /**< CPU lock */
-    POWER_LOCK_DISPLAY,     /**< Display normal lock (Deprecated since 2.4. Use efl_util_set_window_screen_mode() instead) */
-    POWER_LOCK_DISPLAY_DIM, /**< Display dim lock (Deprecated since 2.4. Use efl_util_set_window_screen_mode() instead) */
+    POWER_LOCK_DISPLAY,     /**< Display normal lock (Deprecated since @if Mobile 2.4 @elseif WEARABLE 3.0 @endif. Use efl_util_set_window_screen_mode() instead) */
+    POWER_LOCK_DISPLAY_DIM, /**< Display dim lock (Deprecated since @if Mobile 2.4 @elseif WEARABLE 3.0 @endif. Use efl_util_set_window_screen_mode() instead) */
 } power_lock_e;
 
 /**