Seoyeon Kim [Thu, 13 Jul 2023 12:56:34 +0000 (21:56 +0900)]
[NUI] Update Font size scale again based on the updated guide
- The font size scales are changed according to the latest GUI guide.
- Five stages of Font size scale :
: 87% -> 100% -> 113% -> 126% -> 140 %
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
jmm [Wed, 12 Jul 2023 09:26:51 +0000 (18:26 +0900)]
[NUI] Switch camera includes current camera's Unparent()
Artur Świgoń [Tue, 11 Jul 2023 13:51:00 +0000 (15:51 +0200)]
[NUI][AT-SPI] Set focus in OnAccessibilityActivated()
This aligns the behaviour of Components (derived from CustomView), and other controls, with that
of BaseComponents (and other controls with ViewAccessibilityMode.Default, backed by the C++
accessibility implementation), which set the keyboard focus on activation. Please note that in the
latter case, the implementation of View.OnAccessibilityActivated is unused, and the unrelated method
(albeit bearing the same name) Toolkit::Control::OnAccessibilityActivated is called:
bool Control::OnAccessibilityActivated()
{
if(Toolkit::KeyboardFocusManager::Get().SetCurrentFocusActor(Self()))
{
return OnKeyboardEnter();
}
return false;
}
So, in other words, this patch makes C# controls behave in a similar manner, i.e. set the keyboard
focus on accessibility activation.
Eunki, Hong [Wed, 5 Jul 2023 07:26:59 +0000 (16:26 +0900)]
[NUI.Scene3D] Make MotionData use Native API, instead of C#
Since we allow to use MotionData feature in dali-side, let we use it.
Now we can load motion data and blendshape animation from file asyncronously.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
kilig [Fri, 14 Jul 2023 04:46:09 +0000 (13:46 +0900)]
[Tizen.Applications] Fix static analysis issues (#5389)
Signed-off-by: Inkyun Kil <inkyun.kil@samsung.com>
Haesu Gwon [Tue, 11 Jul 2023 06:28:52 +0000 (15:28 +0900)]
[MediaPlayer] Add new API to set video codec type (#5359)
* [MediaPlayer] Add new API to set video codec type
huiyu [Tue, 11 Jul 2023 05:19:46 +0000 (14:19 +0900)]
Version update - 22234
Signed-off-by: huiyu <huiyu.eun@samsung.com>
Jaehyun Cho [Mon, 10 Jul 2023 07:53:15 +0000 (16:53 +0900)]
[NUI] Fix not to propagate gesture from scrim
Scrim should block all touch and gesture events.
Therefore, gesture is also not propagated from scrim.
joogab.yun [Mon, 10 Jul 2023 10:50:03 +0000 (19:50 +0900)]
[NUI] Register OrientationChanged for BorderWindow.
Because if the window is rotated, we need to resize the window by recalculating the border area.
joogab.yun [Mon, 10 Jul 2023 05:45:56 +0000 (14:45 +0900)]
[NUI] Binding IsFloatingModeEnabled()
refer :
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-adaptor/+/295493/
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-csharp-binder/+/295494/
sunghyun kim [Mon, 19 Jun 2023 01:39:40 +0000 (10:39 +0900)]
[NUI] Delete the used window in widget
Delete the used window so that the window can be deleted normally when deleting the widget.
this is for memory leak issue.
Seoyeon Kim [Tue, 4 Jul 2023 09:06:39 +0000 (18:06 +0900)]
[NUI] Update FontSizeScale values
- Except for TV and wearable profiles, FontSizeScale values are updated.
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
Bowon Ryu [Wed, 5 Jul 2023 06:22:26 +0000 (15:22 +0900)]
[NUI] version up(22231)
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
joogab.yun [Tue, 4 Jul 2023 07:06:47 +0000 (16:06 +0900)]
[NUI] Add InterceptWheelEvent
The Wheel event calls the WheelEvent callback by going back from the last child actor to the parent via hitTest.
InterceptWheelEvent checks the wheel event in the parent first.
Returning false from interceptWheelEvent allows child actors to receive WheelEvents.
If it returns true, the actor will receive a WheelEvent.
for example
View parent = new View();
View child = new View();
parent.Add(child);
child.WheelEvent += childFunctor;
parent.WheelEvent += parentFunctor;
The callbacks are called in the order childFunctor -> parentFunctor.
If you connect InterceptWheelEvent to parentActor.
parent.InterceptWheelEvent += interceptFunctor;
When interceptFunctor returns false, it is called in the same order childFunctor -> parentFunctor.
If intereptFunctor returns true, it means that the WheelEvent was intercepted.
So the child actor will not be able to receive wheel events.
Only the parentFunctor is called.
refer :
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-core/+/295232/
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-csharp-binder/+/295233/
Eunki, Hong [Tue, 4 Jul 2023 04:13:37 +0000 (13:13 +0900)]
[NUI] Partial update feature enable/disable for window
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
seungho baek [Thu, 29 Jun 2023 05:11:25 +0000 (14:11 +0900)]
[NUI] Add ModelRoot Property in Model class
- Add ModelRoot Property to retrieve root ModelNode of the Model object.
- Change parameter name of AddModelNode and RemoveModelNode to modelNode
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
Eunki, Hong [Fri, 23 Jun 2023 03:56:27 +0000 (12:56 +0900)]
[NUI] Write comments for Matrix and Matrix3
Write some comments for Matrix / Matrix3 class
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Jiyun Yang [Fri, 30 Jun 2023 05:42:44 +0000 (14:42 +0900)]
[NUI] Disable ThemeManager preload
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
joogab.yun [Fri, 23 Jun 2023 08:10:28 +0000 (17:10 +0900)]
[NUI] Add LazyFeedHover api for HoverEvent
This api feeds a hover event into the window.
refer :
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-adaptor/+/294676/
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-csharp-binder/+/294689/
seungho baek [Mon, 12 Jun 2023 04:43:51 +0000 (13:43 +0900)]
[NUI] Add Directional Light
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
Eunki, Hong [Mon, 26 Jun 2023 05:14:10 +0000 (14:14 +0900)]
[NUI] Exception if someone change disposed ImageView's property
Since we don't check validation of ImageView itself during change
ImageView properties, it will not throw any exceptions.
and it will be crashend when we ProcessOnceEvent invoked.
Normal View property directly access to DALi side. But ImageView
property access to DALi side lazy.
Now this throw make app developer easy to find error codes.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Fri, 23 Jun 2023 02:11:31 +0000 (11:11 +0900)]
[NUI] Remove useless log + Add todo mark about it
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Wonsik Jung [Thu, 22 Jun 2023 08:16:35 +0000 (17:16 +0900)]
[NUI] Fix Application argv issue
Fix Application Argv issue in UI Thread.
The input param is missed in this case.
This PR is to fix it.
Eunki, Hong [Wed, 21 Jun 2023 03:36:02 +0000 (12:36 +0900)]
[NUI] Add some API for KeyFrames
1. `GetKeyFrameCount()` to know how many keyframes are added.
2. `GetKeyFrame()` to know the information of specific index.
3. `SetKeyFrameValue()` to change the value for specific index.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Thu, 22 Jun 2023 05:40:56 +0000 (14:40 +0900)]
[NUI] Clear old resources cached data
After overhead reducetion patch #5280 merged, Some side effect occured.
Previously we always ask some properties to dali side visual.
But now we return cached value in NUI.
Since URL property clear-up all properties, to fit previous logic,
let we also clean-up cached properties. (Actually, mark only for this case)
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Daekwang Ryu [Fri, 24 Mar 2023 06:02:52 +0000 (15:02 +0900)]
[NUI] Add a new WindowLayout Sample
huayong.xu [Tue, 20 Jun 2023 01:14:48 +0000 (09:14 +0800)]
[NUI] Fix some svace issues.
Eunki Hong [Mon, 15 May 2023 14:23:28 +0000 (23:23 +0900)]
[NUI] Make internal API for calculate screen position and extents.
Current screen extents API calculated by 'Current' properties.
That mean, the result of calculation late 1 render-frame.
So, we cannot use it during Relayout events.
Now, make internal API so we can get screen position/extents
calculated by event-side properties.
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Eunki Hong [Mon, 19 Jun 2023 15:51:02 +0000 (00:51 +0900)]
[NUI] Make subclass of ImageView can use ResourceUrl normally.
If we skip to set ImageVisualType, or set ImageVisualType as Image,
we will try to find best visual by it's file format codes.
But previously, we fix the type of visual.
So, instead of some special case like URLs, just make we use Image type.
And also, make _resourceUrl latest value if we success to get url from visual.
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
dongsug.song [Fri, 16 Jun 2023 13:15:48 +0000 (22:15 +0900)]
[NUI] Skip when the View.BackgroundImage is set with the same value as privious one
huayong.xu [Thu, 15 Jun 2023 11:09:11 +0000 (19:09 +0800)]
[NUI] Add manual test for webview.
dongsug.song [Fri, 16 Jun 2023 13:00:06 +0000 (22:00 +0900)]
[NUI] Add Window validation check
Eunki, Hong [Fri, 16 Jun 2023 00:38:30 +0000 (09:38 +0900)]
[NUI.Scene3D] Deprecate direct accessor to motion value list
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
jeremy-jang [Tue, 20 Jun 2023 05:50:01 +0000 (14:50 +0900)]
[ThemeManager] Clear current theme cache when theme changed (#5320)
* [ThemeManager] Clear current theme cache when theme changed
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
* Fix ThemeLoader.Dispose
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
---------
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
sukhyungkang [Mon, 19 Jun 2023 23:45:18 +0000 (08:45 +0900)]
Add check box for notification (#5342)
Signed-off-by: SukhyungKang <shine.kang@samsung.com>
huayong.xu [Mon, 12 Jun 2023 05:32:15 +0000 (13:32 +0800)]
[NUI] Update webview TCs.
AdunFang [Wed, 14 Jun 2023 22:55:52 +0000 (07:55 +0900)]
[NUIComponents] Roll back error modification
joogab.yun [Wed, 14 Jun 2023 07:20:38 +0000 (16:20 +0900)]
[NUI] Add DispatchHoverEvents and DispatchPrentHoverEvents
If DispatchHoverEvents sets false, view will not receive any HoverEvent including own.
If DispatchPrentHoverEvents sets false, the parent view does not receive HoverEvent.
dongsug.song [Wed, 14 Jun 2023 01:50:26 +0000 (10:50 +0900)]
[NUI] Version update (22230)
huayong.xu [Thu, 4 May 2023 07:28:03 +0000 (15:28 +0800)]
[NUI] Fix the issue that max width of Button Text is incorrect.
When max width of Text is calculated in Vertical alignment,
Width of Icon should be ignored.
huayong.xu [Mon, 12 Jun 2023 05:51:45 +0000 (13:51 +0800)]
[NUI] Unregister callbacks when passed argument is null.
AdunFang [Fri, 9 Jun 2023 01:34:05 +0000 (10:34 +0900)]
[NUI] Fix issue when user try to get Children of ScrollableBase instance as View
joogab.yun [Fri, 9 Jun 2023 02:12:27 +0000 (11:12 +0900)]
[NUI] Fix incorrect calculation of configGestureCount.
Daekwang Ryu [Wed, 7 Jun 2023 03:03:24 +0000 (12:03 +0900)]
[NUI] Introduce WindowData
The NUIApplication class had to add new consructors whenever the Window
class added a new constructor. Becuase the class has a default window.
To simplify this process, WindowData is introduced that contains
all the data of the default window.
Taehyub Kim [Thu, 8 Jun 2023 07:55:32 +0000 (16:55 +0900)]
[NUI] version update
huayong.xu [Tue, 30 May 2023 11:56:47 +0000 (19:56 +0800)]
[NUI] Update WebView TCs.
joogab.yun [Sat, 3 Jun 2023 00:53:38 +0000 (09:53 +0900)]
[NUI] Add moveCompleted and resizeCompleted api on BorderWindow
Wonsik Jung [Mon, 22 May 2023 00:56:55 +0000 (09:56 +0900)]
Add window move/resize completed signal
When RequestMoveToServer() or RequestResizeToServer() is called, window start to be moved or resized by display server.
After the action is finished, server send the completed event.
This patch is to received the events.
Heeyong Song [Wed, 31 May 2023 04:32:07 +0000 (13:32 +0900)]
Add KeepRendering to Window
Artur Świgoń [Wed, 31 May 2023 07:19:51 +0000 (09:19 +0200)]
[NUI][AT-SPI] Add IAtspiTable and IAtspiTableCell interfaces (#5305)
Co-authored-by: Artur Świgoń <a.swigon@samsung.com>
Jiyun Yang [Wed, 31 May 2023 05:16:13 +0000 (14:16 +0900)]
[NUI] Version up 22228
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Eunki, Hong [Tue, 30 May 2023 09:17:11 +0000 (18:17 +0900)]
[NUI] Double buffered ProcessorOnceEvent so we allow attach event during invoke
When we load cached image, `ResourceLoaded` signal invoked immediate.
So, `ResourceLoaded` can be called during `UpdateImage(object, EventArgs)`.
But since we make null after invoke + C# didn't invoke event during invoking.
That mean, attached `UpdateImage()` information disapeared.
So we need to allow `UpdateImage()` event invoke during `ProcessorOnceEvent` invoking.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
huayong.xu [Tue, 25 Apr 2023 09:59:27 +0000 (17:59 +0800)]
[NUI] Update WebView TCs.
Originally WebView TCs are run synchronously.
This patch is to change them async.
Bowon Ryu [Thu, 25 May 2023 05:09:30 +0000 (14:09 +0900)]
[NUI] Add font thread sync creation option
If sync creation is true, font thread creation guarantees syncronization with the main thread.
The main thread runs the font thread and waits,
and it wakes up upon receiving a notification from the font thread.
If it doesn't receive a notification within the specified time, it wakes up due to a timeout.
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
seungho baek [Thu, 25 May 2023 02:00:16 +0000 (11:00 +0900)]
[NUI] Add new constructor to Rotation by using Quaternion vector4 as input parameter
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
seungho baek [Thu, 18 May 2023 06:53:20 +0000 (15:53 +0900)]
[NUI] Add Comment on the View.VisibilityChanged event
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
Artur Świgoń [Tue, 23 May 2023 09:53:06 +0000 (11:53 +0200)]
[NUI][AT-SPI] Add AccessibilityDynamicAttributes (#5287)
Co-authored-by: Artur Świgoń <a.swigon@samsung.com>
Jiyun Yang [Tue, 23 May 2023 09:04:27 +0000 (18:04 +0900)]
[NUI] Fix theme applied issue
Component style can change even if the platform theme is disabled
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Eunki, Hong [Mon, 8 May 2023 23:53:50 +0000 (08:53 +0900)]
[NUI] Deprecated Animation.Stop(EndActions)
That API change the 'EndAction' property.
And also, EndAction input parameter will not works well if
- It's value is EndActions.Discard
- Already finished animation
So, we'd better guide to app developer to use EndAction property
instead of Stop(EndActions) API.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
hjhun [Thu, 25 May 2023 06:17:59 +0000 (15:17 +0900)]
[NUI.Gadget] Modify NUIGadgetResourceManager (#5302)
If getting string is failed, the resource manager should try to get
string from the default satelite assembly.
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
Co-authored-by: pjh9216 <jh9216.park@samsung.com>
ChangGyu Choi [Thu, 25 May 2023 05:23:51 +0000 (14:23 +0900)]
Modify implementation
Since LibIniParser.Load() is not expensive to call and the call
frequency of GetCultureName() method is low, there is no need to
preprocess initialization by applying Singleton pattern.
Signed-off-by: ChangGyu Choi <uppletaste@gmail.com>
ChangGyu Choi [Thu, 25 May 2023 05:00:15 +0000 (14:00 +0900)]
Fix file not found exception
When ini file does not exist, LibIniParser.Load() makes error logs.
This patch is to remove this case.
After applying this patch, we can expect performance improvement by
loading the dictionary only once for the first time.
Signed-off-by: ChangGyu Choi <uppletaste@gmail.com>
Seoyeon Kim [Mon, 22 May 2023 07:24:11 +0000 (16:24 +0900)]
[NUI] Version up 22227
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
joogab.yun [Mon, 22 May 2023 05:21:06 +0000 (14:21 +0900)]
[NUI] Add DispatchParentTouchEvent
If a View's DispatchParentTouchEvents is set to false, then parents will not receive a touch event signal either.
Eunki Hong [Tue, 16 May 2023 16:49:39 +0000 (01:49 +0900)]
[NUI] Let LottieAnimationView use InternalVisual API
To avoid useless PropertyValue class creation, let we change
to visual use InternalVisual APIs.
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Tue, 16 May 2023 23:47:21 +0000 (08:47 +0900)]
[NUI] Cache url when we call SetImage + Make way to skip visual creation
Previously, we don't cache Url infomation at cached property map when we use
SetImage API instead of ResourceUrl property.
Now, let we keep this cache information.
And also, add parameter that we dont want to create new visual when we change
this property.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Tue, 16 May 2023 06:33:39 +0000 (15:33 +0900)]
[NUI] Reduce get/set overhead for some LottieAnimationView properties
Let's believe the cached properties what LottieAnimationView already cached.
Since ImageView.Image is heavy operation, we should call this thing less times.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
seungho baek [Mon, 15 May 2023 06:47:06 +0000 (15:47 +0900)]
[NUI] Binds GetCurrentProperty to Animatable class
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
Eunki Hong [Fri, 12 May 2023 12:37:09 +0000 (21:37 +0900)]
[NUI.Sample] BlendPoint demo
Let we use blendpoint on Scene3DSample and BlendPointSample
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Wed, 10 May 2023 08:11:44 +0000 (17:11 +0900)]
[NUI.Scene3D] Change the API name for BlendShape morphing
Since json file can change not only facial, The name of API is not good.
Instead, Let we change the name of facial API as 'BlendShapeAnimation'.
Now user can notify that this API can control all kinds of blendshape.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Bowon Ryu [Tue, 9 May 2023 11:07:39 +0000 (20:07 +0900)]
[NUI] Add FontPreLoad API to FontClient
This patch adds a new FontPreLoad API that preloads font faces.
this can prevents delays on main thread during the inital call of FT_New_Face.
using memoryFontPathList involves loading font buffers into memory.
And using FT_New_Memory_Face at runtime, which uses more memory
but can lead to greater performance improvements.
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
seungho baek [Mon, 8 May 2023 09:18:54 +0000 (18:18 +0900)]
[NUI] Add BlendPoint to blend animation of AnimateBetween
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
joogab.yun [Tue, 9 May 2023 08:08:05 +0000 (17:08 +0900)]
[NUI] Add Touch source type for gesture
Jiyun Yang [Wed, 19 Apr 2023 07:27:50 +0000 (16:27 +0900)]
[NUI] Remove duplicate ?. operator and use using statement
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
joogab.yun [Thu, 4 May 2023 09:37:45 +0000 (18:37 +0900)]
[NUI] Binding GetDeviceClass and GetDeviceSubclass of touch event
refer :
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-csharp-binder/+/292340/
Eunki Hong [Fri, 28 Apr 2023 01:30:00 +0000 (10:30 +0900)]
[NUI.Scene3D] Make API to apply ModelMotion
Make a prototype of MotionData settor & Animation generator
Let we can use two type of motion as index
- MotionTransformIndex
- BlendShapeIndex
MotionTransformIndex can control only Position / Orientation / Scale.
and, BlendShape can control only BlendShape.
Currently a lots of case are not supported.
But we can test MotionData usecase by "string" ModelNodeId + "int" blendshape
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
JoogabYun [Thu, 4 May 2023 01:56:27 +0000 (10:56 +0900)]
[NUI] Add WindowMouseInOutEvent (#5242)
MouseInOutEvent is used when the mouse enters or exits a window
refer :
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-adaptor/+/292271/
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-csharp-binder/+/292272/
joogab.yun [Wed, 3 May 2023 05:17:00 +0000 (14:17 +0900)]
[NUI] Binding EnableFocusIndicator and IsFocusIndicatorEnabled
refer : https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-csharp-binder/+/292280/
Eunki, Hong [Mon, 24 Apr 2023 09:00:10 +0000 (18:00 +0900)]
[NUI.Scene3D] Add property for bvh that translate root from ModelNode or not
Add input parameter for bvh animation loader
that we should ignore root position translate or not.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Post-review fixes #2 (#4)
adaszkiewicza [Fri, 28 Apr 2023 12:40:03 +0000 (14:40 +0200)]
Fix SubsessionEventInfoNative struct definition and usage (#3)
Now it does not use unrolled arrays
adaszkiewicza [Thu, 27 Apr 2023 11:28:30 +0000 (13:28 +0200)]
Fix issues from review (#2)
Add ref keyword where needed, change IntPtrToStringArray method
Adam Michalski [Tue, 25 Apr 2023 17:35:08 +0000 (19:35 +0200)]
Post-review fixes to pull request #5203 part 1
adaszkiewicza [Thu, 20 Apr 2023 11:12:08 +0000 (13:12 +0200)]
Implement libsessiond wrapper
Doyoun Kang [Fri, 12 May 2023 01:42:58 +0000 (10:42 +0900)]
[NUI.WindowSystem] introduce the taskbar service feature
Signed-off-by: Doyoun Kang <doyoun.kang@samsung.com>
ilho159kim [Thu, 11 May 2023 06:11:42 +0000 (15:11 +0900)]
[Tdbc] Fix Sqlite update hook (#5251)
If the delete statement is executed, the record can't be returned
because the value for the rowid doesn't exist in the database
Therefore, in the case of delete, the record is returned to null
Signed-off-by: ilho kim <ilho159.kim@samsung.com>
Co-authored-by: pjh9216 <jh9216.park@samsung.com>
y01k [Thu, 11 May 2023 05:29:42 +0000 (14:29 +0900)]
[DevicePolicyManager] Deprecate DevicePolicyManager APIs (#5180)
Signed-off-by: yeji01.kim <yeji01.kim@samsung.com>
Dariusz Michaluk [Mon, 8 May 2023 10:26:45 +0000 (12:26 +0200)]
Mark all Tizen.Security.PrivacyPrivilegeManager APIs as deprecated (#4934)
Change-Id: I519abb343b5f4e49d2256a9b0abf69d4fb755632
Haesu Gwon [Thu, 4 May 2023 08:23:34 +0000 (17:23 +0900)]
[MediaVision] Fix Design QR bug (#5245)
* [MediaVision] Fix Design QR bug
youngjae [Wed, 3 May 2023 05:22:48 +0000 (14:22 +0900)]
[Tizen.Log] Fix gbs build error
Signed-off-by: youngjae <y0.cho@samsung.com>
hjhun [Tue, 2 May 2023 09:15:15 +0000 (18:15 +0900)]
[NUI.Gadget] Modify NUIGadgetResourceManager class (#5233)
When getting the resource manager using the current culture info is failed,
the NUIGadgetResourceManager tries to get the resource manager using
the "default" string. It means using "/res/allowed/<resource>.dll" file.
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
Daekwang Ryu [Tue, 2 May 2023 06:20:29 +0000 (15:20 +0900)]
[NUI] Version up 22224
Eunki, Hong [Wed, 26 Apr 2023 09:10:39 +0000 (18:10 +0900)]
[NUI] Reuse internally created Key/Touch and reuse it
To reduce the GC call for each Event getter, let we create
Key/Touch only one time for each window, and reuse it.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Jiyun Yang [Thu, 27 Apr 2023 11:09:35 +0000 (20:09 +0900)]
Add GenerateUrl API to FrameBuffer
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
EverLEEst(SangHyeon Lee) [Thu, 27 Apr 2023 09:39:16 +0000 (18:39 +0900)]
[NUI] Fix empty item case crash. wrong bracket conditions.
when failed flag is true,
other condition should be ingored.
sunghyun kim [Wed, 5 Apr 2023 06:23:27 +0000 (15:23 +0900)]
[NUI] Add Default Image & transition effect
Eunki, Hong [Wed, 26 Apr 2023 05:45:11 +0000 (14:45 +0900)]
[NUI] LoopingMode enum for Animation class
Let we allow to animation auto_reversed
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
jeremy-jang [Tue, 2 May 2023 02:41:40 +0000 (11:41 +0900)]
[Tdbc] Fix static analysis issues (#5231)
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
hjhun [Fri, 28 Apr 2023 02:04:17 +0000 (11:04 +0900)]
[NUI.Gadget] Add Assembly property to NUIGadgetInfo (#5226)
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
조영재 [Thu, 27 Apr 2023 04:27:17 +0000 (13:27 +0900)]
[Tizen.Log] Optimize garbage collection (#5156)
* [Tizen.Log] Optimize garbage collection
The CLR automatically converts string into byte array when it invokes
native function. In this process, the CLR allocates byte array on heap,
which will be a garbage, for every single string. If applications are
printing dlog too bursty, those garbage would pile up, consuming too much
memory. To reduce those garbage, manually allocates byte array on stack
and convert string into that byte array.
Signed-off-by: Youngjae Cho <y0.cho@samsung.com>
* [Tizen.Log] Remove Substring function (#2)
To cut filename from whole filepath, Print function uses Substring function.
Also, filename string is newly created.
To avoid newly create memory which can be garbage collecting target,
Substring function is removed.
Signed-off-by: Yunhee Seo <yuni.seo@samsung.com>
Co-authored-by: Yunhee <yuni.seo@samsung.com>
---------
Signed-off-by: Youngjae Cho <y0.cho@samsung.com>
Signed-off-by: Yunhee Seo <yuni.seo@samsung.com>
Co-authored-by: yuni.seo <129935814+yuni-seo@users.noreply.github.com>
Co-authored-by: Yunhee <yuni.seo@samsung.com>