Woochan Lee [Fri, 17 Mar 2023 00:34:48 +0000 (09:34 +0900)]
libaurum: Changes the dbus API for get application list
We called too many dbus method for gets application list.
This commit to improve it.
Change-Id: If16ece1e4965fd569f4857f971fc8704e3b4a459
Hosang Kim [Mon, 6 Mar 2023 08:11:11 +0000 (17:11 +0900)]
aurum: update sample script
Change-Id: I56e18cd202e71c28a3f718caf5f149e9b89ab669
Chihun Jeong [Tue, 7 Mar 2023 07:45:29 +0000 (16:45 +0900)]
AurumXML: Improve performance
Change-Id: I3a2fd3ba244b9a6055f1cb3ef2c2f67a4eab08b6
Daekwang Ryu [Mon, 13 Mar 2023 02:09:27 +0000 (11:09 +0900)]
Fix naming typo of code
Change-Id: Idc914d5726e99528808f2bc7f02cd88c3c674d9c
Daekwang Ryu [Mon, 13 Mar 2023 01:36:55 +0000 (10:36 +0900)]
Fix typos
Change-Id: I8414df196c668d51fbe917d8adf5f6e8e0d46822
Woochan Lee [Fri, 17 Feb 2023 04:15:45 +0000 (13:15 +0900)]
Introduce EVENT_WINDOW_IDLE event
It support device idle point to user.
user can use this event instead of waiting ramdom time for ui update.
Change-Id: I72b24ff39b7613484c75280583ce2c41dceddc9b
Woochan Lee [Fri, 24 Feb 2023 09:38:02 +0000 (18:38 +0900)]
libaurum: core quality improvement
Remove unnecessary flag, remove multiple loop statements.
Change-Id: I6a0a97ceaa8f592f0252ed6c778db30c97a30162
Hosang Kim [Wed, 22 Feb 2023 06:28:26 +0000 (15:28 +0900)]
aurum: change parameter type for improving performance
Change-Id: Ic9a55f1fcbffee7d2979397915e43312d2530f26
Hosang Kim [Tue, 21 Feb 2023 04:41:45 +0000 (13:41 +0900)]
AurumXML: refactoring AurumXML for improving performance
Change-Id: I0bc48392281b479457956e6a73ed64ebe9115e23
Hosang Kim [Wed, 15 Feb 2023 05:57:26 +0000 (14:57 +0900)]
libaurum: add call_once when UiDevice is created for thread safety.
UiDevice is singleton object so thread safety is necessary.
Change-Id: I1233fd768ae2e2f57d53fd069167195c965e57e9
Hosang Kim [Wed, 8 Feb 2023 06:11:34 +0000 (15:11 +0900)]
AurumXML: apply method of creating node partially.
Change-Id: I5c1d7658cb03b3d427546616268324c79ad3994e
Woochan Lee [Thu, 9 Feb 2023 06:12:20 +0000 (15:12 +0900)]
aurum-service: Fix Coverity issue
Resource leak waiter variable
Change-Id: Id97851569911914685d8145539f541c8dae470f1
Hosang Kim [Fri, 13 Jan 2023 05:00:19 +0000 (14:00 +0900)]
aurum: disable line coverage test
if aurum unittest is ready, it will be enabled.
Change-Id: I3a667d72c9c5f0cf55de239e257d49d9a5897cc4
Chihun Jeong [Thu, 12 Jan 2023 05:23:25 +0000 (14:23 +0900)]
Fix C# link in Aurum index page 2
Change-Id: I9406cee2ce61609838ba8580c638f8a24a92b8a1
Chihun Jeong [Thu, 12 Jan 2023 04:59:33 +0000 (13:59 +0900)]
Fix C# link in Aurum index page
Change-Id: Iaaa6a7a59b642674098c4b8e90910a50849bcb9f
Chihun Jeong [Mon, 9 Jan 2023 06:17:43 +0000 (15:17 +0900)]
Add CsharpGrpc Samples for Aurum Document
Change-Id: I8446e4672c80a13ffd13e899ac2b8346569ffbf7
Hosang Kim [Tue, 13 Dec 2022 11:59:08 +0000 (20:59 +0900)]
aurum: fix using new/delete instead of variable-sized array.
This reverts commit
0f2e8dac34da4f1e5c4d6d0a3537226dd9e99f10.
Change-Id: I39024c57526ce3d060d4744a18a013c9903588d3
Hosang Kim [Mon, 12 Dec 2022 09:04:11 +0000 (18:04 +0900)]
aurum: fix using calloc instead of variable-sized array.
C++ template doesn't support variable-sized array.
Change-Id: I57b3fd7e2a117ead55ac705b867144885433d938
Hosang Kim [Fri, 18 Nov 2022 07:29:47 +0000 (16:29 +0900)]
Aurum: fix build warning
Change-Id: Idaa792bea2791eb2828b430a408495e2dae17536
Hosang Kim [Mon, 5 Dec 2022 05:18:18 +0000 (14:18 +0900)]
aurum: add pages for documentation
Change-Id: I9f6c72567e93302aed0ff2065cf69a0fec22866e
Hosang Kim [Tue, 15 Nov 2022 08:45:58 +0000 (17:45 +0900)]
aurum: add example for node.js
Change-Id: I65ca116dda5cef012914f9e4d65c179207030f94
Hosang Kim [Fri, 21 Oct 2022 11:31:05 +0000 (20:31 +0900)]
Aurum: Introduce new atspi event callback system.
- usage :
1. callback function
bool deactive_cb(void *data, A11yEvent type, std::string pkg)
{
return false;
}
AccessibleWatcher::getInstance()->registerCallback(A11yEvent::EVENT_WINDOW_DEACTIVATE, &deactive_cb, nullptr);
2. lambda expression
AccessibleWatcher::getInstance()->registerCallback(A11yEvent::EVENT_WINDOW_ACTIVATE, [](void *data, A11yEvent type, std::string pkg) { return true; }, nullptr);
Change-Id: I1401e6d71c5579967ab7094a8b84545bb3ad3c4b
Chihun Jeong [Tue, 15 Nov 2022 02:44:31 +0000 (11:44 +0900)]
A11yEvent: Rename EVENT_WINDOW_CLOSE to EVENT_WINDOW_DESTROY
Change-Id: I9a2abcbdd15668931f054bdd2ceb2e8e505fd7fa
Hosang Kim [Wed, 2 Nov 2022 06:40:30 +0000 (15:40 +0900)]
aurum: make examples for guide
Change-Id: I045c6b6c720c57deb0922bf232fbf46ae5ff1a76
Hosang Kim [Wed, 26 Oct 2022 11:11:12 +0000 (20:11 +0900)]
aurum: add searching highlightable object
Change-Id: I2213133ba5f553298d7d4f1d057cb30a56525c21
WoochanLee [Fri, 21 Oct 2022 07:40:41 +0000 (16:40 +0900)]
Update README
Change-Id: I87d10708dc9eb7f84dce444faede9e5de6dee8aa
Hosang Kim [Fri, 14 Oct 2022 10:20:07 +0000 (19:20 +0900)]
AtspiAccessibleNode: change target object for atspi_accessible_get_toolkit_name.
atspi_accessible_get_toolkit_name is only working on root object.
Change-Id: I1b87b7f4e74cd8fbcfc7dd0063dd8e81aff4e402
Chihun Jeong [Wed, 5 Oct 2022 06:14:10 +0000 (15:14 +0900)]
libaurum: add packageName to actionAndWaitEvent command
Change-Id: I7d8e4699093ce98592fe6eab90e75a205a9c04d9
WoochanLee [Tue, 18 Oct 2022 06:38:15 +0000 (15:38 +0900)]
Update Opensource License for pugixml(MIT)
Change-Id: I4f804a49cb904b7dd74c8fa53a64d05114ce8bc2
WoochanLee [Fri, 14 Oct 2022 06:02:29 +0000 (15:02 +0900)]
aurum: Add sample script with util commands
utils.py supports below commands.
runCommand
checkSdb
getDeviceInfo
isAurumReady
displayStop
getStub
Change-Id: I673b7331b19222087f9be7563b718bff292546b6
WoochanLee [Wed, 12 Oct 2022 03:18:42 +0000 (12:18 +0900)]
aurum-service: fix coding rule
Change-Id: Ie2b7f48cfdfdbe653f3b308cee1658ed3db411e2
Hosang Kim [Fri, 29 Jul 2022 09:57:54 +0000 (18:57 +0900)]
aurum: add waiter for bootstrap
Change-Id: I6a0e682e817384e94d3265d375fc3b5815835d76
Chihun Jeong [Thu, 22 Sep 2022 02:06:25 +0000 (11:06 +0900)]
libaurum: add REPEAT to sendKey command
This command simulates repeat press of the given key.
How to use
Sends Right key every 100ms for a total of 2000ms:
stub.sendKey(ReqKey(type='XF86', actionType='REPEAT', XF86keyCode='Right', durationMs=2000, intervalMs=100))
Change-Id: I03ec7a8b79a28d6802fac5318a333e7ff5cbda59
WoochanLee [Wed, 21 Sep 2022 05:14:55 +0000 (14:14 +0900)]
aurum.proto: Changes case style to camel
Change-Id: If5755aced7b1df65f072c9db628f201489dd73dc
WoochanLee [Wed, 21 Sep 2022 04:33:58 +0000 (13:33 +0900)]
Revert "aurum: Add submodule(aurum-proto)"
This reverts commit
9339c7849141c96cbb6502eb82f3d38ee3c71bf5.
Change-Id: Id2fe8afa6a745a2c5c1a8e5874d6a1dd89bf4208
WoochanLee [Mon, 19 Sep 2022 11:18:03 +0000 (20:18 +0900)]
aurum: Add submodule(aurum-proto)
Change-Id: I54c033a8b886f49f70a7edab5ad083c374ad78f5
Wonsik Jung [Thu, 15 Sep 2022 05:51:16 +0000 (14:51 +0900)]
Fix Svace Issue
Fix Svace issue that is WID:
49252874.
WID:
49252874 Constructor declared at UiSelector.cc:24 may not initialize class members of 'Aurum::UiSelector'. Following members aren't initialized: mGeometryIsEqual.
Change-Id: Id8342f0d1c3883e54089d227b6ac173715bf3c52
Chihun Jeong [Thu, 8 Sep 2022 05:07:59 +0000 (14:07 +0900)]
AurumXML: fix error AtspiAccessibleWatcher uses XMLDocMap before creation of XMLTree.
Change-Id: I3575692f7beeacf1315ac429ff939d1bb5f0c03b
Hosang Kim [Wed, 7 Sep 2022 10:14:53 +0000 (19:14 +0900)]
libaurum: add initializing variable
Change-Id: I9b39305d92ab109e820a13361d8d062ac511c148
Woochanlee [Wed, 7 Sep 2022 05:45:29 +0000 (14:45 +0900)]
libaurum: Fix check_after_deref
iter checked after refed.
Change-Id: I0f86fb95befb894c55fc67c89f35fb9b07ad0b22
Hosang Kim [Wed, 7 Sep 2022 05:29:27 +0000 (14:29 +0900)]
libaurum: change location of class member
Change-Id: I853b589dd31a93c66118179f6f469e962e96e23a
Woochanlee [Fri, 2 Sep 2022 05:36:01 +0000 (14:36 +0900)]
libaurum: Gets pid from window node instead of it's parent.
Some of the temporarily activated node has no parent.
Change-Id: Id2cbb4f6bf79a96d751d5019cafc7f911eb9425f
Hosang Kim [Tue, 30 Aug 2022 07:16:54 +0000 (16:16 +0900)]
libaurum: fix build error
Change-Id: I06f461e410bd7c0742b63b15c8b8a4cb95f5f4e9
Hosang Kim [Mon, 29 Aug 2022 09:16:02 +0000 (18:16 +0900)]
aurum: Add interface for searching objects by geometry.
Change-Id: I144af89209892cefa640ddb4e85e5c013dcf536b
Woochanlee [Fri, 26 Aug 2022 06:35:31 +0000 (15:35 +0900)]
Make bootstrap as preloaded app to get appdebugging privilege
bootstrap works debug IP on emulator.
So it needs appdebug privilege.
Change-Id: I74fc29e25fe54532730297125390b032a0f2f6b7
Chihun Jeong [Wed, 24 Aug 2022 07:20:26 +0000 (16:20 +0900)]
Introduce getTextMinBoundingRect command
Change-Id: I3a7679b6dddd2126e8cfefdad4428700a5f8f5d5
Woochanlee [Thu, 4 Aug 2022 10:18:35 +0000 (19:18 +0900)]
Introduce Intelligent Ui Automation thorough Screen Analyzer
+libaurum: Change name ElementType -> Type
+libaurum: efl_util API resource protection with mutex
+ScreenAnalyzer: Add mqtt_enabled option for build with or without mosquitto lib
ScreenAnalyzer Enable build command : gbs build -A armv7l --define "mqtt 1" --include-all
+ScreenAnlayzer: Add SetServerIP for user can choose server
ScreenAnalyzer: Code re-arrange and fix warning
ScreenAnalyzer: Add commands for GSA with specific features (FR15, FR13, FR14, FR8)
ScreenAnalyzer: Add command to get application toolkit info (FR3, FR1)
ScreenAnalyzer: Use secvideo_capture API instead of efl_util's for performance (NFR2)
ScreenAnalyzer: Add IObject interface then implement in Node, UiObject, SaObject (FR10, FR6, FR11)
ScreenAnalyzer: Gets focused app Id and check the atspi window activated or not (FR10)
ScreenAnalyzer: Support Ui-Analzyer (FR12)
ScreenAnalyzer: Support compatibility Atspi with Screen Analyzer in command (FR9)
ScreenAnalyzer: Add functions for request ScreenAnalyzer (FR4)
ScreenAnalyzer: Gets UI information from Screen Analyzer and parse it to saobject (FR4, FR5, FR7, FR8)
ScreenAnalyzer: Check the extenal application state at runtime (FR3)
ScreenAnalyzer: Introduce object class for screen analayzer (FR5)
Change-Id: I4f75f61f93985b6ad9a1fe172ddff0882697ad30
Hosang Kim [Fri, 29 Jul 2022 07:47:25 +0000 (16:47 +0900)]
AccessibleNode: initialize pid
Change-Id: I4fbbbf6c6ef3d47845ccd12d8e8ef3ef14dd0a3c
Woochanlee [Fri, 22 Jul 2022 04:20:27 +0000 (13:20 +0900)]
libaurum: Get window info from window system
We uesed to atspi window event to search target window.
It can't support multi window situation and something wrong state has window as well.
Change-Id: I0a3f61104402332fb6d8feb74e13d11323cc8401
Hosang Kim [Thu, 21 Jul 2022 06:33:09 +0000 (15:33 +0900)]
libaurum: change delay time between key down and key up
Change-Id: I83afa617dd23f917fb57b21726173b33a7a55513
Hosang Kim [Thu, 21 Jul 2022 05:10:21 +0000 (14:10 +0900)]
libaurum: check nullptr with rawHandler
Change-Id: I5a64588645bbd0357b6f8fb2269ea8281443eb33
Hosang Kim [Wed, 6 Jul 2022 11:32:59 +0000 (20:32 +0900)]
AtspiWrapper: add get_process_id API
Change-Id: I97d2eda3745aabfa6c941108815d15e28b12fa99
Woochanlee [Thu, 30 Jun 2022 06:12:17 +0000 (15:12 +0900)]
Delete requirement packages version
Change-Id: Ia1bcfd5b8f6ca7614d60977087d8dba63e948973
Hosang Kim [Thu, 30 Jun 2022 06:45:55 +0000 (15:45 +0900)]
bootstrap: fix crash when element id is invalid
Change-Id: Ie39e166be8ee5fa2ae770d655a2337fc55737494
Hosang Kim [Thu, 23 Jun 2022 10:03:56 +0000 (19:03 +0900)]
Comparer: fix depth start at 1
Change-Id: Id5013a7d0a6746c5f3fe3939deea026df0b16c1c
Woochanlee [Thu, 26 May 2022 09:07:00 +0000 (18:07 +0900)]
aurum-service: app_context destroy after use
Change-Id: Id920bf95e1f0bb6448822ad4fab92865fbb0907d
Hosang Kim [Fri, 10 Jun 2022 05:47:00 +0000 (14:47 +0900)]
AccessibleNode: fix return value for setValue
Change-Id: Ib82f74c691fb830617b85ac469df9df251a01c2e
Hosang Kim [Wed, 18 May 2022 11:51:57 +0000 (20:51 +0900)]
libaurum: Introduce new value commands
-get minimum value
-get maximum value
-get current value
-get minimum increment
-set current value
Change-Id: I82fd2b4b9066cdaa7645ee3418db39876aaf5a75
Hosang Kim [Wed, 18 May 2022 12:03:02 +0000 (21:03 +0900)]
UiSelector: fix build warning
Change-Id: I5dec5b361ba7fb6c9ceda2f1cec27cc58e4e8c91
Hosang Kim [Wed, 18 May 2022 08:41:30 +0000 (17:41 +0900)]
pugixml: fix build error
Change-Id: Ic512488e2f21aa926d226bb044f7d7d9cfe5382d
Woochanlee [Wed, 22 Jun 2022 11:05:37 +0000 (20:05 +0900)]
aurum-service: remove unnecessary list tracking to search object.
Change-Id: I4db9f82dc8a046196f7c958047b442034f6d1baa
Hosang Kim [Wed, 15 Jun 2022 05:27:47 +0000 (14:27 +0900)]
libaurum: apply quick search when isShowing is on.
Change-Id: Ic945b77b7f48f09d890e1743f12ad5ad78a37163
Hosang Kim [Tue, 26 Apr 2022 07:30:51 +0000 (16:30 +0900)]
Aurum: check package name is empty or not when XMLDocMap is created
Change-Id: I07e71e4324b680169aa57344dec399108e5bfd2a
Hosang Kim [Thu, 12 May 2022 10:01:20 +0000 (19:01 +0900)]
libaurum: fix memory leak in takeScreenshot
Change-Id: I0d98b8c1f665c94585b0e657774f04ee48fd69fa
Hosang Kim [Thu, 14 Apr 2022 11:28:41 +0000 (20:28 +0900)]
AurumXML: apply early return and update XMLTree when findObjects function is called
Change-Id: Id1843e0490f2b13faf8e09b38222e7783f647203
Hosang Kim [Tue, 12 Apr 2022 05:53:02 +0000 (14:53 +0900)]
Introduce a new FindElements command
Change-Id: I80e554ac877dd391437f583a44f7184f8df305d4
Woochanlee [Wed, 13 Apr 2022 10:21:53 +0000 (19:21 +0900)]
libaurum: Support focus skipped window
Some of VD application want to use Aurum on focus skipped window such as volume, tv-viewer
Change-Id: Ic2377d30930fb13cee3e4abcd73c8395a91b46cb
Hosang Kim [Fri, 1 Apr 2022 11:24:16 +0000 (20:24 +0900)]
aurum: add focus type for ActionAndWaitEvent
Change-Id: Ifccab29c1a47fa3843b1231604b4dd492e7c83c2
Hosang Kim [Fri, 1 Apr 2022 08:27:56 +0000 (17:27 +0900)]
Comparer: add condition for searching object with XPath.
Change-Id: Id327cc2ce7173559d4a01df5108a86e49af3042f
Hosang Kim [Fri, 1 Apr 2022 08:27:04 +0000 (17:27 +0900)]
AurumXML: add findObjects API for searching objects with XPath
Change-Id: I26a6b44136ce3ac3ed666884437511cab17c9c0a
Hosang Kim [Fri, 1 Apr 2022 08:22:03 +0000 (17:22 +0900)]
aurum: add XPath interface to search object in object tree
Change-Id: I92e6fd2d0e62ff65634e5e81ee7ae57557017d68
Hosang Kim [Thu, 31 Mar 2022 09:12:40 +0000 (18:12 +0900)]
aurum: add getXPath method
Change-Id: Icaa35e6d9b9d66f16183d6104ad981fff816e5db
Hosang Kim [Mon, 7 Mar 2022 14:46:38 +0000 (23:46 +0900)]
libaurum: add XML document map for parsing XML.
Change-Id: I86319b2f4a4f5350997395feaab548908e7b599f
Hosang Kim [Mon, 7 Mar 2022 14:26:49 +0000 (23:26 +0900)]
libaurum: add updateXPath
Change-Id: I61a2f9b89e2d50a8936ba17f67605f82824a93b4
Hosang Kim [Mon, 7 Mar 2022 07:27:04 +0000 (16:27 +0900)]
AurumXML: introduce a new class for parsing XML.
Change-Id: Ifd1431428dc900f363735ac56a70e18d71d9df5e
Hosang Kim [Fri, 18 Feb 2022 08:27:54 +0000 (17:27 +0900)]
pugixml: : add library for parsing XML
Change-Id: I42ed57edda846a15e182b053b548ce4f4367b44a
Hosang Kim [Thu, 17 Mar 2022 10:59:30 +0000 (19:59 +0900)]
aurum: add nodejs test sample for tv
Change-Id: I648dff347fcd9c12ae81110a1fbc76befb1b2de8
Hosang Kim [Thu, 17 Mar 2022 08:52:07 +0000 (17:52 +0900)]
libaurum: add set cache mask API for caching AtspiAccessible.
Change-Id: I909731bb8cfbd5bf7ff3dc7984ad85aa705728f9
Hosang Kim [Mon, 14 Feb 2022 05:26:54 +0000 (14:26 +0900)]
bootstrap: add set_status for SetFocusCommand
Change-Id: I17fcd823ce100b4e2a0595bcbca15452d019ce70
Woochanlee [Mon, 14 Mar 2022 10:40:20 +0000 (19:40 +0900)]
libaurum: Set role name as type for object that don't have type
This patch for EFL app list item doesn't have type.
Change-Id: I42f1fa0c9c8628df60eeae352b65bcef8b099e3e
Woochanlee [Mon, 14 Mar 2022 10:02:09 +0000 (19:02 +0900)]
libaurum: Change text matching way to avoid use regex
regex can't search text which has '('
Change-Id: I7ca10cb75ba77753e0c0d215b91799d53d429cad
Hosang Kim [Thu, 10 Feb 2022 10:51:49 +0000 (19:51 +0900)]
AtspiAccessibleWatcher: use thread context instead of default context.
Change-Id: I71c3800360bcdb2fe7adb4f875587fb34d312f75
Hosang Kim [Thu, 10 Feb 2022 06:09:30 +0000 (15:09 +0900)]
libaurum: install private header files.
Change-Id: I8d2259b284b2d1c5bdb1ec26a4e66ebeaefc5f0b
Signed-off-by: Hosang Kim <hosang12.kim@samsung.com>
Woochanlee [Thu, 10 Feb 2022 08:38:25 +0000 (17:38 +0900)]
libaurum: Introduce setFocus command
This command can sets focus to specific ui object.
sample usage : ret = stub.setFocus(ReqSetFocus(elementId="ID"))
Change-Id: I3d4fbe61620dabc2b5e309f65d6963a97a58e473
Woochanlee [Mon, 7 Feb 2022 11:10:09 +0000 (20:10 +0900)]
bootstrap: Fix resource leak issue in InstallAppCommand
pkgRequest alloc in create and it has to free before end of function scope.
Change-Id: I753fcf1f9c3c911daa3ae108220f38fa22160dcd
Woochanlee [Mon, 7 Feb 2022 09:30:29 +0000 (18:30 +0900)]
Update README
Add known issue
Change-Id: I60c2cce814536365729b7bb43ba576721b91a884
Hosang Kim [Thu, 6 Jan 2022 08:43:08 +0000 (17:43 +0900)]
bootstrap: fix logic error
Element id value should be compared instead of automation id.
Change-Id: I2f69f62e9f477b9a11cd0c774cb1f912ed3fec68
Hosang Kim [Mon, 24 Jan 2022 09:17:40 +0000 (18:17 +0900)]
atspi: change deprecated API
- change atspi_accessible_get_editable_text to
atspi_accessible_get_editable_text_iface
- call g_object_unref when it is finished using iface.
Change-Id: If66f8226d31bbe473c08ba093cad1d91fa7e3b63
Hosang Kim [Wed, 19 Jan 2022 08:52:12 +0000 (17:52 +0900)]
aurum: fix return value for setValue API
Sometimes we need to check whether it is successful or not.
Change-Id: Ie1fb3fd2fa6f6a6db51407af704a28a0c80791e7
Woochanlee [Tue, 28 Dec 2021 10:52:49 +0000 (19:52 +0900)]
aurum: Introduce ActionAndWaitEvent feature
Do user request action and wait A11y event. such as window activate, focus changed.
Change-Id: I84534b11bceaad2e1fbcc7e3805bac18e34cfe75
Woochanlee [Mon, 20 Dec 2021 12:00:04 +0000 (21:00 +0900)]
aurum-service: Add textPartialMatch interface to search part of text in full text
There was a constraint that the entire text must match.
It is a function that improves usability through interface expansion.
Change-Id: I8b4b996aa4d3a3badbe118c2fee44892a74a830a
Woochanlee [Tue, 23 Nov 2021 07:38:51 +0000 (16:38 +0900)]
libaurum: Fix Can't find object when combined multiple conditions on efl app
Change-Id: I7b73c97a412f11e53547500ba9fa1a371e498e19
Woochanlee [Mon, 8 Nov 2021 04:16:23 +0000 (13:16 +0900)]
Aurum Version 1.0.0 release
Change-Id: I1d242ba5fe90c5edd69461889272ace99c9470ef
Hosang Kim [Mon, 8 Nov 2021 04:45:30 +0000 (13:45 +0900)]
implement getscreensize feature
Change-Id: I83baf89a7003424b800ca68aa5ec51e8e7e97f09
Woochanlee [Mon, 8 Nov 2021 06:17:34 +0000 (15:17 +0900)]
bootstrap: Delete wrong colons
Change-Id: Ica97e195731de19db169f4a10efc3a0a3834ceb6
Woochanlee [Thu, 4 Nov 2021 11:20:05 +0000 (20:20 +0900)]
libaurum: Fix released tizen version as 6.5
aurum 1.0 will release since tizen 6.5.
Change-Id: I3509c94d5849f5c1682f2c2e3f9d302b9f5a26a4
Woochanlee [Mon, 18 Oct 2021 07:28:04 +0000 (16:28 +0900)]
aurum: Use Aurum namespace
This is for prepare Aurum 1.0 version release.
namespaces - Aurum for public classes
AurumInternal for internal headers such as atspi, impl classes
AurumInternal::Mock for Mock wrapper.
We will add more namespace if we added other back-end instead of ATSPI,
or other Node type needed.
Change-Id: Ia47ff40387d322e3e0932b3b0cda45b0d4a5f19a
Woochanlee [Thu, 21 Oct 2021 08:26:04 +0000 (17:26 +0900)]
libaurum: Add doc for Public classes
It includes performance improve feature.
- Using the unique_ptr variable, the phenomenon of continuous
memory reference occured is that it has improved performance
through a variable static declaration.
Change-Id: I1f3a42c73136e9c0e9843b1a13e31eb7f19994f7
Woochanlee [Mon, 25 Oct 2021 10:37:43 +0000 (19:37 +0900)]
libaurum: Add doc for Accessible, AtspiAccessible classes
Change-Id: I3ddc06de57dea697a2a522c6750beeed6b576e08
Woochanlee [Wed, 20 Oct 2021 06:49:30 +0000 (15:49 +0900)]
libaurum: Add doc for Object(Node) classes
Change-Id: I6c2272926e6b3f2e0faa5bfc613170af37f66586