Update change log and spec for wrt-plugins-tizen_0.2.79
authorKisub Song <kisubs.song@samsung.com>
Thu, 6 Sep 2012 05:06:17 +0000 (14:06 +0900)
committerKisub Song <kisubs.song@samsung.com>
Thu, 6 Sep 2012 05:06:17 +0000 (14:06 +0900)
Changed Modules : MediaContent

[Version] 0.2.79
[Project] GT-I8800, Public
[Title] SEL Verification
[Team] WebAPI
[BinType] PDA
[Customer] Open

[Issue] http://slp-info.sec.samsung.net/bugs/browse/WEB-1808a
[Problem] findItem don't work when count value is null.
[Cause] In the count argument, null or undefined will be regarded as a
zero.
[SCMRequest] N/A

[SCMRequest] N/A

Change-Id: Ie54c8fe9df7da55dd3e276a52e43e816124cf3a9

debian/changelog
packaging/wrt-plugins-tizen.spec
src/standards/Tizen/Mediacontent/JSMediacontent.cpp

index a5b3b52..cf7c3e8 100644 (file)
@@ -1,3 +1,11 @@
+wrt-plugins-tizen (0.2.79) unstable; urgency=low
+
+  * Bug fix on MediaContent
+  * Git : slp/pkgs/w/wrt-plugins-tizen
+  * Tag : wrt-plugins-tizen_0.2.79
+
+ -- Kisub Song <kisubs.song@samsung.com>  Thu, 06 Sep 2012 13:57:59 +0900
+
 wrt-plugins-tizen (0.2.78) unstable; urgency=low
 
   * Bug fix on LBS, Time and Alarm
index b02b639..3ee46cb 100755 (executable)
@@ -1,6 +1,6 @@
 Name:       wrt-plugins-tizen
 Summary:    JavaScript plugins for WebRuntime
-Version:    0.2.78
+Version:    0.2.79
 Release:    0
 Group:      TO_BE_FILLED
 License:    TO_BE_FILLED
index d2f58b4..1d1e46b 100755 (executable)
@@ -403,6 +403,8 @@ JSValueRef JSMediacontent::findItems(
                if(argumentCount >= 6)  //optional unsigned long? count
                {
                        long count = filterConverter->toLong(arguments[5]);
+                       if (0 == count)
+                               count = -1;
                        dplEvent->setLimit(count);
                }               
                if(argumentCount >= 7)  //optional unsigned long? offset