upload isf-2.3.6122
authorJihoon Kim <jihoon48.kim@samsung.com>
Tue, 22 Jan 2013 05:00:48 +0000 (14:00 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Tue, 22 Jan 2013 05:06:04 +0000 (14:06 +0900)
Change-Id: Id2d45362dc5f4c58bb75cbf0a8840355d0753303

configure.ac
ism/extras/efl_immodule/isf_imf_context.cpp
ism/extras/efl_immodule/isf_imf_context.h
ism/extras/efl_immodule/isf_imf_control_ui.cpp
packaging/isf.spec
releasenote.txt

index 75b5217b8cb79806ca3d42b86c97e18dfc464405..3689540a6c04128d52209e3998e3d6950e86b9db 100755 (executable)
@@ -1,6 +1,6 @@
 # Process this file with autoconf to produce a configure script
 #AC_INIT(scim, 1.4.7, suzhe@tsinghua.org.cn)
-AC_INIT(isf, 2.3.6119, isf@samsung.com)
+AC_INIT(isf, 2.3.6122, isf@samsung.com)
 AC_CONFIG_SRCDIR([ism/src/scim.h])
 m4_pattern_allow([^AS_])
 
@@ -11,7 +11,7 @@ m4_pattern_allow([^AS_])
 # ISF version
 ISF_MAJOR_VERSION=2
 ISF_MINOR_VERSION=3
-ISF_MICRO_VERSION=6119
+ISF_MICRO_VERSION=6122
 
 ISF_VERSION=$ISF_MAJOR_VERSION.$ISF_MINOR_VERSION.$ISF_MICRO_VERSION
 
index 0c0e79dc407bb1a86bef6e340abbb831150d9789..08190d93bfb5b7b964198a7c22411c5afa8c3e2d 100644 (file)
@@ -56,8 +56,6 @@
 # define CODESET "INVALID"
 #endif
 
-const double DOUBLE_SPACE_INTERVAL = 1.0;
-
 using namespace scim;
 
 struct _EcoreIMFContextISFImpl {
index cc1c0273cbf8c801f99e3de79bd29edc681db90a..9091bd31a765fca7678503c72bb292284f3a8488 100644 (file)
@@ -31,6 +31,9 @@
 
 #define LOG_TAG "immodule"
 
+const double DOUBLE_SPACE_INTERVAL = 1.0;
+const double HIDE_TIMER_INTERVAL = 0.05;
+
 typedef struct _EcoreIMFContextISF      EcoreIMFContextISF;
 typedef struct _EcoreIMFContextISFImpl  EcoreIMFContextISFImpl;
 
index a83b7f003fcf28594304d6ff9dc5fca8bb4997be..95168bde6e3ef8dcb2707ebb71c076d705cef092 100644 (file)
@@ -286,7 +286,7 @@ static void _input_panel_hide_timer_start (void *data)
     _save_hide_context_info (ctx);
 
     if (!hide_timer)
-        hide_timer = ecore_timer_add (0.05, _hide_timer_handler, data);
+        hide_timer = ecore_timer_add (HIDE_TIMER_INTERVAL, _hide_timer_handler, data);
 }
 
 static void _input_panel_hide (Ecore_IMF_Context *ctx, Eina_Bool instant)
index 698d7e28a3ac07d7d7a4b448019cdc19c3c49bc8..cb9ac2ebfc90226132adb3d489182f092843f620 100755 (executable)
@@ -3,8 +3,8 @@
 
 Name:       isf
 Summary:    Input Service Framework
-Version:    2.3.6119
-Release:    2
+Version:    2.3.6122
+Release:    1
 Group:      System Environment/Libraries
 License:    LGPL
 Source0:    %{name}-%{version}.tar.gz
index ca04d4f5903469f15950f68fb78790a91345704d..d59b662dd04ff242a244dbd92ee17bd8c6576682 100644 (file)
@@ -1,3 +1,8 @@
+ISF 2.3.6122 :
+ 1. Remove unused ISF logs
+ 2. fix memory leak related to ecore_x_e_window_profile_get
+
+
 ISF 2.3.6119 :
  1. [immodule] Compare window ID in X window focus out callback function