Doyoun Kang [Thu, 15 Jul 2021 09:10:46 +0000 (18:10 +0900)]
Package version up to 1.3.21
Change-Id: Ic9baa32fb4fd3887ae52feac4d440d04c5f3dfff
Doyoun Kang [Thu, 15 Jul 2021 08:47:36 +0000 (17:47 +0900)]
tizen_policy: add requests for setting transient_for_below/parent_with_below
We add requests as below in tizen_policy.
- set_transient_for_below
- set_parent_with_below
These requests make relationship between windows as a parent and a child.
And the child is always under the parent.
This is different from set_transient_for and set_parent.
Change-Id: Ic5166d6364b45457e29ac8828319d0ba15eba380
Gwanglim Lee [Thu, 1 Jul 2021 07:03:18 +0000 (16:03 +0900)]
tizen-hwc: fixed dereference after null issue
Change-Id: I57ad8b0ae7e2c67ba4193744f08e40e802b1080f
SooChan Lim [Fri, 25 Jun 2021 02:58:39 +0000 (11:58 +0900)]
Package version up to 1.3.20
Change-Id: I0caa33e10c0f8f2974ed6bccee8a8bfaed4db7c0
SooChan Lim [Tue, 22 Jun 2021 05:47:21 +0000 (14:47 +0900)]
tizen-hwc: remove the commit_feedback request
This request generates the tizen_hwc_commit_feedback function.
This name of the function is the same as the interface name of
tizen_hwc_commit_feedback. It makes the build warning because the
function name and the resource type name are the same.
use create_commit_feedback instead of commit_feedback
Change-Id: I948de82c808801fb97350e1a7e1b86e5834d79d8
SooChan Lim [Mon, 7 Jun 2021 03:04:47 +0000 (12:04 +0900)]
tizen-hwc: add create_commit_feedback request
This request will be used instead of commit_feedback request.
The commit_feedback request generates the tizen_commit_feedback function
code. This tizen_commit_feedback function symbol is the same as interface
name, which is tizen_hwc_commit_feedback. So this commit make them have
different name each other.
The commit_feedback request will be removed later.
Change-Id: I22da00d88c7627fbeba46fb79fcb38f77568a950
Seunghun Lee [Fri, 28 May 2021 06:37:17 +0000 (15:37 +0900)]
Package version up to 1.3.19
Change-Id: I2dc2347a77a519db93c0fcce2fe134ee63b17553
Seunghun Lee [Mon, 24 May 2021 09:17:46 +0000 (18:17 +0900)]
wtz-foreign: Remove events for destination/transform_changed
There is no point in providing these events for now.
Let us provide it if it becomes necessary, or if specific use case is
discovered.
Change-Id: I48d8c7d139af70e4023cb41395aed7d7b9586407
Seunghun Lee [Wed, 21 Apr 2021 09:28:55 +0000 (18:28 +0900)]
Package version up to 1.3.18
Change-Id: Ib7259b771890aafbab594e3c108c562a75321661
Seunghun Lee [Fri, 19 Feb 2021 02:19:22 +0000 (11:19 +0900)]
Introduce wtz-foreign protocol
wtz-foreign is a protocol meant to enable sharing wayland resources
between wayland clients. The only resource that clients are now able to
share with this protocol is a foreign shell. And the protocol may be
able to be extended in the future for sharing various resources.
The use case for foreign shell is out-of-process video playing surface.
For that, it provides a way to export and import a foreign shell.
Video playing application may export foreign shell with passing its
sub-surface, creating a handle for the foreign shell.
The handle, in form of a unique string, may be shared in some way with
other clients (for example, D-Bus) which can then import the foreign
shell with passing its surface. This gives the surface the role of a
foreign shell surface.
In this way, each client has a object. Which are named
wtz_exported_shell and wtz_foreign_shell.
The exporter may manipulate destination, transform, and position with
wl_subsurface and wtz_exported_shell interface.
The importer may attach and commit buffer with wl_surface without
care of its destination, transform, and position.
So final view by compositor will be determined by this combination.
Besides, the exporter may change the state of foreign shell along with
the changes of parent surface in an atomic manner using sub-surface
given when creating exported foreign shell.
Change-Id: I51ed03bcbe7740763895f09802ea249c061cef12
Seunghun Lee [Wed, 21 Apr 2021 09:11:19 +0000 (18:11 +0900)]
Revert "Introduce wtz-foreign protocol"
This reverts commit
633414048f1482f81de142778ac0d72825abd72d.
The foreign "surface" concept has been abandoned, instead the foreign
"shell" concept will be adopted in the following patch.
The reason behind this is requirement by developers of multimedia that
it'd be hard to apply it to multimedia implementation with foreign
"surface" concept.
Change-Id: Id19240a36f3f5838f07f42837eb06beeebc1602e
Seunghun Lee [Wed, 31 Mar 2021 05:25:28 +0000 (14:25 +0900)]
Package version up to 1.3.17
Change-Id: I76c79685143e6108fccf72690c7f61e8ac5cd9c9
Seunghun Lee [Fri, 19 Feb 2021 02:19:22 +0000 (11:19 +0900)]
Introduce wtz-foreign protocol
wtz-foreign is a protocol meant to enable sharing wayland resources
between wayland clients.
For now, it provides a way to export and import a pure wl_surface.
(here 'pure' means that this wl_surface doesn't have any role.)
That is, this gives wl_surface a exported surface role.
The representative use case for exported surface is out-of-process video
playing surface.
For that, multimedia client may export its wl_surface, creating a handle
for the exported surface. The handle, in form of a unique string, may be
shared in some way with other clients (for example, D-Bus) which can
then import the exported surface with a sub-surface as a proxy.
In this way, the client will be able to manipulate an exported surface
like a sub-surface. In other words, this exported surface will be stay
glued to given sub-surface like sub-surface to its parent.
Once a client imports a exported surface, the client may change the
attributes, such as geometry or map state, of exported surface with an
object(wtz_imported_surface) created by importing a surface.
Moreover, all this changes can be applied along with the changes of
parent surface in an atomic manner using sub-surface given when creating
imported surface. See wl_subsurface.set_sync for more detail to apply
changes in an atomic manner.
But note that using exported surface can put compositor at a
disadvantage for zero-copy video presentation path, because compositor
may supposed to scale up/down exported surface without hardware support.
Hopefully, any resources required to be shared between clients in the
future can be added into this protocol.
Change-Id: I742a1d70930bb3202fd705256c65c189f47fb889
InHong Han [Thu, 25 Mar 2021 02:41:37 +0000 (11:41 +0900)]
package version up to 1.3.16
Change-Id: Id2a2ca4eb6734cb0e68719ed5ef2bf37b823a945
InHong Han [Tue, 23 Mar 2021 07:27:39 +0000 (16:27 +0900)]
inputmethod: Moved the requests related to floating IME
Modified to deliver floating IME requests by ISF
Change-Id: Ie0ff60781ca4b0a20f37373cfa9036ccc72c7193
jeon [Wed, 30 Dec 2020 03:28:13 +0000 (12:28 +0900)]
tizen_input_device_manager: add a request to set touch count
Change-Id: Icf94a0d1c8ff8e616fbb703424159314dd30601b
jeon [Tue, 22 Dec 2020 09:56:02 +0000 (18:56 +0900)]
tizen_input_device_manager: add event to send touch max slot count
Change-Id: Ifc7ec0d55e5405c9164d63c01c36e0c5c9fad413
Doyoun Kang [Thu, 19 Nov 2020 07:40:08 +0000 (16:40 +0900)]
package version up to 1.3.15
Change-Id: I23ed3e3e3a1893f5d79ce102cf0510ce71a40498
Doyoun Kang [Thu, 19 Nov 2020 07:07:13 +0000 (16:07 +0900)]
tizen_policy: add show/hide request
Change-Id: I09be651f7a183b23136ab45e4e70b730761a12bc
InHong Han [Wed, 11 Nov 2020 05:07:46 +0000 (14:07 +0900)]
package version up to 1.3.14
Change-Id: I35747f5045d57ec1c86c1ee9b1fa5c6fe993d9a5
Ji-hoon Lee [Tue, 28 Apr 2020 12:30:26 +0000 (21:30 +0900)]
inputmethod: Add degree information in show input panel event
Change-Id: I2b6da8aa3c9d9734a040ccd07b4eaadab52b2537
Jihoon Kim [Thu, 5 Nov 2020 05:09:24 +0000 (14:09 +0900)]
package version up to 1.3.13
Change-Id: I3647a927e639c8e46216131f7885b5ae621b49c4
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
Jihoon Kim [Wed, 4 Nov 2020 08:21:48 +0000 (17:21 +0900)]
input_method_manager: Add interface to support grouping for option window
Change-Id: Ia42de0620658b7bb19ddbe15cd755e3f128a7057
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
Junseok, Kim [Fri, 28 Aug 2020 03:10:41 +0000 (12:10 +0900)]
tizen-policy-ext: add tizen-policy-ext protocol into wayland-extension
Change-Id: I50afb3838cef5df1dcaefe58379b023e9716d3b4
Signed-off-by: Junseok, Kim <juns.kim@samsung.com>
InHong Han [Wed, 29 Jul 2020 10:42:39 +0000 (19:42 +0900)]
package version up to 1.3.12
Change-Id: I326fcc9413afe9b654f305685e2133d8788bc54f
InHong Han [Wed, 29 Jul 2020 10:41:40 +0000 (19:41 +0900)]
text, inputmethod: Add input_panel_enabled protocol
Change-Id: Ib49d09ce2e82e3001609c3fcb4f0a4a5f8d73b0b
Changyeon Lee [Fri, 10 Jul 2020 02:56:53 +0000 (11:56 +0900)]
package version up to 1.3.11
Change-Id: Idc1a016c0d347a757976204857e97e3793b8e435
Changyeon Lee [Mon, 8 Jun 2020 04:18:09 +0000 (13:18 +0900)]
add tizen_renderer protocol
Change-Id: I99232ed0edddf4de6eeb4366225d32b891b327a2
Seunghun Lee [Tue, 12 May 2020 04:15:31 +0000 (13:15 +0900)]
Revert "tizen_video: Add prototype protocol for Video & UI synchronization."
This reverts commit
05bf38fe313da7c4066baf6c2c38a78093108bf8.
The design for synchronization was changed.
Change-Id: Iea9b3e5da5e4afd549ad1ad965d298a7a9fda979
Sung-Jin Park [Tue, 16 Jun 2020 01:36:11 +0000 (10:36 +0900)]
Packaging: update version to 1.3.10
Change-Id: I9bde2c1c3ce13622ff22a68c7106dbab7cd23340
Signed-off-by: Sung-Jin Park <sj76.park@samsung.com>
Sung-Jin Park [Tue, 16 Jun 2020 01:26:32 +0000 (10:26 +0900)]
fullscreen-shell: fix typos (capabilty->capability, seperate->separate)
Change-Id: I431b23b987a7e6e17829e42be448b8496ad0efe7
Signed-off-by: Sung-Jin Park <sj76.park@samsung.com>
Sung-Jin Park [Mon, 15 Jun 2020 08:04:41 +0000 (17:04 +0900)]
Packaging: update version to 1.3.9
Change-Id: Ib52c28c4c3444860ae03a91f309c82949bdd8c17
Signed-off-by: Sung-Jin Park <sj76.park@samsung.com>
Sung-Jin Park [Mon, 15 Jun 2020 07:37:40 +0000 (16:37 +0900)]
tizen protocols: install protocol xml files
As of now, only stable/unstable xml files are being installed. With this
change, protocol xml files of tizen protocols will also be installed.
Change-Id: Ic122b9e50d1cd379ff8439b0f2b8bfb0be0ac609
Signed-off-by: Sung-Jin Park <sj76.park@samsung.com>
SooChan Lim [Mon, 18 May 2020 06:52:47 +0000 (15:52 +0900)]
Packaging: update version to 1.3.8
Change-Id: I6ab36ba2c5b7ca04c148cee736e53e57a8e533b0
SooChan Lim [Mon, 18 May 2020 09:15:29 +0000 (18:15 +0900)]
unittests: initialize the member variable at creator
The private variable should be initialized.
Change-Id: I0a14f513774fa2831eef8cc834d8a7871baa03d3
SooChan Lim [Mon, 18 May 2020 08:17:31 +0000 (17:17 +0900)]
unittests: add tizen-tizen-protocol.c file at unittests build script.
Change-Id: Iaa7de8dd91d0d7c28677bd2d27009c82b84ca6ff
SooChan Lim [Thu, 14 May 2020 07:49:22 +0000 (16:49 +0900)]
unittests: add the tc-tizen-hwc
The tc-tizen-hwc has a test for tizen_hwc_commit_feedback request.
Change-Id: Ie2573c7451880b15405007032a87e6e1cd5558e7
SooChan Lim [Thu, 14 May 2020 07:38:25 +0000 (16:38 +0900)]
unittests: add a MockClient creator with a registry_listener
Change-Id: I1fb26cced4a9032fd5cced0ae8a36580fb6adcae
SooChan Lim [Thu, 14 May 2020 07:36:31 +0000 (16:36 +0900)]
unittests: make a MockCompositor creator with global interface parameter
Change-Id: If48c588569e5668d7e18356351538e2c2eacdb88
SooChan Lim [Thu, 14 May 2020 00:05:51 +0000 (09:05 +0900)]
unittests: make the destructors be the virtual functions
Change-Id: I6e0a2a1c19189aa06532e7c0053ea831ed5f1411
SooChan Lim [Wed, 13 May 2020 10:43:54 +0000 (19:43 +0900)]
change the tizen-hwc protocol
The tizen_hwc interface has the commit_feedback request and
tizen_hwc_commit_feedback interface instead of the commit request.
The tizen_hwc_commit_feedback interface can get the hwc committed/discarded events.
Change-Id: I5514c674bd59fdeb9b0aae57dd6bc7be4de1de5f
SooChan Lim [Wed, 13 May 2020 10:43:13 +0000 (19:43 +0900)]
add vscode at .gitignore
Change-Id: I8fde338769a9ab6bda7847d5c758e608167798f7
SooChan Lim [Tue, 28 Apr 2020 04:53:52 +0000 (13:53 +0900)]
make the unittests binary at top_srcdir
The unittests has to build after generating the protocol.
In order that, remove the unittests/Makefile.am.
Change-Id: I3f0948520eb8db936c21db04bf65badf138fa5e1
SooChan Lim [Mon, 27 Apr 2020 08:49:15 +0000 (17:49 +0900)]
add mockcompositor and mockclient
This is initial version for mockcompositor and mockclient.
The mockcompsitor process the clients' events in every some milliseconds.
The mockclient has only RoundTrip method right now.
Change-Id: I5395a55863a919535f376ca24cc0b3b750ca0554
SooChan Lim [Mon, 20 Apr 2020 04:41:48 +0000 (13:41 +0900)]
add unittests for the wayland-extension
The wayland-extension has the unittests package using GTest.
Change-Id: I37437cf8b419f31ef071c778ff5617ffe61a162c
SooChan Lim [Wed, 25 Mar 2020 04:51:06 +0000 (13:51 +0900)]
tizen_hwc: add tizen_hwc protocol
add the tizen_hwc_commit request.
The display server has to wl_callback done event after
it excute the hwc_commit request.
Change-Id: I936b8ee022d1fb1d031b27205c10c387769360b3
Seunghun Lee [Thu, 12 Mar 2020 10:03:06 +0000 (19:03 +0900)]
tizen_video: Add prototype protocol for Video & UI synchronization.
Change-Id: Icabd42bb1af95304038f6b74c02be799399d3b1c
jeon [Thu, 27 Feb 2020 08:05:55 +0000 (17:05 +0900)]
tizen-remote-surface: add a key_cancel to transfer event type
Change-Id: I53ede385ec149a14e33773a06c94e3f6c8caa57f
InHong Han [Wed, 8 Jan 2020 10:16:41 +0000 (19:16 +0900)]
Packaging: update version to 1.3.7
Change-Id: I051a63fefc3c90cfc1f78106ca9c8fd768df1ec6
InHong Han [Wed, 8 Jan 2020 01:44:50 +0000 (10:44 +0900)]
inputmethod: Add destroy protocol
Change-Id: Ia6664eb68ac78f998dd2bfbcedf76acd01d6082f
Gwanglim Lee [Tue, 17 Dec 2019 05:07:46 +0000 (14:07 +0900)]
Packaging: update version to 1.3.6
Change-Id: I3f5de75e74d8d7a744fc426d31e6898cf8cfc2be
Gwanglim Lee [Tue, 17 Dec 2019 05:07:24 +0000 (14:07 +0900)]
Provided development files for linux-explicit-synchronization unstable version 1 protocol
Change-Id: I7fe59086e9c7f792e3de362a210afe0f54c12619
lsj119 [Thu, 12 Dec 2019 01:48:49 +0000 (10:48 +0900)]
Packaging update version to 1.3.5
Change-Id: I607e891d99ac9ab4d73d2bd70f2843b07aec9d14
Gwanglim Lee [Thu, 12 Dec 2019 01:51:17 +0000 (10:51 +0900)]
merged with wayland-protocols 1.18
Change-Id: I59a4d34a98e774101b06e4d9211103501d677bbd
Changyeon Lee [Wed, 27 Nov 2019 07:44:11 +0000 (16:44 +0900)]
Packaging: update version to 1.3.4
Change-Id: Ic675dcef9867419ce9fa11068ecdca535bcc2ea7
Changyeon Lee [Tue, 22 Oct 2019 06:53:45 +0000 (15:53 +0900)]
build presentation_time protocol
Change-Id: I205439f9a9f56925ae3f136ee1f21d0037ad6fd1
Junkyeong Kim [Mon, 11 Nov 2019 07:22:03 +0000 (16:22 +0900)]
Packaging: update version to 1.3.3
Change-Id: I28f122241f911c19aaa61433627320c5264dc6b3
Signed-off-by: Junkyeong Kim <jk0430.kim@samsung.com>
Junkyeong Kim [Wed, 6 Nov 2019 07:20:05 +0000 (16:20 +0900)]
tizen-dpms: add get_state event
send get_state event if client request dpms_get.
Change-Id: Ibc4f668b1d4080944636e0e11caa52219dc22b24
Signed-off-by: Junkyeong Kim <jk0430.kim@samsung.com>
MinJeong Kim [Wed, 6 Nov 2019 06:19:37 +0000 (15:19 +0900)]
Packaging: update version to 1.3.2
Change-Id: Idcdf9c90dc8b3a07e94b50f310c795a1f6da20c9
Signed-off-by: MinJeong Kim <minjjj.kim@samsung.com>
MinJeong Kim [Sun, 27 Oct 2019 23:39:13 +0000 (08:39 +0900)]
tizen_launch: added new requests for managing appinfo based on appid
Change-Id: If60fcc9b96179d76c5e42343bbea130cffd128e5
Signed-off-by: MinJeong Kim <minjjj.kim@samsung.com>
MinJeong Kim [Mon, 7 Oct 2019 10:09:42 +0000 (19:09 +0900)]
Packaging: update version to 1.3.1
Change-Id: I58fd8fa36266780537e6e67248e3cbb8e10ac69f
Signed-off-by: MinJeong Kim <minjjj.kim@samsung.com>
MinJeong Kim [Wed, 2 Oct 2019 01:56:48 +0000 (10:56 +0900)]
tizen-policy : added set_appid request
Change-Id: I87175a793a89ad2e672f5bc0078d61b949e36729
Signed-off-by: MinJeong Kim <minjjj.kim@samsung.com>
MinJeong Kim [Tue, 1 Oct 2019 06:28:32 +0000 (15:28 +0900)]
tizen-launch: added launch_v2 request to splash interface
Change-Id: I5156b56f9495fcb3d52c28d099a133ff0f0d76d3
Signed-off-by: MinJeong Kim <minjjj.kim@samsung.com>
Gwanglim Lee [Mon, 7 Oct 2019 04:39:48 +0000 (13:39 +0900)]
Packaging: update version to 1.3.0
Change-Id: I1f88a8fd62f1605929d80276220c66a5b002a585
Gwanglim Lee [Thu, 18 Jul 2019 05:04:08 +0000 (14:04 +0900)]
examples: added missing release of previous buffer in a handler of buffer changed event
Change-Id: If15869a368cb883ecc8e03ea0fbc73fc5ff8eea1
Gwanglim Lee [Mon, 3 Jun 2019 08:01:04 +0000 (17:01 +0900)]
Packaging: update version to 1.2.11
Change-Id: I18053eb1264528e565328bb66bdebc43fa1d14aa
jeon [Mon, 25 Feb 2019 05:44:23 +0000 (14:44 +0900)]
tizen-extension: add a generate_axis event request to input generator
- input generator can generate wheel and touch axis events
using this protocol
Change-Id: I94cf8a78f607b9f3375453027c65ef6b733e40dd
Gwanglim Lee [Mon, 13 May 2019 08:45:52 +0000 (17:45 +0900)]
examples: fixed a build error while linking ecore-wl2
Change-Id: I7a0e9227a5a976906da358dac27f8807ae395458
SooChan Lim [Tue, 7 May 2019 07:12:41 +0000 (16:12 +0900)]
Packaging: update version to 1.2.10
Change-Id: If4b4b584e2a2d7bdcdd3c635ad74656fa44033cd
Junkyeong Kim [Wed, 24 Apr 2019 07:59:29 +0000 (16:59 +0900)]
add tizen_dpms interface
Change-Id: I95353bf8425e557827829d1d036245b82dfc4d89
Signed-off-by: Junkyeong Kim <jk0430.kim@samsung.com>
SooChan Lim [Wed, 24 Apr 2019 02:14:51 +0000 (11:14 +0900)]
Packaging: update version to 1.2.9
Change-Id: I329bc868b641cb53384bb942f1d28f9e2e6e0915
SooChan Lim [Mon, 22 Apr 2019 11:47:57 +0000 (20:47 +0900)]
add tizen_launch_appinfo interface
The tizen_launch_appinfo interface set/get the information
associated with the application pid.
Change-Id: I0be31af6e05d731698abf4120549b0acf9129670
Gwanglim Lee [Fri, 12 Apr 2019 09:37:25 +0000 (18:37 +0900)]
Packaging: update version to 1.2.8
Change-Id: Ib3651b755e2ec09e18b9b8c72a31f37ca0a23d49
MinJeong Kim [Wed, 10 Apr 2019 05:23:09 +0000 (14:23 +0900)]
tizen-remote-surface: added new requests to tizen_remote_surface_manager and version up to 6
- tizen_remote_surface_manager@create_surface_with_wl_surface is added.
- tizen_remote_surface_manager interface version up to 6
- example code block is added to tzrs-consumer.c
Change-Id: Iaca4a7568818f362f73c6afcd3ca7a76a4c3e71a
Inhong Han [Tue, 12 Mar 2019 01:16:57 +0000 (10:16 +0900)]
Packaging: update version to 1.2.7
Change-Id: I963f28d5c826bef309f42521d39adfceceb5965f
Inhong Han [Fri, 22 Feb 2019 05:31:11 +0000 (14:31 +0900)]
text, inputmethod: Add keycode parameter in the filter_key protocol
Change-Id: Ic8b267599d21b006ea0387ae7dc02a7beb6fcf2b
Gwanglim Lee [Tue, 29 Jan 2019 01:27:12 +0000 (10:27 +0900)]
Packaging: update version to 1.2.6
Change-Id: I1574a297dcbe7c61d4cd3edfd68c0deceacde17e
Gwanglim Lee [Mon, 14 Jan 2019 11:47:05 +0000 (20:47 +0900)]
examples: modifed remote surface example to release image object when receiving missing event
Change-Id: Id50dab1b5dc0de02f758aa957a2401b907c6e8d7
Gwanglim Lee [Thu, 10 Jan 2019 12:16:46 +0000 (21:16 +0900)]
added examples for tizen-remote-surface
Change-Id: Ib9510c3a4ff37f4046e2fcdf2d08d8db9607e2c1
Xuelian Bai [Fri, 26 Oct 2018 13:13:34 +0000 (21:13 +0800)]
Merge wayland-protocols 1.16 from freedesktop
Change-Id: I1ccc0c04accfcf6351b0058e77b4376464471474
Juyeon Lee [Mon, 10 Sep 2018 11:48:08 +0000 (20:48 +0900)]
Packaging: update version to 1.2.5
Change-Id: I4a9aca802458db7eb3ff5b3d673b28857878aff3
Juyeon Lee [Wed, 11 Jul 2018 10:47:29 +0000 (19:47 +0900)]
tizen-extension: modify tizen_move_resize iface
add geometry_done event
add request arguments for set_geometry
Change-Id: I8827d04931877ebc2feedced74390fea8b4c02f3
InHong Han [Wed, 22 Aug 2018 01:19:51 +0000 (10:19 +0900)]
Packaging: update version to 1.2.4
Change-Id: I75dc178a497f674d34e2560517c61814ed74d09f
InHong Han [Tue, 21 Aug 2018 02:32:11 +0000 (11:32 +0900)]
input-method: Add reshow_input_panel protocol
Change-Id: I7cb20076e85ff01d3fdad0b669ae393b77887534
Juyeon Lee [Wed, 20 Jun 2018 08:27:44 +0000 (17:27 +0900)]
fix build break
Change-Id: Iaa218b0abb82d61bc82c93ab166a3a63c29ef2e4
Juyeon Lee [Wed, 20 Jun 2018 07:29:22 +0000 (16:29 +0900)]
tizen-extension: add tizen_move_resize iface
added tizen_move_resize interface,
it has request for a wl_surface to move, resize at the same time
by passing x,y,w,h geometry params
Change-Id: I375390632170fc7b8c6d3a7e0800a0d9bf539eb8
Jihoon Kim [Mon, 18 Jun 2018 08:36:33 +0000 (17:36 +0900)]
Packaging: update version to 1.2.3
Change-Id: I7b694775d5445b3e88ebb0f214b8d5b8e4145e84
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
Jihoon Kim [Mon, 18 Jun 2018 08:36:01 +0000 (17:36 +0900)]
text: Remove security code enum in autofill type
Change-Id: I50c0e09873bf4d2fefcf6b459defb68e60c62631
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
Jihoon Kim [Thu, 19 Apr 2018 23:58:47 +0000 (08:58 +0900)]
Packaging: update version to 1.2.2
Change-Id: I74f79ea9076377d1019978cb96b3195a62d638de
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
InHong Han [Thu, 19 Apr 2018 11:39:40 +0000 (20:39 +0900)]
text: Add a enum name of preedit_style
Change-Id: Ia761e2dae4071a8dc3aff22c129078d2bb5d26af
JengHyun Kang [Fri, 13 Apr 2018 05:28:29 +0000 (14:28 +0900)]
Packaging: update version to 1.2.1
Change-Id: Ie833c3dfebe188d59d3e9f99773d296775f70c5c
JengHyun Kang [Mon, 2 Apr 2018 05:12:16 +0000 (14:12 +0900)]
tizen_keyrouter: add a new event to deliver event surface
Change-Id: Icd03c88b93642e34938f9ec3e93db38cf49a9974
Gwanglim Lee [Mon, 19 Mar 2018 07:28:50 +0000 (16:28 +0900)]
Packaging: update version to 1.2.0
Change-Id: If65a10699b5f2cf05712660a9d6bfa845153cf85
Gwanglim Lee [Fri, 9 Feb 2018 11:30:51 +0000 (20:30 +0900)]
changed xdg-shell unstable v5 to unstable directory from tizen
Change-Id: I76813a68849a6e013f953cf8a35ca3c349c8619e
Gwanglim Lee [Fri, 9 Feb 2018 11:22:36 +0000 (20:22 +0900)]
merged with wayland-protocols 1.12
added new protocols: xdg-shell stable v1, input-timestamps unstable v1
Change-Id: I7b5a8e3533a9ed4f7067b592e2b0c3ae0369e877
Gwanglim Lee [Tue, 6 Feb 2018 08:56:28 +0000 (17:56 +0900)]
Makefile.am: fixed path of tizen-surface
Change-Id: I6487a4ffc824d66ce16ec9818cbb8e6cdaf13db5
Gwanglim Lee [Wed, 25 Oct 2017 08:31:18 +0000 (17:31 +0900)]
added xdg-shell unstable v6 library and header files to wayland-extension pkg
Change-Id: Ia161d77f2610890a8c6f9dbc00a1cb442a450d6b
Gwanglim Lee [Wed, 25 Oct 2017 07:07:33 +0000 (16:07 +0900)]
configure.ac: updated comment for xdg-shell unstable v5
Change-Id: Icb0c38d748793830bc30230a51124924ea6e9add
Gwanglim Lee [Wed, 25 Oct 2017 02:54:32 +0000 (11:54 +0900)]
configure.ac: added missing wayland protocols version
Change-Id: I48ab5c1fac884bbd583e634cc506d339461fac9c
Gwanglim Lee [Tue, 24 Oct 2017 13:21:33 +0000 (22:21 +0900)]
merged with wayland-protocols 1.11
Change-Id: I3524a8b59ecf91da3cf841b38de5abf6767f9c8e