admin [Wed, 20 May 2020 15:51:52 +0000 (15:51 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
neostom432 [Wed, 20 May 2020 01:59:57 +0000 (10:59 +0900)]
[NUI] Change suggested minimun size in Layout. (#1610)
When user set maximum size or minimum size instaed of size and specification,
it means that user want to use natural size of component and makes it bigger than minimum and smaller than maximum.
Currently, when using text, it lays whole text on one line and returns its size as natural size even if multiline is enabled.
So, we need to calculate HeightForWidth with MaximunWidth to know candidate height of multiline text.
Use GetHeightForWidth / GetWidthForHeight size as suggested minimun size.
admin [Tue, 19 May 2020 15:51:50 +0000 (15:51 +0000)]
Release 8.0.0.15228
admin [Tue, 19 May 2020 15:51:49 +0000 (15:51 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
chleun-moon [Tue, 19 May 2020 11:30:10 +0000 (20:30 +0900)]
[Tizen.Network.Connection] Make callbacks to member variable (#1608)
dongsug-song [Tue, 19 May 2020 10:54:16 +0000 (19:54 +0900)]
[NUI] Add GetWindowId() (#1547)
WonYoung Choi [Tue, 19 May 2020 03:31:37 +0000 (12:31 +0900)]
Remove unused internal modules (#1601)
admin [Mon, 18 May 2020 15:51:57 +0000 (15:51 +0000)]
Release 8.0.0.15225
admin [Mon, 18 May 2020 15:51:57 +0000 (15:51 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
huiyueun [Mon, 18 May 2020 12:19:30 +0000 (21:19 +0900)]
[NUI.Wearable] Modify LanguageChanged bug (#1607)
Get language from device.
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
admin [Wed, 13 May 2020 15:52:03 +0000 (15:52 +0000)]
Release 8.0.0.15224
admin [Wed, 13 May 2020 15:52:03 +0000 (15:52 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Tae-Young Chung [Wed, 13 May 2020 07:45:12 +0000 (16:45 +0900)]
[MediaVision] Fix wrong key string value (#1602)
* [MediaVision] Fix wrong key string value
Wrong key string value of MV_INFERENCE_TARGET_DEVICE.
In NativeACR, MV_INFERENCE_TARGET_DEVICE_TYPE is added.
This patch fix it.
Signed-off-by: Tae-Young Chung <ty83.chung@samsung.com>
* [MediaVision] Fix _keyTargetDevice to _keyTargetDeviceType
Signed-off-by: Tae-Young Chung <ty83.chung@samsung.com>
JoogabYun [Wed, 13 May 2020 06:15:05 +0000 (15:15 +0900)]
[NUI] Add Title in Wearable component (#1600)
- The Title inherits TextLabel.
The Title can has a fadeOut effects on the left and right side.
admin [Tue, 12 May 2020 15:52:02 +0000 (15:52 +0000)]
Release 8.0.0.15222
admin [Tue, 12 May 2020 15:52:02 +0000 (15:52 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Xianbing Teng [Tue, 12 May 2020 05:41:29 +0000 (13:41 +0800)]
[NUI] Add layout xaml sample and update samples (#1593)
Xianbing Teng [Tue, 12 May 2020 04:30:04 +0000 (12:30 +0800)]
[NUI] Fix the issue that size receives 2 parameters from xaml (#1594)
YeongJong Lee [Tue, 12 May 2020 04:28:12 +0000 (13:28 +0900)]
[NUI] remove input method dependency from View.ControlState (#1585)
`ConstrolState` can be changed by API or Input(`Tizen.NUI.Key` and
`Tizen.NUI.Touch`). it means `ConstrolState` is not always related to
Input method. some Controls need it to use state changed effect. however,
not all controls require that. if we need some property to change state,
we can add it to Style Extension classes.
admin [Mon, 11 May 2020 15:51:59 +0000 (15:51 +0000)]
Release 8.0.0.15219
admin [Mon, 11 May 2020 15:51:59 +0000 (15:51 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
YeongJong Lee [Mon, 11 May 2020 09:48:01 +0000 (18:48 +0900)]
[NUI] remove redundant private properties for Tizen.NUI.Key (#1586)
This patch will reduce method call.
e.g.
```
Tizen.NUI.Key.set_keyString()
Tizen.NUI.Key.set_KeyString()
```
==>
```
Tizen.NUI.Key.set_keyString()
```
YeongJong Lee [Mon, 11 May 2020 09:33:20 +0000 (18:33 +0900)]
[NUI] remove unnecessary code to assign children layout (#1554)
layout is set by `LayoutGroup.AddChildToLayoutGroup()`
1.When layout is set before child added
```
Tizen.NUI.LayoutGroup.AddChildToLayoutGroup() Line 164
Tizen.NUI.LayoutGroup.OnChildAddedToOnwer() Line 265
Tizen.NUI.BaseComponent.View.Add() Line 152
```
2.When layout is set after child added
```
Tizen.NUI.LayoutGroup.AddChildToLayoutGroup() Line 164
Tizen.NUI.LayoutGroup.OnAttachedToOwner() Line 466
Tizen.NUI.LayoutItem.AttachToOnwner() Line 168
Tizen.NUI.BaseComponentsView.SetLayout() Line 110
Tizen.NUI.BaseComponentsView.set_Layout() Line 2214
```
This means children's Layout is alreay assinged on `LayoutController.Process()`.
So, we don't need to assign layout again.
prasadam-p [Mon, 11 May 2020 07:01:08 +0000 (12:31 +0530)]
Returned the code on exception (#1599)
Tae-Young Chung [Mon, 11 May 2020 05:37:55 +0000 (14:37 +0900)]
[MediaVision] Add and deprecate enumerations (#1580)
* [MediaVision] Add new enumerations
Signed-off-by: Tae-Young Chung <ty83.chung@samsung.com>
* [MediaVision] Use Obsolete tag
Signed-off-by: Tae-Young Chung <ty83.chung@samsung.com>
* [MediaVision] add _keyTargetDevice
To support compatibility with Tizen 5.5,
Native API suppose New definition "MV_INFERENCE_TARGET_DEVICE".
This commit apply the changes.
Signed-off-by: Tae-Young Chung <ty83.chung@samsung.com>
* [MediaVision] Modify clearly the description of the obsolete enum and attribute
Signed-off-by: Tae-Young Chung <ty83.chung@samsung.com>
MuHong Byun [Mon, 11 May 2020 02:15:04 +0000 (11:15 +0900)]
[Sensor] Initialize data for batch type sensor (#1596)
Signed-off-by: MuHong Byun <mh.byun@samsung.com>
admin [Fri, 8 May 2020 15:51:54 +0000 (15:51 +0000)]
Release 8.0.0.15214
admin [Fri, 8 May 2020 15:51:54 +0000 (15:51 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
tscholb [Fri, 8 May 2020 08:24:31 +0000 (17:24 +0900)]
[NUI] Fix some API to use GetManagedBaseHandleFromNativePtr (#1592)
- Fix GetWindow() using GetManagedBaseHandleFromNativePtr
admin [Thu, 7 May 2020 15:55:36 +0000 (15:55 +0000)]
Release 8.0.0.15213
admin [Thu, 7 May 2020 15:55:36 +0000 (15:55 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Kangho Hur [Thu, 7 May 2020 01:30:57 +0000 (10:30 +0900)]
[ElmSharp] Adds PeekInstance to PreloadedWindow (#1588)
admin [Wed, 6 May 2020 15:51:57 +0000 (15:51 +0000)]
Release 8.0.0.15212
admin [Wed, 6 May 2020 15:51:57 +0000 (15:51 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Jiyun Yang [Wed, 6 May 2020 11:52:37 +0000 (20:52 +0900)]
[NUI] Make instanceSet to hold notification windows and fix Window.TouchEvent bug (#1581)
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
admin [Thu, 30 Apr 2020 15:51:56 +0000 (15:51 +0000)]
Release 8.0.0.15211
admin [Thu, 30 Apr 2020 15:51:56 +0000 (15:51 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
pvschakradhar [Thu, 30 Apr 2020 04:02:58 +0000 (09:32 +0530)]
changed dataType of time for compatibility with native layer (#1583)
changed dataType of time for compatibility with native layer
admin [Wed, 29 Apr 2020 15:55:44 +0000 (15:55 +0000)]
Release 8.0.0.15210
admin [Wed, 29 Apr 2020 15:55:44 +0000 (15:55 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Jiyun Yang [Wed, 29 Apr 2020 07:28:46 +0000 (16:28 +0900)]
[NUI] Introduce Notification (#1570)
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Seoyeon2Kim [Wed, 29 Apr 2020 04:07:46 +0000 (13:07 +0900)]
[NUI] Update CircularPagination opacity (#1573)
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
admin [Wed, 29 Apr 2020 03:06:49 +0000 (03:06 +0000)]
Release 8.0.0.15208
admin [Wed, 29 Apr 2020 03:06:49 +0000 (03:06 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Hyungju Lee [Wed, 29 Apr 2020 02:59:14 +0000 (11:59 +0900)]
[Build] Fix `PlatformFileList.txt` to reflect filename chagne (#1579)
Change-Id: I399054d5f80d1d8c00afc79fffa08d833fba3b93
Jiyun Yang [Wed, 29 Apr 2020 02:47:42 +0000 (11:47 +0900)]
[NUI] Apply CornerRadius to ImageView (#1571)
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
admin [Wed, 29 Apr 2020 01:52:36 +0000 (01:52 +0000)]
Release 8.0.0.15206
admin [Wed, 29 Apr 2020 01:52:36 +0000 (01:52 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Hyungju Lee [Wed, 29 Apr 2020 01:43:35 +0000 (10:43 +0900)]
[Build] Rename preload files to support ordering (#1574)
Change-Id: I962148df0e31ec4a9d9061964d27bc74dd03d8c3
admin [Mon, 27 Apr 2020 07:39:09 +0000 (07:39 +0000)]
Release 8.0.0.15205
admin [Mon, 27 Apr 2020 07:39:09 +0000 (07:39 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
JongHeonChoi [Mon, 27 Apr 2020 07:24:10 +0000 (16:24 +0900)]
[Build] Add the {Name}.preload file required for preloading in the launcher (#1489)
* [Build] Add the ModuleName.preload file required for preloading in the launcher
* Update .preload file format
younghajung [Mon, 27 Apr 2020 04:24:38 +0000 (13:24 +0900)]
[WebView] Add new WebView API, Tizen.WebView.EvalAsync (#1560)
Signed-off-by: yh106.jung <yh106.jung@samsung.com>
admin [Fri, 24 Apr 2020 07:39:48 +0000 (07:39 +0000)]
Release 8.0.0.15203
admin [Fri, 24 Apr 2020 07:39:48 +0000 (07:39 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
pvschakradhar [Fri, 24 Apr 2020 07:35:11 +0000 (13:05 +0530)]
Addition of Tizen.System.Powerusage.dll (#1566)
Addition of Tizen.System.Powerusage.dll
Jiyun Yang [Fri, 24 Apr 2020 07:34:04 +0000 (16:34 +0900)]
[NUI] Make some API to public and fill missing comments. (#1565)
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Seoyeon2Kim [Fri, 24 Apr 2020 06:55:23 +0000 (15:55 +0900)]
[NUI] Add InputMethodContext public APIs (#1555)
- Added SetInputPanelLanguage and GetInputPanelLanguage.
- Opened some InputMethodContext APIs as public
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
pvschakradhar [Fri, 24 Apr 2020 06:01:40 +0000 (11:31 +0530)]
[System.PowerUsage] Introduce Tizen.System.PowerUsage (#1537)
[System.PowerUsage] Introduce Tizen.System.PowerUsage
Jiyun Yang [Fri, 24 Apr 2020 03:16:39 +0000 (12:16 +0900)]
[NUI] Fix ControlState issues. (#1563)
* Fix ControlState propagation to false.
* Fix typo in class name : ControlStateChagedInfo -> ControlStateChangedInfo
* Enhance ControlStateChangeInfo to have InputMethod property.
* Remove combined ControlState handling in Selector: It needs to be well-designed first.
* Fix test/Tizen.NUI.Samples compile errors.
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
admin [Thu, 23 Apr 2020 15:51:52 +0000 (15:51 +0000)]
Release 8.0.0.15198
admin [Thu, 23 Apr 2020 15:51:52 +0000 (15:51 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Jiyun Yang [Thu, 23 Apr 2020 09:12:28 +0000 (18:12 +0900)]
[NUI] Add Shadow BlurRadius and lighten View size (#1552)
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Seoyeon2Kim [Thu, 23 Apr 2020 02:27:18 +0000 (11:27 +0900)]
[NUI] Update Pagination indicator opacity (#1562)
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
- According to GUI guide, Pagination normal indicator opacity should be 50%.
- Updated the opacity.
Seoyeon2Kim [Thu, 23 Apr 2020 02:25:53 +0000 (11:25 +0900)]
Add a prototype of CircularPagination (#1527)
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
Xianbing Teng [Thu, 23 Apr 2020 02:14:19 +0000 (10:14 +0800)]
[NUI.Components] Fix focus always true issue (#1516)
younghajung [Thu, 23 Apr 2020 00:43:17 +0000 (09:43 +0900)]
[Tizen.WebView] Deprecate an enumeration value for text file based cookie storage (#1551)
Chromium supports only SQLite based persistent cookie storage.
This patch deprecates an enumeration for text file based cookie storage,
CookiePersistentStorage.Text.
Signed-off-by: yh106.jung <yh106.jung@samsung.com>
admin [Wed, 22 Apr 2020 15:52:00 +0000 (15:52 +0000)]
Release 8.0.0.15193
admin [Wed, 22 Apr 2020 15:52:00 +0000 (15:52 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
neostom432 [Wed, 22 Apr 2020 07:26:59 +0000 (16:26 +0900)]
[NUI] Change default layout to AbsoluteLayout (#1543)
We used LayoutItem and LayoutGroup as default layout but many developer wants to use AbsoluteLayout as default.
So changed default layout to AbsoluteLayout.
hsgwon [Wed, 22 Apr 2020 07:15:35 +0000 (16:15 +0900)]
[Camera] Add new preview format (#1520)
* [Camera] Add new preview format
dongsug-song [Wed, 22 Apr 2020 04:14:04 +0000 (13:14 +0900)]
[NUI] Fix PropertyNotification.GetTarget() error (#1559)
neostom432 [Wed, 22 Apr 2020 04:02:14 +0000 (13:02 +0900)]
[NUI] Consume Touch/Hover when popup is posted (#1549)
Popup should be always on top of layer when popup is posted.
And should consume all touch,hover because it is on top.
Set Touch/Hover consume to true.
MuHong Byun [Wed, 22 Apr 2020 02:39:19 +0000 (11:39 +0900)]
[Sensor] Add new batched type sensor (#1522)
* HeartRateMonitorBatch, HeartRateMonitorLEDGreenBatch
Signed-off-by: MuHong Byun <mh.byun@samsung.com>
dongsug-song [Wed, 22 Apr 2020 01:28:06 +0000 (10:28 +0900)]
[NUI] Fix TCT fail issues by adding null check (#1558)
admin [Fri, 17 Apr 2020 15:51:59 +0000 (15:51 +0000)]
Release 8.0.0.15187
admin [Fri, 17 Apr 2020 15:51:59 +0000 (15:51 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
neostom432 [Fri, 17 Apr 2020 05:10:08 +0000 (14:10 +0900)]
[NUI] Measure opposite dimension correctly in GridLayout (#1548)
Prevously, opposite dimension of choosen grid orientation was not measured correctly.
It just followed parent's size even if measure mode is not "Exactly".
Now, following measure mode.
huiyueun [Fri, 17 Apr 2020 00:51:15 +0000 (09:51 +0900)]
[NUI] Add dotnet pre-initiailze (#1521)
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
huiyueun [Fri, 17 Apr 2020 00:47:43 +0000 (09:47 +0900)]
[NUI] Modify Friend Assembly / Add Tizen.NUI.Components to assembly (#1529)
* [NUI] Modify Friend Assembly / Add Tizen.NUI.Components to assembly
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
* Change name
admin [Thu, 16 Apr 2020 15:51:58 +0000 (15:51 +0000)]
Release 8.0.0.15184
admin [Thu, 16 Apr 2020 15:51:58 +0000 (15:51 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
dongsug-song [Thu, 16 Apr 2020 11:57:31 +0000 (20:57 +0900)]
[NUI] Add Color in ViewStyle (#1545)
neostom432 [Thu, 16 Apr 2020 11:53:55 +0000 (20:53 +0900)]
[NUI] Add hidden class for internal purpose (#1546)
Some class need to be changed for internal purpose.
Add Never tag to hide API.
hjhun [Thu, 16 Apr 2020 07:19:50 +0000 (16:19 +0900)]
[Applications.Common] Remove unnecessary lock (#1544)
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
admin [Tue, 14 Apr 2020 15:52:04 +0000 (15:52 +0000)]
Release 8.0.0.15181
admin [Tue, 14 Apr 2020 15:52:04 +0000 (15:52 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
neostom432 [Tue, 14 Apr 2020 06:42:06 +0000 (15:42 +0900)]
[NUI] Remove Child in Layout View using RemoveChild func (#1542)
Previously, Remove child manually so missing few steps.
Now, use RemoveChild func for removing.
jeremy-jang [Tue, 14 Apr 2020 05:34:45 +0000 (14:34 +0900)]
[Packagemanager] Do not catch the exception thrown by event handler of app (#1540)
* [Packagemanager] Fix exception handling when invoking app's event handlers
Invoke the registered event handlers one by one in try-catch block to
invoking all event handlers whether exception occurred at one of event
handlers.
Change-Id: Id2f6d9815ddbb43867a11cab9423384c6614b848
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
* [Packagemanager] Fix invoking event handlers as thread-safely
Change-Id: I21e2ff25726d6a4a24453e351dd64ecd47bdece4
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
* [Packagemanager] Do not catch the exception thrown by event handler of app
The applications should be responsible its exception, they should
determine handle or not the exception.
Change-Id: Ifffb4a14aa920eae905f6ff76f3a887d06e579b8
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
dongsug-song [Tue, 14 Apr 2020 04:46:12 +0000 (13:46 +0900)]
[NUI] Fix NUI.Components TCT fail (#1541)
dongsug-song [Tue, 14 Apr 2020 01:40:41 +0000 (10:40 +0900)]
[NUI] Fix VideoView sample (#1518)
admin [Mon, 13 Apr 2020 15:55:45 +0000 (15:55 +0000)]
Release 8.0.0.15177
admin [Mon, 13 Apr 2020 15:55:45 +0000 (15:55 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
neostom432 [Mon, 13 Apr 2020 10:00:13 +0000 (19:00 +0900)]
[NUI] Interrupt pan when popup is popped (#1539)
Currently, panning is working even if there is popup over component.
As workaround, add PanGestureDetector to Popup to prevent panning.
Additionally, add View to ScrollableBase which is to interrupt touching during scrolling.
arosis78 [Mon, 13 Apr 2020 01:03:39 +0000 (10:03 +0900)]
[ElmSharp] Add internal Window auxiliary hint APIs (#1535)
admin [Fri, 10 Apr 2020 15:55:40 +0000 (15:55 +0000)]
Release 8.0.0.15175
admin [Fri, 10 Apr 2020 15:55:40 +0000 (15:55 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
JinWang An [Fri, 10 Apr 2020 08:22:15 +0000 (17:22 +0900)]
Fix unit test for Tizen.System.SystemSettings (#1536)
Signed-off-by: jinwang.an <jinwang.an@samsung.com>
Jiyun Yang [Fri, 10 Apr 2020 07:07:22 +0000 (16:07 +0900)]
[NUI] Update wearable button style by UX guide (#1533)
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
JoogabYun [Fri, 10 Apr 2020 05:03:44 +0000 (14:03 +0900)]
[NUI] Add NativeImageSource (#1532)