From e6d3c139b7bbf2e4cef6f123d964c901ec3aa28a Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Mon, 10 Jan 2022 14:43:02 +0900 Subject: [PATCH 01/16] input-method: Fix typo Change-Id: Ib49e944acc7cade58a908990824182a37773dbc9 Signed-off-by: Jihoon Kim --- protocol/tizen/input-method.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/protocol/tizen/input-method.xml b/protocol/tizen/input-method.xml index d227bb9..044948e 100644 --- a/protocol/tizen/input-method.xml +++ b/protocol/tizen/input-method.xml @@ -458,14 +458,14 @@ - Open socket connection to the ISF (Input Servcie Framework). + Open socket connection to the ISF (Input Service Framework). - Close socket connection to the ISF (Input Servcie Framework). + Close socket connection to the ISF (Input Service Framework). -- 2.7.4 From 67f5161dddb8ec95e0a3327f59782a1a0e359c07 Mon Sep 17 00:00:00 2001 From: InHong Han Date: Wed, 12 Jan 2022 17:25:05 +0900 Subject: [PATCH 02/16] input-method: Fix issue wayland proxy is not generated Change-Id: I19ebf09616d0f28e0775eecdadd57d5cf7c4aabd --- protocol/tizen/input-method.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol/tizen/input-method.xml b/protocol/tizen/input-method.xml index 044948e..e078568 100644 --- a/protocol/tizen/input-method.xml +++ b/protocol/tizen/input-method.xml @@ -460,7 +460,7 @@ Open socket connection to the ISF (Input Service Framework). - + -- 2.7.4 From 1a06346da7534972c99f9e787764b515fa7b4e22 Mon Sep 17 00:00:00 2001 From: InHong Han Date: Wed, 12 Jan 2022 17:26:29 +0900 Subject: [PATCH 03/16] Package version up to 1.3.26 Change-Id: I07a1b43f1a13c1ef4968266e112e5ab871b22101 --- packaging/wayland-extension.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/wayland-extension.spec b/packaging/wayland-extension.spec index f2f7fde..6b4135f 100644 --- a/packaging/wayland-extension.spec +++ b/packaging/wayland-extension.spec @@ -2,7 +2,7 @@ %define enable_examples 0 Name: wayland-extension -Version: 1.3.25 +Version: 1.3.26 Release: 0 Summary: Wayland extenstion protocols that add functionality not available in the Wayland core protocol License: MIT -- 2.7.4 From f332e37c3d99bf9dfaaedd2f0d150c355cf8ab8c Mon Sep 17 00:00:00 2001 From: SooChan Lim Date: Mon, 4 Apr 2022 11:50:11 +0900 Subject: [PATCH 04/16] fix 64bits build-error Change-Id: I90efd227d006c6c5816af01f46d441642de93099 --- configure.ac | 2 +- packaging/wayland-extension.spec | 4 ++-- src/tizen-remote-surface-client.pc.in | 2 +- src/tizen-remote-surface-server.pc.in | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 4161b6e..8538dec 100644 --- a/configure.ac +++ b/configure.ac @@ -90,7 +90,7 @@ fi PKG_CHECK_MODULES(GMOCK, gmock) GMOCK_CFLAGS="$GMOCK_CLAGS" GMOCK_LIBS="$GMOCK_LIBS" - +AC_SUBST(LIBDIR) AC_CONFIG_FILES([ Makefile src/wayland-extension-version.h diff --git a/packaging/wayland-extension.spec b/packaging/wayland-extension.spec index 6b4135f..54a9c7a 100644 --- a/packaging/wayland-extension.spec +++ b/packaging/wayland-extension.spec @@ -96,9 +96,9 @@ cp %{SOURCE1001} . export CFLAGS+=" -Wall -Werror" %if "%{enable_examples}" == "1" export CFLAGS+=" -DEFL_BETA_API_SUPPORT " - %reconfigure --disable-static --enable-build-examples + %reconfigure --disable-static --enable-build-examples LIBDIR=%{_libdir} %else - %reconfigure --disable-static + %reconfigure --disable-static LIBDIR=%{_libdir} %endif make %{?_smp_mflags} diff --git a/src/tizen-remote-surface-client.pc.in b/src/tizen-remote-surface-client.pc.in index 3ff4e0c..288bb4a 100644 --- a/src/tizen-remote-surface-client.pc.in +++ b/src/tizen-remote-surface-client.pc.in @@ -1,6 +1,6 @@ prefix=/usr exec_prefix=${prefix} -libdir=${exec_prefix}/lib +libdir=@LIBDIR@ includedir=${prefix}/include Name: tizen-remote-surface-client diff --git a/src/tizen-remote-surface-server.pc.in b/src/tizen-remote-surface-server.pc.in index 4d2d1d1..e27a9fe 100644 --- a/src/tizen-remote-surface-server.pc.in +++ b/src/tizen-remote-surface-server.pc.in @@ -1,6 +1,6 @@ prefix=/usr exec_prefix=${prefix} -libdir=${exec_prefix}/lib +libdir=@LIBDIR@ includedir=${prefix}/include Name: tizen-remote-surface-server -- 2.7.4 From d2108dd4c8fde337e434b3e582306e50860b87dc Mon Sep 17 00:00:00 2001 From: SooChan Lim Date: Mon, 4 Apr 2022 11:51:05 +0900 Subject: [PATCH 05/16] Package version up to 1.3.27 Change-Id: I7dc8d74321dd820654f5e42b64a98e34e3280c69 --- packaging/wayland-extension.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/wayland-extension.spec b/packaging/wayland-extension.spec index 54a9c7a..f5058ab 100644 --- a/packaging/wayland-extension.spec +++ b/packaging/wayland-extension.spec @@ -2,7 +2,7 @@ %define enable_examples 0 Name: wayland-extension -Version: 1.3.26 +Version: 1.3.27 Release: 0 Summary: Wayland extenstion protocols that add functionality not available in the Wayland core protocol License: MIT -- 2.7.4 From 0dfb2efb1e032d79cf35bcc54497ad2a9e35b768 Mon Sep 17 00:00:00 2001 From: Junseok Kim Date: Thu, 19 May 2022 18:26:35 +0900 Subject: [PATCH 06/16] screenshooter: added destroy request Change-Id: I41cf6b18102aea1c5e3d531d4ac4dcb2a2cf6403 --- protocol/tizen/screenshooter.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/protocol/tizen/screenshooter.xml b/protocol/tizen/screenshooter.xml index 76e3c85..0000b76 100644 --- a/protocol/tizen/screenshooter.xml +++ b/protocol/tizen/screenshooter.xml @@ -1,12 +1,14 @@ - + + + -- 2.7.4 From 73668e81816d9211e71262fb37ac14de49d40fcf Mon Sep 17 00:00:00 2001 From: Junseok Kim Date: Fri, 20 May 2022 10:37:51 +0900 Subject: [PATCH 07/16] Package version up to 1.3.28 Change-Id: I71529134eef13215e351b645420c574a9fde2ea9 --- packaging/wayland-extension.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/wayland-extension.spec b/packaging/wayland-extension.spec index f5058ab..6b0661d 100644 --- a/packaging/wayland-extension.spec +++ b/packaging/wayland-extension.spec @@ -2,7 +2,7 @@ %define enable_examples 0 Name: wayland-extension -Version: 1.3.27 +Version: 1.3.28 Release: 0 Summary: Wayland extenstion protocols that add functionality not available in the Wayland core protocol License: MIT -- 2.7.4 From 88a9e8ace6eea707c624c7c41dcb64e97e67cf0b Mon Sep 17 00:00:00 2001 From: Junkyeong Kim Date: Thu, 23 Jun 2022 20:50:21 +0900 Subject: [PATCH 08/16] tizen-extension: add tizen_screenshooter shoot request and done event change tizen_screenshooter and screenmirror interface version to 3. added request and event are same screenshooter interface. Change-Id: Ibff6c10c5e5bf314c1e1c3c7c1ccdfd6ef8d818e Signed-off-by: Junkyeong Kim --- protocol/tizen/tizen-extension.xml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/protocol/tizen/tizen-extension.xml b/protocol/tizen/tizen-extension.xml index 6c7114e..b58f98f 100644 --- a/protocol/tizen/tizen-extension.xml +++ b/protocol/tizen/tizen-extension.xml @@ -795,7 +795,7 @@ - + Clients can get a screenmirror object from this interface. @@ -837,9 +837,17 @@ + + + + + + + + - + A client can use this interface to get stream images of screen. Before starting, queue all buffers. Then, start a screenmirror. After starting, a dequeued event -- 2.7.4 From 9ddc97c2e73d22085284548c7ca38941a80b775d Mon Sep 17 00:00:00 2001 From: Junkyeong Kim Date: Thu, 23 Jun 2022 20:53:31 +0900 Subject: [PATCH 09/16] Package version up to 1.3.29 Change-Id: Iec042565d0622cf9f2fc96415cac71cc646b3627 Signed-off-by: Junkyeong Kim --- packaging/wayland-extension.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/wayland-extension.spec b/packaging/wayland-extension.spec index 6b0661d..92b2f9c 100644 --- a/packaging/wayland-extension.spec +++ b/packaging/wayland-extension.spec @@ -2,7 +2,7 @@ %define enable_examples 0 Name: wayland-extension -Version: 1.3.28 +Version: 1.3.29 Release: 0 Summary: Wayland extenstion protocols that add functionality not available in the Wayland core protocol License: MIT -- 2.7.4 From 1f435ad419b521f736fe3de6326496650790cb3a Mon Sep 17 00:00:00 2001 From: Doyoun Kang Date: Mon, 25 Jul 2022 16:16:13 +0900 Subject: [PATCH 10/16] tizen_policy: add new window type - desktop Change-Id: Iabbac839aa00ea9e94b3ca81a5d50275dd513c70 --- protocol/tizen/tizen-extension.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/protocol/tizen/tizen-extension.xml b/protocol/tizen/tizen-extension.xml index b58f98f..69cc10c 100644 --- a/protocol/tizen/tizen-extension.xml +++ b/protocol/tizen/tizen-extension.xml @@ -19,7 +19,7 @@ - + @@ -78,6 +78,7 @@ + -- 2.7.4 From e352fe1cdad18c4779b58170092717426bac2f88 Mon Sep 17 00:00:00 2001 From: Doyoun Kang Date: Mon, 25 Jul 2022 16:16:55 +0900 Subject: [PATCH 11/16] Package version up to 1.3.30 Change-Id: I8feacb90bb946594df90f6863a7938b4ec2f9bac --- packaging/wayland-extension.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/wayland-extension.spec b/packaging/wayland-extension.spec index 92b2f9c..2cc1021 100644 --- a/packaging/wayland-extension.spec +++ b/packaging/wayland-extension.spec @@ -2,7 +2,7 @@ %define enable_examples 0 Name: wayland-extension -Version: 1.3.29 +Version: 1.3.30 Release: 0 Summary: Wayland extenstion protocols that add functionality not available in the Wayland core protocol License: MIT -- 2.7.4 From c66ab795e7b71bba3dc3caf8eee79f20fcadf006 Mon Sep 17 00:00:00 2001 From: Doyoun Kang Date: Thu, 22 Sep 2022 13:48:09 +0900 Subject: [PATCH 12/16] tizen_policy: add new request - snap_window Change-Id: Ia33dd6da8a73a9dede7288111cbbcfb266126cb5 --- protocol/tizen/tizen-extension.xml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/protocol/tizen/tizen-extension.xml b/protocol/tizen/tizen-extension.xml index 69cc10c..ebacb2f 100644 --- a/protocol/tizen/tizen-extension.xml +++ b/protocol/tizen/tizen-extension.xml @@ -19,7 +19,7 @@ - + @@ -401,6 +401,22 @@ + + + + + + + + + + + + Snap the window to the location (such as the side of the screen) where you want it to be. + + + + -- 2.7.4 From bd2f8e0e6e278b85a4e6b171c8cc762d99d13ef9 Mon Sep 17 00:00:00 2001 From: Doyoun Kang Date: Thu, 22 Sep 2022 13:49:01 +0900 Subject: [PATCH 13/16] Package version up to 1.3.31 Change-Id: Id85f1f803f3b34bdd4f287eb576861d75d408212 --- packaging/wayland-extension.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/wayland-extension.spec b/packaging/wayland-extension.spec index 2cc1021..2b10601 100644 --- a/packaging/wayland-extension.spec +++ b/packaging/wayland-extension.spec @@ -2,7 +2,7 @@ %define enable_examples 0 Name: wayland-extension -Version: 1.3.30 +Version: 1.3.31 Release: 0 Summary: Wayland extenstion protocols that add functionality not available in the Wayland core protocol License: MIT -- 2.7.4 From 999afee5f20774d1c2ee5bbd9e9221c21597757b Mon Sep 17 00:00:00 2001 From: Doyoun Kang Date: Thu, 22 Sep 2022 17:26:52 +0900 Subject: [PATCH 14/16] tizen_policy: add information about type parameter of snap_window Change-Id: I9bcd036c02a13b55f0323c2ffca3725cd2bfb61c --- protocol/tizen/tizen-extension.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol/tizen/tizen-extension.xml b/protocol/tizen/tizen-extension.xml index ebacb2f..1fba8b1 100644 --- a/protocol/tizen/tizen-extension.xml +++ b/protocol/tizen/tizen-extension.xml @@ -415,7 +415,7 @@ Snap the window to the location (such as the side of the screen) where you want it to be. - + -- 2.7.4 From f554c779523d6bfd79442aec83f6c9c25fd78e50 Mon Sep 17 00:00:00 2001 From: Doyoun Kang Date: Fri, 23 Sep 2022 11:10:56 +0900 Subject: [PATCH 15/16] tizen_policy: add angle info for interactive_move/resize_done event Change-Id: I3df3fee27eb7b876e1a84d187a53e775e4fa013f --- protocol/tizen/tizen-extension.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/protocol/tizen/tizen-extension.xml b/protocol/tizen/tizen-extension.xml index 1fba8b1..79e0727 100644 --- a/protocol/tizen/tizen-extension.xml +++ b/protocol/tizen/tizen-extension.xml @@ -388,6 +388,7 @@ + @@ -400,6 +401,7 @@ + -- 2.7.4 From 9c8a677dff23c22cce784e627ce694e01f143bc6 Mon Sep 17 00:00:00 2001 From: Doyoun Kang Date: Fri, 23 Sep 2022 11:12:34 +0900 Subject: [PATCH 16/16] Package version up to 1.3.32 Change-Id: I195ac4e189495044f54cdadeea2c7a93da226dfc --- packaging/wayland-extension.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/wayland-extension.spec b/packaging/wayland-extension.spec index 2b10601..71f40f4 100644 --- a/packaging/wayland-extension.spec +++ b/packaging/wayland-extension.spec @@ -2,7 +2,7 @@ %define enable_examples 0 Name: wayland-extension -Version: 1.3.31 +Version: 1.3.32 Release: 0 Summary: Wayland extenstion protocols that add functionality not available in the Wayland core protocol License: MIT -- 2.7.4