0.9.13 release -- bugfix: TIVI-2637 Sometimes app list doesn't disappear after launch... 20/16120/1 submit/tizen/20140214.023123
authorMasayuki Sasaki <masayuki.sasaki@mail.toyota-td.jp>
Fri, 7 Feb 2014 06:53:12 +0000 (15:53 +0900)
committerMasayuki Sasaki <masayuki.sasaki@mail.toyota-td.jp>
Fri, 7 Feb 2014 06:57:08 +0000 (15:57 +0900)
Change-Id: Ifda5a257d71150931f81fd162a4529661e3646a3
Signed-off-by: Masayuki Sasaki <masayuki.sasaki@mail.toyota-td.jp>
configure.ac
data/share/packages/org.tizen.ico.homescreen.xml
data/share/packages/org.tizen.ico.onscreen.xml
data/share/packages/org.tizen.ico.statusbar.xml
data/share/packages/org.tizen.ico.system-controller.xml
lib/system-controller/CicoSCServer.cpp
packaging/ico-uxf-homescreen.changes
packaging/ico-uxf-homescreen.spec
src/homescreen/CicoHSServer.cpp
src/homescreen/CicoHomeScreen.cpp

index 4b2ab46..b98fcfa 100644 (file)
@@ -2,7 +2,7 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ([2.68])
-AC_INIT([org.tizen.ico.homescreen], [0.9.12], [])
+AC_INIT([org.tizen.ico.homescreen], [0.9.13], [])
 AM_INIT_AUTOMAKE([1.11 foreign no-dist-gzip dist-xz])
 AC_CONFIG_SRCDIR([configure.ac])
 AC_CONFIG_HEADERS([config.h])
index 7a43b82..2ce454c 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns="http://tizen.org/ns/packages" package="org.tizen.ico.homescreen" version="0.9.12" install-location="internal-only">
+<manifest xmlns="http://tizen.org/ns/packages" package="org.tizen.ico.homescreen" version="0.9.13" install-location="internal-only">
        <label>HomeScreen</label>
        <description>IVI HomeScreen Application</description>
        <ui-application appid="org.tizen.ico.homescreen" exec="/usr/apps/org.tizen.ico.homescreen/bin/HomeScreen" nodisplay="true" multiple="false" type="capp" taskmanage="true">
index a5109e9..2baafa2 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns="http://tizen.org/ns/packages" package="org.tizen.ico.onscreen" version="0.9.12" install-location="internal-only">
+<manifest xmlns="http://tizen.org/ns/packages" package="org.tizen.ico.onscreen" version="0.9.13" install-location="internal-only">
        <label>OnScreen</label>
        <description>IVI OnScreen Application</description>
        <ui-application appid="org.tizen.ico.onscreen" exec="/usr/apps/org.tizen.ico.onscreen/bin/OnScreen" nodisplay="true" multiple="false" type="capp" taskmanage="true">
index 4820f48..0decfaf 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns="http://tizen.org/ns/packages" package="org.tizen.ico.statusbar" version="0.9.12" install-location="internal-only">
+<manifest xmlns="http://tizen.org/ns/packages" package="org.tizen.ico.statusbar" version="0.9.13" install-location="internal-only">
        <label>StatusBar</label>
        <description>IVI StatusBar Application</description>
        <ui-application appid="org.tizen.ico.statusbar" exec="/usr/apps/org.tizen.ico.statusbar/bin/StatusBar" nodisplay="true" multiple="false" type="capp" taskmanage="true">
index 80fd2f2..1580e49 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns="http://tizen.org/ns/packages" package="org.tizen.ico.system-controller" version="0.9.12" install-location="internal-only">
+<manifest xmlns="http://tizen.org/ns/packages" package="org.tizen.ico.system-controller" version="0.9.13" install-location="internal-only">
        <label>system-controller</label>
        <author email="" href=""> </author>
        <description>ico system-controller</description>
index e9b72c3..a51a890 100644 (file)
@@ -673,7 +673,6 @@ CicoSCServer::clearRecvCmdQueue(const std::string & appid)
             ++itr;
         }
     }
-    m_recvCmdQueue.clear();
 
     ICO_TRA("CicoSCServer::clearCmdQueue Leave")
 }
@@ -702,7 +701,6 @@ CicoSCServer::clearSendMsgQueue(const std::string & appid)
             ++itr;
         }
     }
-    m_sendMsgQueue.clear();
 
     ICO_TRA("CicoSCServer::clearMsgQueue Leave")
 }
index 69c3f0b..73f2f07 100644 (file)
@@ -1,3 +1,7 @@
+* Fri Feb 07 2014 Shibata Makoto <shibata@mac.tec.toyota.co.jp> accepted/tizen/ivi/20140129.180846@4c051ac
+- 0.9.13 release
+-- bugfix: TIVI-2637 Sometimes app list doesn't disappear after launching app
+
 * Fri Jan 24 2014 Shibata Makoto <shibata@mac.tec.toyota.co.jp> accepted/tizen/ivi/release/20140109.181708@cae10ac
 - 0.9.12 release
 -- revise: live thumbnail display processing is changed into GPU un-depending
index 429ce8c..a02ede3 100644 (file)
@@ -1,7 +1,7 @@
 Name:       ico-uxf-homescreen
 Summary:    Sample homescreen and system controller
-Version:    0.9.12
-Release:    1.2
+Version:    0.9.13
+Release:    1.1
 Group:         Graphics & UI Framework/Automotive UI
 License:    Apache-2.0
 URL:        ""
index bd058bd..61db539 100644 (file)
@@ -553,7 +553,6 @@ CicoHSServer::clearRecvCmdQueue(const std::string & appid)
             ++itr;
         }
     }
-    m_recvCmdQueue.clear();
 
     ICO_TRA("CicoHSServer::clearCmdQueue Leave")
 }
@@ -582,7 +581,6 @@ CicoHSServer::clearSendMsgQueue(const std::string & appid)
             ++itr;
         }
     }
-    m_sendMsgQueue.clear();
 
     ICO_TRA("CicoHSServer::clearMsgQueue Leave")
 }
index 422a0cd..a43214e 100644 (file)
@@ -25,6 +25,7 @@
 #include "CicoLibString.h"
 #include "CicoHSServer.h"
 #include "CicoHSAppControl.h"
+#include "CicoSound.h"
 using namespace std;
 
 /*============================================================================*/
@@ -1646,6 +1647,9 @@ CicoHomeScreen::StartHomeScreen(int orientation)
     this->config = new CicoGKeyFileConfig();
     this->config->Initialize(ICO_HOMESCREEN_CONFIG_FILE);
 
+    /* init home screen soud */
+    CicoSound::GetInstance()->Initialize(this->config);
+
     /*Get application info*/
     CreateAppInfoList();