From ce0d89aca13bb90811a03d25761b1eee870b9624 Mon Sep 17 00:00:00 2001 From: Wenchao Wang Date: Fri, 20 Jun 2014 17:36:16 +0800 Subject: [PATCH] Bugs fixed; version up Fixed TZDate constructor overload issue Change-Id: I46f5e3d5faed24ebb65098e74f606f8c8d710b6b Signed-off-by: Wenchao Wang --- package/changelog | 4 ++++ package/pkginfo.manifest | 2 +- web/cache.manifest | 2 +- web/ripple.js | 7 ++++++- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/package/changelog b/package/changelog index 36e7201..9e6c40f 100644 --- a/package/changelog +++ b/package/changelog @@ -1,3 +1,7 @@ +* 2.0.37 +- Updated Time module +- Bugs fixing +== wenchao.wang 2014-06-20 17:30 * 2.0.36 - New Locale module implementation - Bugs fixing diff --git a/package/pkginfo.manifest b/package/pkginfo.manifest index efa905c..2baef41 100644 --- a/package/pkginfo.manifest +++ b/package/pkginfo.manifest @@ -1,4 +1,4 @@ -Version:2.0.36 +Version:2.0.37 Maintainer:hyeongseok heo , gyeongseok seo , jihoon song , changhyun lee , bonyong lee Package:websimulator-core diff --git a/web/cache.manifest b/web/cache.manifest index aa7fe76..ef49829 100644 --- a/web/cache.manifest +++ b/web/cache.manifest @@ -107,4 +107,4 @@ images/AboutLogo.png images/refreshIcon.png images/ui-bg-hashed.png images/tizen-sdk-menu.png -# Manifest build date: Fri Jun 06 2014 17:16:16 GMT+0800 (CST) \ No newline at end of file +# Manifest build date: Fri Jun 20 2014 17:30:20 GMT+0800 (CST) \ No newline at end of file diff --git a/web/ripple.js b/web/ripple.js index bdd608a..0aa00c2 100644 --- a/web/ripple.js +++ b/web/ripple.js @@ -1,5 +1,5 @@ /*! - Ripple Mobile Environment Emulator v0.9.8 :: Built On Fri Jun 06 2014 17:16:14 GMT+0800 (CST) + Ripple Mobile Environment Emulator v0.9.8 :: Built On Fri Jun 20 2014 17:30:18 GMT+0800 (CST) Apache License Version 2.0, January 2004 @@ -91370,6 +91370,11 @@ function TZDate (dt) { throw new WebAPIException(errorcode.TYPE_MISMATCH_ERR); } else { d = new Date(arguments[0], arguments[1], arguments[2], hour, min, sec, msec); + if (arguments[7] !== undefined) { + tzid = arguments[7]; + } else { + tzid = time.getLocalTimezone(); + } } } } -- 2.7.4