TizenAPI-Bot [Mon, 6 Nov 2023 11:37:09 +0000 (11:37 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
dongsug.song [Mon, 6 Nov 2023 11:11:33 +0000 (20:11 +0900)]
[NUI] version up (22251)
zhouhao02 [Tue, 31 Oct 2023 05:11:23 +0000 (13:11 +0800)]
[NUI] Fix some SVACE issues.
Chihun Jeong [Fri, 3 Nov 2023 01:41:09 +0000 (10:41 +0900)]
[NUI] Add a Window constructor using WindowData (#5708)
* [NUI] Add a Window constructor using WindowData
* Add Information about WindowData to the summary
---------
Co-authored-by: ANZ1217 <chihun.jeong@samsung.com>
Eunki, Hong [Mon, 30 Oct 2023 05:17:31 +0000 (14:17 +0900)]
[NUI] Remove basehandle usage at Accessibility static
Since we try to resolve some unusual behavior of BaseHandle,
the dummyHandle in Accessibility can give us some confuse logs.
Actually, we don't need to hold it as BaseHandle type. we only need this
as object type. So, let we make it as object, instead of BaseHandle.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Tue, 31 Oct 2023 03:59:36 +0000 (12:59 +0900)]
[NUI] Resolve many problems relative with BaseHandle
- Ensure to get 'already registered, or create new one' what we get item from DALi engine
- Let we also ensure create only one items if we use static ::Get() API
- Do not register to Registry if we copy the reference.
- Remove some useless copy constructor.
- Do not register to Registry if we create empty object.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Thu, 2 Nov 2023 07:44:01 +0000 (16:44 +0900)]
[NUI] Do not register when BaseHandle doesn't have body
If BaseHandle doesn't have body, the refCPtr value is IntPtr.Zero.
If than, the various cases have wrong registration in future.
To avoid this case, let we ignore to register to registry, and
make BaseHandle.registerMe value as false.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Wonsik Jung [Mon, 30 Oct 2023 12:43:30 +0000 (21:43 +0900)]
[NUI] Reinforce NUI Sample for window
Reinforce NUI Sample for window.
It has the sample for testing window function.
Haesu Gwon [Mon, 6 Nov 2023 08:03:28 +0000 (17:03 +0900)]
[Multimedia] Fix ASAN crash issue (#5699)
* [Multimedia] Fix ASAN crash issue
JongHeonChoi [Mon, 6 Nov 2023 00:45:03 +0000 (09:45 +0900)]
[Build] Create a dotnet library dir from the post script (#5711)
JongHeonChoi [Mon, 6 Nov 2023 00:39:57 +0000 (09:39 +0900)]
[Build] Set the dotnet_core_runtime_version value to 6.0 (#5706)
Junseok Kim [Wed, 1 Nov 2023 05:27:06 +0000 (14:27 +0900)]
[NUI.WindowSystem] Add SetSecondarySelection and UnsetSecondarySelection to fix typo
Add new requests SetSecondarySelection and UnsetSecondarySelection to alternate requests
SetSecondarySelction and UnsetSecondarySelction that have typo.
After all caller that typo requests have been removed, the typo request have been removed.
JongHeonChoi [Thu, 2 Nov 2023 01:50:15 +0000 (10:50 +0900)]
[Build] Fixed an error that could not find the dotnet_resolving.info file (#5702)
TizenAPI-Bot [Tue, 31 Oct 2023 05:50:52 +0000 (05:50 +0000)]
Release 12.0.0.18100
TizenAPI-Bot [Tue, 31 Oct 2023 05:50:51 +0000 (05:50 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
JongHeonChoi [Tue, 31 Oct 2023 05:46:06 +0000 (14:46 +0900)]
[Build] the dotnet_resolving.info file has been renamed (#5687)
TizenAPI-Bot [Tue, 31 Oct 2023 04:26:36 +0000 (04:26 +0000)]
Release 12.0.0.18099
TizenAPI-Bot [Tue, 31 Oct 2023 04:26:36 +0000 (04:26 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
JongHeonChoi [Tue, 31 Oct 2023 04:12:28 +0000 (13:12 +0900)]
[Build] Create vconf related to .NET as a file in RO location (#5679)
TizenAPI-Bot [Mon, 30 Oct 2023 13:19:13 +0000 (13:19 +0000)]
Release 12.0.0.18098
TizenAPI-Bot [Mon, 30 Oct 2023 13:19:12 +0000 (13:19 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Taehyub Kim [Mon, 30 Oct 2023 12:18:25 +0000 (21:18 +0900)]
[NUI] Version up nui22250
Eunki, Hong [Mon, 30 Oct 2023 03:21:46 +0000 (12:21 +0900)]
[NUI] Do not register when we try to copy same handle
Since we register to registry by BaseObjectPtr(), it is impossible to
register duplicated handle.
So, actually, we have to deplicate copy BaseHandle constructor.
But for now, just make we don't register into registry now.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Mon, 30 Oct 2023 04:49:51 +0000 (13:49 +0900)]
[NUI] Make DaliAccessibilityDetachAccessibleObject called at main thread
void Dispose(bool) can be called from worker thread, when disposing value is false.
To ensure we detach AccessibileObject in main thread, let we remove it
at Dispose(DisposeTypes), instead of Dispose(bool).
To avoid this kind of error in future, let we remove View.Dispose(bool)
and let we only use Dispose(DisposeTypes).
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Artur Świgoń [Thu, 19 Oct 2023 15:53:40 +0000 (17:53 +0200)]
[NUI] Detach NUIViewAccessible in View.Dispose()
The application may crash if the View is disposed but the Accessibility
infrastructure calls one of the View methods. Detaching the
NUIViewAccessible proxy object in View.Dispose() should prevent that.
Eunki, Hong [Mon, 30 Oct 2023 01:42:20 +0000 (10:42 +0900)]
[NUI] Temperary revert exception throw at Registry.
Until resolve all kind of apps fix wrong behavior,
let we just print error without exception.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Fri, 27 Oct 2023 09:47:55 +0000 (18:47 +0900)]
[NUI] Resolve DisposeRecursively crashed when we dispose scrollbase
Due to some app's implements, ContentView can be disposed before ScrollBase
itself disposed. In this case, ContentView is not null.
So, when we try to call RemovePropertyNotification, it become crashed.
To avoid these cases, let we make DisposeRecursively API makes more safety.
And also, fix some crash issue in PerformanceTest1Page.xaml.cs what
can be problem in future.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki Hong [Thu, 26 Oct 2023 16:48:39 +0000 (01:48 +0900)]
[NUI] Make it works on net6.0
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Eunki Hong [Thu, 26 Oct 2023 10:42:44 +0000 (19:42 +0900)]
[NUI] Make NativeImageQueue generate valid url
Previously NativeImageQueue.GenerateUrl() binded to
invalid csharp API.
It will make some crash. So let we use valid bind API instead.
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
sunghyun kim [Thu, 26 Oct 2023 02:30:58 +0000 (11:30 +0900)]
[NUI] Add KeepWidgetSize for control widget's size
WidgetView keep widget instance's size and don't resize even if WidgetView is resized.
TizenAPI-Bot [Wed, 25 Oct 2023 15:14:13 +0000 (15:14 +0000)]
Release 12.0.0.18089
TizenAPI-Bot [Wed, 25 Oct 2023 15:14:12 +0000 (15:14 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Eunki, Hong [Wed, 25 Oct 2023 07:32:47 +0000 (16:32 +0900)]
[NUI] Version up nui22249
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Tue, 24 Oct 2023 08:26:26 +0000 (17:26 +0900)]
[NUI] Change Accessibility.cs don't use net6.0 specific function
Let we minimize the net core dependency
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
zhouhao02 [Wed, 11 Oct 2023 06:05:52 +0000 (14:05 +0800)]
[NUI] Fix some SVACE issues.
Eunki, Hong [Wed, 18 Oct 2023 07:16:27 +0000 (16:16 +0900)]
[NUI] Make View.TooltipText return valid value
Let we remove useless error message + Make getter return valid setting value
for View.TooltipText property.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki Hong [Tue, 24 Oct 2023 14:20:08 +0000 (23:20 +0900)]
[NUI.Components] Remove build warning for Control.Preload()
We implement View.Preload() API now. So compiler can feel dizzy
which one is Control.Preload() should do.
To avoid this compilation warning, let we add 'new' keyword for it.
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Wonsik Jung [Tue, 24 Oct 2023 07:22:16 +0000 (16:22 +0900)]
[NUI] Supports to set/get full screen sized window
To support set/get full screen sized window.
The full screen sized window means the window is resized with screen size.
In addition, this window is the z-order is the highest.
Eunki, Hong [Tue, 24 Oct 2023 01:47:09 +0000 (10:47 +0900)]
[NUI] Preload some static values
Since C# initialize static values when that namespace / class access first time,
We need to access some static values at static Preload() timing.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Mon, 23 Oct 2023 02:50:27 +0000 (11:50 +0900)]
[NUI.Scene3D] Bug fix when we get ModelNode from Model
Since View constructor automatically change 'PositionUsesPivotPoint' value as false,
some logic might changed when we Register ModelNode newly.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Tue, 24 Oct 2023 02:55:19 +0000 (11:55 +0900)]
[NUI] Flush action implement for LottieAnimationView
Implement Flush action. It will be used when user
want to ensure the Lottie property changed applied sequencly.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Xianbing Teng [Tue, 17 Oct 2023 10:49:49 +0000 (18:49 +0800)]
[NUI] Public RemoveBinding and ClearBinding apis
Taehyub Kim [Wed, 18 Oct 2023 11:07:38 +0000 (20:07 +0900)]
[NUI] Add an API to set offset for drag window
Eunki, Hong [Wed, 18 Oct 2023 06:17:35 +0000 (15:17 +0900)]
[NUI] Make AddFrameUpdateCallback with root view
Previously, we can only add the root view of FrameUpdateCallback as
root layer of window.
Now let we add some API that user can set specific view
for given FrameUpdateCallback will use.
This API will be used when we want to optimize callback behaviour.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Tue, 17 Oct 2023 06:24:58 +0000 (15:24 +0900)]
[NUI] Resolve registry issue for RenderTaskList
After patch #5595 merged, there was some hidden bugs occured.
This PR is one of portential bug fix.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
zhouhao02 [Tue, 17 Oct 2023 02:29:02 +0000 (10:29 +0800)]
[NUI] Fix the SVACE issue.
Eunki Hong [Sun, 15 Oct 2023 01:13:11 +0000 (10:13 +0900)]
[NUI.Wearable] Remove build warning
- Add comment for public API
- Remove some unused private value/method
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Artur Świgoń [Mon, 16 Oct 2023 09:31:42 +0000 (11:31 +0200)]
[NUI][AT-SPI] Fix Accessibility.Say interop (#5612)
This is one of the oldest interops and was actually problematic for
multiple reasons; the return type didn't match and the third parameter
was expected to have exactly the same value in every invocation. While
fixing these issues, parsing the status string was moved from C++ to C#
for readability.
Co-authored-by: Artur Świgoń <a.swigon@samsung.com>
Eunki, Hong [Fri, 13 Oct 2023 04:40:56 +0000 (13:40 +0900)]
[NUI] Resolve registry issue for CanvasView Gradient
Since we always try to register to Registry for Gradient case,
there can make some error for Shape use case.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki Hong [Thu, 12 Oct 2023 14:24:45 +0000 (23:24 +0900)]
[NUI] Fix Registry exception for custom view wrapper
1. PanGesture from Accessibility create new handle in
dali csharp side. We need to have memory ownership, but
don't need to register it on NUI side. We can ignore it.
2. For Animation and StyleManager, it is possible to use
that 'already registered' BaseHandle. But in this case,
we should not dispose it by our self.
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Eunki Hong [Thu, 12 Oct 2023 14:51:41 +0000 (23:51 +0900)]
[NUI] Resolve TextLable build warning
Reference documents : https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/xmldoc/
To refer to XML elements (for example, your function processes specific XML elements that you want to describe in an XML documentation comment), you can use the standard quoting mechanism (< and >).
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Bowon Ryu [Tue, 10 Oct 2023 02:20:47 +0000 (11:20 +0900)]
[NUI] Add TextFitArray
Add a new function to satisfy the UX that
operates TextFit by considering the PointSize and MinLineSize of the text.
For example, TextFit should be able to find the one that
fits among [PointSize 24 + MinLineSize 40] or [PointSize 28 + MinLineSize 44].
But the previous TextFit only considers PointSize.
TextFitArray can solve this problem,
and this implemented it to respond to additional requirements without modifying the API.
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-toolkit/+/299557/
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-csharp-binder/+/299690/
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
joogab.yun [Tue, 10 Oct 2023 07:51:35 +0000 (16:51 +0900)]
[NUI] revert default key construct
refer : https://github.com/Samsung/TizenFX/pull/5589/
joogab.yun [Tue, 10 Oct 2023 05:00:31 +0000 (14:00 +0900)]
[NUI] bug fixed about cMemoryOwn
refer : https://github.com/Samsung/TizenFX/pull/5603
Eunki Hong [Sun, 8 Oct 2023 07:22:56 +0000 (16:22 +0900)]
[NUI] Consider WeakReference resurrection at Registry.
Since NUI use DisposeQueue system instead of GC directly,
the lifecycle of WeakReference may need to be alive more times.
If we make trackResurrection as false, WeakReference.Target
become null when the item is in DisposeQueue.
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Eunki Hong [Sun, 8 Oct 2023 07:02:42 +0000 (16:02 +0900)]
[NUI] BaseHandle without Registry but own memory
There are some usecase s.t. we have to call ReleaseSwigCPtr
but don't want register to Registry.
For example, PixelBuffer and PixelData dont need to be create
only for main thread.
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Eunki Hong [Sun, 8 Oct 2023 07:32:54 +0000 (16:32 +0900)]
[NUI] Remove build warnings
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
zhouhao02 [Sun, 8 Oct 2023 01:21:10 +0000 (09:21 +0800)]
[NUI] Fix some SVACE issues related to methods of Marshal.
zhouhao02 [Sun, 8 Oct 2023 09:23:08 +0000 (17:23 +0800)]
[NUI] Fix some SVACE issues of null reference.
Eunki, Hong [Tue, 26 Sep 2023 06:25:43 +0000 (15:25 +0900)]
[NUI] Let registry throw exception at error case
Let we throw exception if same object try to register.
Moreover, let we print more useful callstack if we got unmatched case.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
zhouhao02 [Wed, 27 Sep 2023 03:03:30 +0000 (11:03 +0800)]
[NUI] Fix some SVACE issues.
TizenAPI-Bot [Tue, 24 Oct 2023 15:11:38 +0000 (15:11 +0000)]
Release 12.0.0.18060
TizenAPI-Bot [Tue, 24 Oct 2023 15:11:38 +0000 (15:11 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Wootak Jung [Tue, 24 Oct 2023 03:04:31 +0000 (12:04 +0900)]
[Bluetooth] Fix ASAN crash issue (#5624)
- Use g_free for data allocated by g_malloc
Signed-off-by: Wootak Jung <wootak.jung@samsung.com>
TizenAPI-Bot [Mon, 23 Oct 2023 15:11:50 +0000 (15:11 +0000)]
Release 12.0.0.18059
TizenAPI-Bot [Mon, 23 Oct 2023 15:11:50 +0000 (15:11 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Seung-Woo Kim [Wed, 18 Oct 2023 05:31:40 +0000 (14:31 +0900)]
[System.Information] Use Marshal.FreeHGlobal() instead of Libc.Free()
Use Marshal.FreeHGlobal() instead of Libc.Free() for ASAN
environment. Also, remove not any more used Libc.Free() Interop.
In ASAN environment, because Interop uses dlopen(), newly opended
libc causes different libc/asan alloc context from already allocaed
buffer, and it gives segment fault crash when calling Libc.Free().
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
TizenAPI-Bot [Fri, 20 Oct 2023 15:10:48 +0000 (15:10 +0000)]
Release 12.0.0.18058
TizenAPI-Bot [Fri, 20 Oct 2023 15:10:48 +0000 (15:10 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Seonah Moon [Fri, 20 Oct 2023 04:23:50 +0000 (13:23 +0900)]
[WiFi] Fix ASAN crash (#5631)
* [WiFi] Fix ASAN crash
* [WiFi] Use Marshal.FreeHGlobal()
---------
Co-authored-by: chleun-moon <32117100+chleun-moon@users.noreply.github.com>
TizenAPI-Bot [Thu, 19 Oct 2023 15:11:18 +0000 (15:11 +0000)]
Release 12.0.0.18057
TizenAPI-Bot [Thu, 19 Oct 2023 15:11:18 +0000 (15:11 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Yunhee Seo [Thu, 19 Oct 2023 04:37:28 +0000 (13:37 +0900)]
[System.Feedback] Add feedback theme index range description
The index of sound theme range is 1 ~ N according to conf file.
This index range should be considered when using feedback theme index getter/setter.
Signed-off-by: Yunhee Seo <yuni.seo@samsung.com>
TizenAPI-Bot [Wed, 18 Oct 2023 15:11:59 +0000 (15:11 +0000)]
Release 12.0.0.18056
TizenAPI-Bot [Wed, 18 Oct 2023 15:11:59 +0000 (15:11 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Seonah Moon [Wed, 18 Oct 2023 08:04:48 +0000 (17:04 +0900)]
[Nsd] Fix ASAN crash (#5632)
hjhun [Wed, 18 Oct 2023 05:38:58 +0000 (14:38 +0900)]
Use Marshal.FreeHGlobal() instead of Libc.Free() (#5636)
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
TizenAPI-Bot [Tue, 17 Oct 2023 15:10:20 +0000 (15:10 +0000)]
Release 12.0.0.18054
TizenAPI-Bot [Tue, 17 Oct 2023 15:10:20 +0000 (15:10 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Seonah Moon [Tue, 17 Oct 2023 07:16:24 +0000 (16:16 +0900)]
[Connection] Fix ASAN crash issue (#5625)
k-jaju [Tue, 17 Oct 2023 06:57:03 +0000 (12:27 +0530)]
Deprecating Tizen.Messaging.Messages APIs (#5593)
Signed-off-by: Krishna Kant Jaju <krishna.jaju@samsung.com>
Co-authored-by: randeepsingh01 <49635973+randeepsingh01@users.noreply.github.com>
hjhun [Tue, 17 Oct 2023 04:47:29 +0000 (13:47 +0900)]
Change visibility of NUIGadgetResourceManager ctor (#5626)
The visibility of NUIGadgetResourceManager(NUIGadgetInfo info) is
changed to public.
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
hjhun [Tue, 17 Oct 2023 04:40:33 +0000 (13:40 +0900)]
Use Marshal.FreeHGlobal() instead of Libc.Free() (#5628)
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
TizenAPI-Bot [Mon, 16 Oct 2023 15:10:34 +0000 (15:10 +0000)]
Release 12.0.0.18050
TizenAPI-Bot [Mon, 16 Oct 2023 15:10:34 +0000 (15:10 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
priyakohl [Mon, 16 Oct 2023 11:37:35 +0000 (17:07 +0530)]
Deprecating Tizen.Messaging.Email APIs (#5596)
* Deprecating Tizen.Messaging.Email APIs
Signed-off-by: Priya Kohli <priya.kohli@samsung.com>
* Added using System
Signed-off-by: Priya Kohli <priya.kohli@samsung.com>
* Modified Note
Signed-off-by: Priya Kohli <priya.kohli@samsung.com>
---------
Signed-off-by: Priya Kohli <priya.kohli@samsung.com>
Co-authored-by: randeepsingh01 <49635973+randeepsingh01@users.noreply.github.com>
TizenAPI-Bot [Fri, 13 Oct 2023 15:13:00 +0000 (15:13 +0000)]
Release 12.0.0.18049
TizenAPI-Bot [Fri, 13 Oct 2023 15:13:00 +0000 (15:13 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Yunhee Seo [Thu, 12 Oct 2023 07:44:39 +0000 (16:44 +0900)]
[System.Feedback] Add new feedback_pattern
Below feedback pattern is supported by mapping feedback pattern id number.
- FEEDBACK_PATTERN_WELCOME
- FEEDBACK_PATTERN_AUTO_DOOR_OPEN
Signed-off-by: Yunhee Seo <yuni.seo@samsung.com>
TizenAPI-Bot [Thu, 12 Oct 2023 15:12:18 +0000 (15:12 +0000)]
Release 12.0.0.18048
TizenAPI-Bot [Thu, 12 Oct 2023 15:12:18 +0000 (15:12 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
ChangGyu Choi [Thu, 12 Oct 2023 00:13:23 +0000 (09:13 +0900)]
[Tdbc] Fix UpdateHookCallback released issue (#5528)
The issue is that if you don't keep a reference to the UpdateHookCallback,
it may be garbage collected before it is used.
UpdateHookCallback should be referenced during used this.
Signed-off-by: Changgyu Choi <changyu.choi@samsung.com>
Co-authored-by: pjh9216 <jh9216.park@samsung.com>
TizenAPI-Bot [Wed, 11 Oct 2023 15:11:34 +0000 (15:11 +0000)]
Release 12.0.0.18047
TizenAPI-Bot [Wed, 11 Oct 2023 15:11:33 +0000 (15:11 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
priyakohl [Wed, 11 Oct 2023 05:38:12 +0000 (11:08 +0530)]
Deprecating Tizen.Location.Geofence APIs (#5598)
* Deprecating Tizen.Location.Geofence APIs
Signed-off-by: Priya Kohli <priya.kohli@samsung.com>
* Removing type
Signed-off-by: Priya Kohli <priya.kohli@samsung.com>
* Indentation fixes
Signed-off-by: Priya Kohli <priya.kohli@samsung.com>
* Modified Note
Signed-off-by: Priya Kohli <priya.kohli@samsung.com>
---------
Signed-off-by: Priya Kohli <priya.kohli@samsung.com>
Co-authored-by: randeepsingh01 <49635973+randeepsingh01@users.noreply.github.com>
TizenAPI-Bot [Tue, 10 Oct 2023 15:11:28 +0000 (15:11 +0000)]
Release 12.0.0.18046
TizenAPI-Bot [Tue, 10 Oct 2023 15:11:28 +0000 (15:11 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Jay Cho [Tue, 10 Oct 2023 05:08:41 +0000 (14:08 +0900)]
Update README.md
Jay Cho [Tue, 10 Oct 2023 05:05:46 +0000 (14:05 +0900)]
Update README.md
TizenAPI-Bot [Fri, 6 Oct 2023 09:45:13 +0000 (09:45 +0000)]
Release 12.0.0.18044