summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKisub Song <kisubs.song@samsung.com>2012-09-12 09:34:04 +0900
committerKisub Song <kisubs.song@samsung.com>2012-09-12 09:34:04 +0900
commit20792f958821733c81b66ec2ab2b65156fc3b61c (patch)
treebfb1b6cede3b3ba04046543ca9de42c150c580a8
parentcf56c1a5ce6351214e6672918a7b43e3bd559f1d (diff)
downloadwrt-plugins-tizen-20792f958821733c81b66ec2ab2b65156fc3b61c.tar.gz
wrt-plugins-tizen-20792f958821733c81b66ec2ab2b65156fc3b61c.tar.bz2
wrt-plugins-tizen-20792f958821733c81b66ec2ab2b65156fc3b61c.zip
Update change log and spec for wrt-plugins-tizen_0.2.83
Changed Modules : Application [Version] 0.2.83 [Project] GT-I8800, Public [Title] SEL Verification [Team] WebAPI [BinType] PDA [Customer] Open [Issue#] N/A [Problem] Application - Not throwed exception when app id for launchService is wrong [Cause] Implemented to ignore the wrong app id [Solution] Follow app-svc's policy. [SCMRequest] N/A Change-Id: I37a5b309abccd7167ea056f99a485fa4020a8543
-rw-r--r--debian/changelog10
-rwxr-xr-xpackaging/wrt-plugins-tizen.spec2
-rwxr-xr-xsrc/platform/Tizen/Application/Application.cpp5
3 files changed, 11 insertions, 6 deletions
diff --git a/debian/changelog b/debian/changelog
index 3833d99..1ce591e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,12 @@
-wrt-plugins-tizen (0.2.81) unstable; urgency=low
+wrt-plugins-tizen (0.2.83) unstable; urgency=low
+
+ * Bug fix on Application
+ * Git : framework/web/wrt-plugins-tizen
+ * Tag : wrt-plugins-tizen_0.2.83
+
+ -- Kisub Song <kisubs.song@samsung.com> Wed, 12 Sep 2012 09:29:30 +0900
+
+wrt-plugins-tizen (0.2.82) unstable; urgency=low
* Bug fix on Calendar and TimeUtil
* Git : framework/web/wrt-plugins-tizen
diff --git a/packaging/wrt-plugins-tizen.spec b/packaging/wrt-plugins-tizen.spec
index b46028c..9e7c9a8 100755
--- a/packaging/wrt-plugins-tizen.spec
+++ b/packaging/wrt-plugins-tizen.spec
@@ -1,6 +1,6 @@
Name: wrt-plugins-tizen
Summary: JavaScript plugins for WebRuntime
-Version: 0.2.82
+Version: 0.2.83
Release: 0
Group: TO_BE_FILLED
License: TO_BE_FILLED
diff --git a/src/platform/Tizen/Application/Application.cpp b/src/platform/Tizen/Application/Application.cpp
index 087a321..020fba6 100755
--- a/src/platform/Tizen/Application/Application.cpp
+++ b/src/platform/Tizen/Application/Application.cpp
@@ -1040,10 +1040,7 @@ void Application::OnRequestReceived(const EventLaunchServicePtr& event)
AppManagerPackageInfoPtr packageInfo = AppManagerPackageInfoPtr(
new AppManagerPackageInfo(appId.c_str(), AppManagerPackageInfo::ApplicationId));
- if(packageInfo->isValid())
- {
- service_set_app_id(service, appId.c_str());
- }
+ service_set_app_id(service, appId.c_str());
}
LogDebug("appservice->getServiceDataArray");