Piotr Kosko [Thu, 15 Oct 2015 10:52:36 +0000 (12:52 +0200)]
[Filesystem] Fixed path-related issues
[Features] Fixed issues:
1. resolve "documents/" works as resolving "documents"
2. multiple "/" is filepaths are merged to single one
[Verification] Code compiles without errors.
TCTs of Filesystem, Calendar, Alarm, Archive and Exif return 100% passrate.
Scenarios with results below:
1.
tizen.filesystem.resolve(
'images/',
function(dir) {
var a = dir.createDirectory('testt');
console.log("path: " + a.path + " fullPath: " + a.fullPath);
}, function(e) {
console.log("Error: " + e.message);
}, "rw"
);
---------
path: images/ fullPath: images/testt
2.
tizen.filesystem.resolve(
'images/testt/',
function(dir) {
console.log("Mount point Name is " + dir.path);
console.log("path: " + dir.path + " fullPath: " + dir.fullPath);
}, function(e) {
console.log("Error: " + e.message);
}, "rw"
);
---------
path: images/ fullPath: images/testt
3.
tizen.filesystem.resolve(
'images//////testt/',
function(dir) {
console.log("Mount point Name is " + dir.path);
console.log("path: " + dir.path + " fullPath: " + dir.fullPath);
}, function(e) {
console.log("Error: " + e.message);
}, "rw"
);
---------
path: images/ fullPath: images/testt
Change-Id: I66ce92a5207148dfa82109e187b8e4f58727aead
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
jk.pu [Fri, 20 May 2016 02:24:41 +0000 (11:24 +0900)]
[iotcon]change native api follow to Native ACR-620
Change-Id: Icdd4115315606f3e1e2de8a950fe6128432cc4e0
Signed-off-by: jk.pu <jk.pu@samsung.com>
Hyunjin Park [Thu, 19 May 2016 09:25:06 +0000 (18:25 +0900)]
[version] 0.83
Change-Id: I14c7337930ef31a48ddb90cb374f31388bb8042d
Hyunjin Park [Thu, 19 May 2016 09:14:30 +0000 (18:14 +0900)]
[HAM] remove build warning
humanactivitymonitor_manager.cc:562:9: warning: variable 'ret' set but not used [-Wunused-but-set-variable]
Change-Id: I292f3986556f95a55b33175a8fd9b9d8233befe0
Hyunjin Park [Thu, 19 May 2016 07:08:52 +0000 (00:08 -0700)]
Merge "[Common] Added CHECK_PRIVILEGE macro." into tizen
Hyunjin Park [Thu, 19 May 2016 01:35:49 +0000 (10:35 +0900)]
[version] 0.82
Change-Id: If8cece950d4d1001e4512dc37a5e668439b5e985
Tomasz Marciniak [Wed, 18 May 2016 07:21:11 +0000 (09:21 +0200)]
[Common] Added CHECK_PRIVILEGE macro.
[Feature] This macro is used by new modules which
return TizenPlatform object to JS layer.
[Verification] Code compiles.
Change-Id: Id471face94ea52896092221f3ad03052d18007ac
Signed-off-by: Tomasz Marciniak <t.marciniak@samsung.com>
Lukasz Bardeli [Tue, 17 May 2016 11:50:05 +0000 (13:50 +0200)]
[Feedback] small fixes
Change-Id: Ie1e2515de414cfb95d63116eb12954f2552fa63e
Signed-off-by: Lukasz Bardeli <l.bardeli@samsung.com>
Hyunjin Park [Tue, 17 May 2016 09:37:17 +0000 (18:37 +0900)]
[version] 0.81
Change-Id: Ib4a8b79a2c243af4cf1b2a23f415a26bce020978
Tomasz Marciniak [Mon, 16 May 2016 12:20:59 +0000 (14:20 +0200)]
[Push] Return null in case there is no data received.
[Feature] If native api return PUSH_SERVICE_ERROR_NO_DATA
in JS layer null object should be returned.
[Verification] Code compiles.
Change-Id: Id34aaacf5494208ae022ef4403cdbf9dac212860
Signed-off-by: Tomasz Marciniak <t.marciniak@samsung.com>
Hyunjin Park [Mon, 16 May 2016 01:23:45 +0000 (10:23 +0900)]
[version] 0.80
Change-Id: Ie0313fb209f384d364ab9ccd83ef4f8a304f1cce
Hyunjin Park [Mon, 16 May 2016 01:23:12 +0000 (18:23 -0700)]
Merge "[Common][Systeminfo] deviced used for mobile profile" into tizen
Hyunjin Park [Mon, 16 May 2016 01:11:51 +0000 (18:11 -0700)]
Merge "[SecureElement] remove space" into tizen
Piotr Kosko [Wed, 11 May 2016 13:08:40 +0000 (15:08 +0200)]
[Common][Systeminfo] deviced used for mobile profile
[Feature] Deviced is used to handle sdcard on mobile now
[Verification] Code compiles without errors.
TCT passrate of filesystem(auto and manual) - 100%
TCT passrate of systeminfo - 100%
Verification was done on binary 0511.1 with installed latest deviced package.
Change-Id: I282334ab55a996db79f502d606ced56fd6107665
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
Lukasz Bardeli [Thu, 12 May 2016 09:08:21 +0000 (11:08 +0200)]
[SecureElement] remove space
Change-Id: Ibb3c6dc7eb5ecf4229181681ca36ceb711295dd9
Signed-off-by: Lukasz Bardeli <l.bardeli@samsung.com>
Hyunjin Park [Thu, 12 May 2016 04:24:14 +0000 (13:24 +0900)]
[version] 0.79
Change-Id: I8cf1a859bfe6a65a574d8b7b47f2521776d3b6f3
Piotr Kosko [Wed, 11 May 2016 12:30:42 +0000 (14:30 +0200)]
Fixed method name in JS layer
[Bug] name of method was incorrect
Change-Id: I05c9ee1b389b1a31d1d702992580275f771493c8
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
Hyunjin Park [Wed, 11 May 2016 06:23:23 +0000 (23:23 -0700)]
Merge "[Contact] - Improving performance of the functions find" into tizen
taekeun.kang [Wed, 11 May 2016 02:18:51 +0000 (11:18 +0900)]
[PackageManager] add code to check if each property in progressCallback is available
Change-Id: I83300fbd159d603886dfb9425898db60f18c510c
Signed-off-by: taekeun.kang <taekeun.kang@samsung.com>
Andrzej Popowski [Tue, 10 May 2016 11:55:22 +0000 (13:55 +0200)]
[Contact] - Improving performance of the functions find
[Verification] - TCT results 100% (459/459/0/0/0)
Change-Id: I7de61960bb809ac56b65a807d0e1bfb0cd11f66d
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
Hyunjin Park [Tue, 10 May 2016 07:52:23 +0000 (00:52 -0700)]
Merge "[Common] deviced dbus used interface changed" into tizen
Hyunjin Park [Tue, 10 May 2016 02:43:50 +0000 (11:43 +0900)]
[widget service] add conditional feature on widget service
due to TV profile's build error
Change-Id: Ic52961d40e16d16627cebaaafbe474135aaf2f11
Hyunjin Park [Wed, 4 May 2016 00:57:22 +0000 (09:57 +0900)]
[Common] deviced dbus used interface changed
[Feature] Deviced block module interface was changed. Expected data format is
(issssssisibii) - two additional ints were added.
[Verification] Filesystem and Systeminfo TCTs 100% passrate on mobiles
Change-Id: If7697493f0ec51024242c5e1524efc5098901a7d
Hyunjin Park [Mon, 9 May 2016 01:54:00 +0000 (10:54 +0900)]
Merge branch 'tizen_3.0' into tizen
Hyunjin Park [Mon, 9 May 2016 01:52:40 +0000 (10:52 +0900)]
[version] 0.77
Change-Id: Ib5d188f07e1a16c678a959107a52e44dd3374d0c
HyunJin Park [Mon, 9 May 2016 01:51:20 +0000 (10:51 +0900)]
Merge "[Contact] - fixing bug when getting data of a person" into tizen_3.0
HyunJin Park [Mon, 9 May 2016 01:48:00 +0000 (10:48 +0900)]
Merge "[Push] Added new functionalites, code uses push-service.h" into tizen_3.0
Pawel Andruszkiewicz [Fri, 1 Apr 2016 12:05:22 +0000 (14:05 +0200)]
[SystemInfo] Wait for all existing asynchronous operations.
Running cordova test with WiFi disabled and mobile data enabled caused segmentation fault.
This commit fixed that issue.
[Verification] TCT pass rate: 100% (297/297/0/0/0)
Change-Id: Ibdc42f439f878605c7edc0e5a9c2084d8528226d
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
Andrzej Popowski [Fri, 6 May 2016 13:59:06 +0000 (15:59 +0200)]
[Contact] - fixing bug when getting data of a person
Change-Id: I7db8525d713ca6f7029513f4fbdcf62bf0936bb4
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
Hyunjin Park [Wed, 4 May 2016 09:39:21 +0000 (18:39 +0900)]
Merge branch 'tizen_3.0' into tizen
Hyunjin Park [Wed, 4 May 2016 09:38:45 +0000 (18:38 +0900)]
[version] 0.76
Change-Id: I6411fa2614e7207b73197f860644bf0307ee7b9c
HyunJin Park [Wed, 4 May 2016 09:33:31 +0000 (18:33 +0900)]
Merge "[systeminfo] add kPlatformTv, kProfileTv for tv profile [Verification] sysinfo TCT 100% pass 248/248/0/0/0" into tizen_3.0
bg.chun [Wed, 4 May 2016 08:05:59 +0000 (17:05 +0900)]
[systeminfo] add kPlatformTv, kProfileTv for tv profile
[Verification] sysinfo TCT 100% pass 248/248/0/0/0
Change-Id: I3608f46a58d7448a4e57bb106e6dcf29d69b2b7c
Signed-off-by: bg.chun <bg.chun@samsung.com>
jk.pu [Wed, 4 May 2016 06:54:08 +0000 (15:54 +0900)]
[HAM]add unknown at PedometerStepStatus(TWDAPI-103)
Change-Id: I8756f96e1ae503de142e124073b3eaf32ab6a16e
Signed-off-by: jk.pu <jk.pu@samsung.com>
Hyunjin Park [Wed, 4 May 2016 05:34:39 +0000 (14:34 +0900)]
[doc] add tizen.widl description
Change-Id: I9973bc5a655d118f739a841c00a646013bc5ed0f
Hyunjin Park [Tue, 3 May 2016 23:31:31 +0000 (08:31 +0900)]
Merge branch 'tizen_3.0' into tizen
Hyunjin Park [Tue, 3 May 2016 23:30:40 +0000 (08:30 +0900)]
[version] 0.75
Change-Id: Iea3c857ecc14e3943ef6338d310176c8486a75d6
HyunJin Park [Tue, 3 May 2016 23:28:45 +0000 (08:28 +0900)]
Merge "[Messaging] fix for memory leak" into tizen_3.0
taekeun.kang [Tue, 3 May 2016 06:05:28 +0000 (15:05 +0900)]
[HAM] fix implementation for calling GPS listener
Change-Id: I7b7b389e9ee895ab9dcde4a021cef70af9cb8ec8
Signed-off-by: taekeun.kang <taekeun.kang@samsung.com>
Lukasz Bardeli [Mon, 2 May 2016 13:02:40 +0000 (15:02 +0200)]
[Messaging] fix for memory leak
Change-Id: Id05e8dda11d5840bf5470f1711fca96183e27f23
Signed-off-by: Lukasz Bardeli <l.bardeli@samsung.com>
Hyunjin Park [Mon, 2 May 2016 01:57:31 +0000 (10:57 +0900)]
Merge branch 'tizen_3.0' into tizen
Hyunjin Park [Mon, 2 May 2016 01:56:30 +0000 (10:56 +0900)]
[version] 0.74
Change-Id: I54fa7aa4727a3bb1cd8907a8e26a89103c64a9ec
Tomasz Marciniak [Tue, 9 Feb 2016 14:27:02 +0000 (15:27 +0100)]
[Push] Added new functionalites, code uses push-service.h
[Verification] Code compiles, TCT pass rate: 100% (41/41/0/0/0)
Change-Id: Ia5bfdd92c450877aa83fa9e306bf8bbf1733c4c7
Signed-off-by: Tomasz Marciniak <t.marciniak@samsung.com>
Piotr Kosko [Fri, 29 Apr 2016 09:32:53 +0000 (11:32 +0200)]
[NFC][Wearable] NFC disabled for wearable profile as it is in model-config.xml
[Feature]on wearable emulator:
20160421.3, model-config.xml file:
<key name="tizen.org/feature/network.nfc" type="bool">false</key>
<key name="tizen.org/feature/network.nfc.tag" type="bool">false</key>
<key name="tizen.org/feature/network.nfc.p2p" type="bool">false</key>
<key name="tizen.org/feature/network.nfc.card_emulation" type="bool">false</key>
<key name="tizen.org/feature/network.nfc.card_emulation.hce" type="bool">false</key>
<key name="tizen.org/feature/network.nfc.reserved_push" type="bool">false</key>
build configuration should follow above settings to satisfy TCT tests.
[Verification] TCT of capability passrate 100% on wearable.
Change-Id: I8fccc4803a1b3c2edfeed5bc7b2fb058af81b3fd
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
Andrzej Popowski [Thu, 10 Mar 2016 07:18:01 +0000 (08:18 +0100)]
[Contact] - Reset usage count
Change-Id: Icea3f60a102f6210770e40997d5098f72ccd8130
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
HyunJin Park [Fri, 29 Apr 2016 06:04:32 +0000 (15:04 +0900)]
Merge "[Contact] Added method for finding by usageCount" into tizen_3.0
HyunJin Park [Fri, 29 Apr 2016 06:04:22 +0000 (15:04 +0900)]
Merge "[Contact] - Implementing getUsageCount() function" into tizen_3.0
taekeun.kang [Thu, 28 Apr 2016 23:31:56 +0000 (08:31 +0900)]
[IOTCON] apply changed api name and revise options behavior (readonly -> writable)
[version] 0.73
Change-Id: I6994856ae5dd9c88549aa9f320a943d817504faf
Signed-off-by: taekeun.kang <taekeun.kang@samsung.com>
Hyunjin Park [Fri, 29 Apr 2016 05:24:40 +0000 (14:24 +0900)]
Merge branch 'tizen_3.0' into tizen
Hyunjin Park [Fri, 29 Apr 2016 05:16:00 +0000 (14:16 +0900)]
[HAM] add NFC module on mobile emulator and fix build error of emulator
- fix build error of emulator due to picojson
- add NFC module on mobile emulator
Change-Id: I678a886f9c5711f75485e2a75b88c12710c2ae2e
Hyunjin Park [Fri, 29 Apr 2016 03:02:52 +0000 (12:02 +0900)]
Merge branch 'tizen_3.0' into tizen
Hyunjin Park [Fri, 29 Apr 2016 03:02:05 +0000 (12:02 +0900)]
[version] 0.71
Change-Id: I02124814ea27b46ea1c4a3adf50658aa1167f103
HyunJin Park [Fri, 29 Apr 2016 03:00:17 +0000 (12:00 +0900)]
Merge "[sensor] add getHardwareInfo()" into tizen_3.0
Hyunjin Park [Wed, 27 Apr 2016 02:51:27 +0000 (11:51 +0900)]
Merge branch 'tizen_3.0' into tizen
Hyunjin Park [Wed, 27 Apr 2016 02:49:17 +0000 (11:49 +0900)]
[version] 0.70
Change-Id: I7baab6d829af27d78a811889ade0b533434a0974
HyunJin Park [Wed, 27 Apr 2016 02:34:40 +0000 (11:34 +0900)]
Merge "[Feedback] Added privilege checking" into tizen_3.0
HyunJin Park [Wed, 27 Apr 2016 02:31:03 +0000 (11:31 +0900)]
Merge "[Common] Changed way of handling privileges for API versions" into tizen_3.0
jk.pu [Tue, 26 Apr 2016 12:37:59 +0000 (21:37 +0900)]
[HAM] fix some implementation error.
- gps error range return 0 issue.
- sleep monitor timestamp return monotonic time.
- missing location_manager_unset_setting_changed_cb() at stop()
Change-Id: Id36a65a3e4ba78b4d24a8497e586e77e3eef99af
Signed-off-by: jk.pu <jk.pu@samsung.com>
jk.pu [Tue, 26 Apr 2016 02:18:11 +0000 (11:18 +0900)]
Merge branch 'tizen_3.0' into tizen
jk.pu [Tue, 26 Apr 2016 02:12:13 +0000 (11:12 +0900)]
[version] 0.69
Change-Id: I4de75545c03170988534e968e11299fc4afac8d8
Signed-off-by: jk.pu <jk.pu@samsung.com>
JeongKyun Pu [Tue, 26 Apr 2016 01:39:26 +0000 (10:39 +0900)]
Merge "[HAM] move the function for gps setting change after location_manager_create()" into tizen_3.0
JeongKyun Pu [Tue, 26 Apr 2016 01:26:42 +0000 (10:26 +0900)]
Merge "[Sensor] - Fixing bug when comparing events" into tizen_3.0
taekeun.kang [Tue, 26 Apr 2016 00:00:01 +0000 (09:00 +0900)]
[HAM] move the function for gps setting change after location_manager_create()
Change-Id: I46507b553887a094cc02aaf1a411cc61f72e5765
Signed-off-by: taekeun.kang <taekeun.kang@samsung.com>
Andrzej Popowski [Mon, 25 Apr 2016 11:29:02 +0000 (13:29 +0200)]
[Sensor] - Fixing bug when comparing events
Change-Id: Ife8b40eb4bab51f7e58b8d2dfb2e59761c482af1
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
Lukasz Bardeli [Mon, 25 Apr 2016 12:58:55 +0000 (14:58 +0200)]
[Feedback] Added privilege checking
Change-Id: I941fb2d530473819b18e97d0c7ae1cdbd52189b2
Signed-off-by: Lukasz Bardeli <l.bardeli@samsung.com>
Piotr Kosko [Thu, 21 Apr 2016 07:30:54 +0000 (09:30 +0200)]
[Common] Changed way of handling privileges for API versions
[Feature] privilege_manager_get_mapped_privilege_list function is used to get
proper mapping of privileges for application version and current platform.
Such solution replaces hardcoded mapping for 3.0 in utils_api.js file.
[Verification] auto TCT's passrate didn't change.
Change-Id: If39de763d92a4489e56a824bd035ee5db1548df9
Signed-off-by: Piotr Kosko <p.kosko@samsung.com>
JeongKyun Pu [Mon, 25 Apr 2016 11:54:19 +0000 (20:54 +0900)]
Merge "[HAM] change implementation for GPS interval" into tizen_3.0
taekeun.kang [Mon, 25 Apr 2016 11:41:58 +0000 (20:41 +0900)]
[HAM] change implementation for GPS interval
Change-Id: I438208215fdf8c4826bd617626e555f5739f25ee
Signed-off-by: taekeun.kang <taekeun.kang@samsung.com>
JeongKyun Pu [Mon, 25 Apr 2016 11:47:01 +0000 (20:47 +0900)]
Merge "[Feedback] Implement new module plugin" into tizen_3.0
Jakub Skowron [Mon, 25 Apr 2016 11:36:43 +0000 (13:36 +0200)]
[Feedback] Implement new module plugin
Note:
It wasn't tested sufficiently. 'feedback_is_supported_pattern' Native function
returns 'false' status for all system pre-defined patterns and types.
Tested on:
[Version]
Model=Tizen3/Mobile;
Build=tizen-mobile_20160121.1;
Change-Id: I405eefa24892f6bdfbebbb55af9c3ec1a5f36af0
Signed-off-by: Piotr Czaja <p.czaja@samsung.com>
Signed-off-by: Jakub Skowron <j.skowron@samsung.com>
Tomasz Marciniak [Mon, 25 Apr 2016 08:54:14 +0000 (10:54 +0200)]
[HAM] Changed LOGGER() into LoggerE.
[Verification] Code compiles.
Change-Id: Idc39f6a93b377443999cd52d5387fe41a37ac79f
Signed-off-by: Tomasz Marciniak <t.marciniak@samsung.com>
Tomasz Marciniak [Mon, 25 Apr 2016 08:04:52 +0000 (10:04 +0200)]
[HAM] Added error callback to start() function.
[Verification] Code compiles. Tested on emulator.
When location is off error callback is called.
Change-Id: Icd7fc9fe39fe45feb98eec48ec1c7c0c40b10d2a
Signed-off-by: Tomasz Marciniak <t.marciniak@samsung.com>
Andrzej Popowski [Thu, 21 Apr 2016 10:12:34 +0000 (12:12 +0200)]
[HAM] - timestamp in pedometer limited to seconds
Change-Id: I19e036ff4ddd4f8da8a3aa7d40641195aa0c7774
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
jk.pu [Thu, 21 Apr 2016 06:31:05 +0000 (15:31 +0900)]
Merge branch 'tizen_3.0' into tizen
jk.pu [Thu, 21 Apr 2016 06:24:00 +0000 (15:24 +0900)]
[version] 0.68
Change-Id: Ic6bb89437c6ada2f80c4f8349cf0926ae90ab338
Signed-off-by: jk.pu <jk.pu@samsung.com>
JeongKyun Pu [Thu, 21 Apr 2016 02:34:06 +0000 (11:34 +0900)]
Merge "[IOTCON] update implementation for applying the change of native APIs" into tizen_3.0
Hyunjin Park [Thu, 21 Apr 2016 02:23:14 +0000 (11:23 +0900)]
Merge branch 'tizen_3.0' into tizen
Hyunjin Park [Thu, 21 Apr 2016 02:22:25 +0000 (11:22 +0900)]
[version] 0.67
Change-Id: Ida77cc5696eed7f1c4f683d396671f2d4171682b
taekeun.kang [Wed, 20 Apr 2016 12:23:53 +0000 (21:23 +0900)]
[IOTCON] update implementation for applying the change of native APIs
Change-Id: I98b82bb8f4504814948d447fb6bc83761d6d960f
Signed-off-by: taekeun.kang <taekeun.kang@samsung.com>
bg.chun [Fri, 15 Apr 2016 07:42:34 +0000 (16:42 +0900)]
[sensor] add getHardwareInfo()
Change-Id: Ibfc8662cf26f5077133ddd3d63cc9745d25bc00c
Signed-off-by: bg.chun <bg.chun@samsung.com>
Lukasz Bardeli [Wed, 20 Apr 2016 11:28:19 +0000 (13:28 +0200)]
[Common] apply new privileges
Change-Id: I185dcb124f6b32835b6619e3ae972eb21a9808c3
Signed-off-by: Lukasz Bardeli <l.bardeli@samsung.com>
Hyunjin Park [Wed, 20 Apr 2016 10:13:48 +0000 (19:13 +0900)]
Merge branch 'tizen_3.0' into tizen
Hyunjin Park [Wed, 20 Apr 2016 10:09:34 +0000 (19:09 +0900)]
add pkgmgr-installer due to dependency
Change-Id: Ibcbff92012572a9d31e0b05fb49e72c28945d082
Hyunjin Park [Wed, 20 Apr 2016 04:20:05 +0000 (13:20 +0900)]
Merge branch 'tizen_3.0' into tizen
Hyunjin Park [Wed, 20 Apr 2016 04:16:17 +0000 (13:16 +0900)]
[version] 0.65
Change-Id: I5d4b0fbadeea59ad74af5807dd850ef9bee76630
Lukasz Bardeli [Tue, 19 Apr 2016 11:28:13 +0000 (13:28 +0200)]
[Common] Change mapping bluetooth privileges
Change-Id: Ida07768a636f96a292932aad2e556192f0885756
Signed-off-by: Lukasz Bardeli <l.bardeli@samsung.com>
Hyunjin Park [Mon, 18 Apr 2016 06:14:24 +0000 (15:14 +0900)]
Merge branch 'tizen_3.0' into tizen
Hyunjin Park [Mon, 18 Apr 2016 06:13:14 +0000 (15:13 +0900)]
[version] 0.64
Change-Id: I925600e526eae34409d84d20cf2e28a94f4b1659
HyunJin Park [Mon, 18 Apr 2016 06:10:34 +0000 (15:10 +0900)]
Merge "[Preference] - getAll function implemented" into tizen_3.0
HyunJin Park [Mon, 18 Apr 2016 06:03:19 +0000 (15:03 +0900)]
Merge "[WidgetService] Changed Widget into WidgetService." into tizen_3.0
HyunJin Park [Mon, 18 Apr 2016 05:40:39 +0000 (14:40 +0900)]
Merge "[Widget] Added add/removeChangeListener implementation." into tizen_3.0
HyunJin Park [Mon, 18 Apr 2016 05:36:28 +0000 (14:36 +0900)]
Merge "[Widget] Added send/getContent implementation." into tizen_3.0
HyunJin Park [Mon, 18 Apr 2016 05:33:08 +0000 (14:33 +0900)]
Merge "[Widget] Added ChangeUpdatePeriod() implementation." into tizen_3.0
HyunJin Park [Mon, 18 Apr 2016 05:29:39 +0000 (14:29 +0900)]
Merge "[Widget] Added getVariant/getVariants implementation." into tizen_3.0
HyunJin Park [Mon, 18 Apr 2016 05:26:07 +0000 (14:26 +0900)]
Merge "[Widget] Added getName() getInstances() implementation." into tizen_3.0
HyunJin Park [Mon, 18 Apr 2016 05:22:49 +0000 (14:22 +0900)]
Merge "[Widget] Added stubs for other methods in C++ layer." into tizen_3.0
HyunJin Park [Mon, 18 Apr 2016 04:51:17 +0000 (13:51 +0900)]
Merge "[Widget] Added JS implementation for Widget/WidgetInstance." into tizen_3.0
HyunJin Park [Mon, 18 Apr 2016 04:41:19 +0000 (13:41 +0900)]
Merge "[Widget] Added getSize() and getPrimaryWidgetId() implementation." into tizen_3.0
HyunJin Park [Mon, 18 Apr 2016 00:44:33 +0000 (09:44 +0900)]
Merge "[Widget] Added getWidget/getWidgets() implementation." into tizen_3.0
Andrzej Popowski [Mon, 4 Apr 2016 13:11:23 +0000 (15:11 +0200)]
[Preference] - getAll function implemented
[Features] Added fix for registered listeners.
[Verification] Code compiles.
Change-Id: I195900bb5495b609f47536d7069f5abdafdd1bd1
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>