From c5b28cc28ada7bea4fe22234f830e3ea2eedd336 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Timoth=C3=A9e=20Couble?= <timothee.couble@kitware.com>
Date: Thu, 2 Mar 2023 11:11:57 +0100
Subject: [PATCH 1/3] [refact] Order source by alphebetical order

---
 Application/vvSources.xml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/Application/vvSources.xml b/Application/vvSources.xml
index 166114ec1..0f4b35d73 100644
--- a/Application/vvSources.xml
+++ b/Application/vvSources.xml
@@ -1,8 +1,5 @@
 <!-- list of Sources copy past from paraview -->
 <ParaViewSources>
-  <Proxy group="sources" name="GlyphSource2D" />
-  <Proxy group="sources" name="VectorText" />
-  <Proxy group="sources" name="TimeToTextConvertorSource" />
   <Proxy group="sources" name="ArrowSource" />
   <Proxy group="sources" name="Axes" />
   <Proxy group="sources" name="CubeSource" />
@@ -10,18 +7,21 @@
   <Proxy group="sources" name="CylinderSource" />
   <Proxy group="sources" name="DataObjectGenerator" />
   <Proxy group="sources" name="DiskSource" />
+  <Proxy group="sources" name="GlyphSource2D" />
   <Proxy group="sources" name="HierarchicalFractal" />
-  <Proxy group="sources" name="LineSource" />
   <Proxy group="sources" name="ImageMandelbrotSource" />
+  <Proxy group="sources" name="LineSource" />
   <Proxy group="sources" name="OutlineSource" />
   <Proxy group="sources" name="PlaneSource" />
   <Proxy group="sources" name="PointSource" />
   <Proxy group="sources" name="ProgrammableSource" />
+  <Proxy group="sources" name="RTAnalyticSource" />
+  <Proxy group="sources" name="Ruler" />
   <Proxy group="sources" name="SphereSource" />
   <Proxy group="sources" name="SplineSource" />
   <Proxy group="sources" name="SuperquadricSource" />
   <Proxy group="sources" name="TextSource" />
+  <Proxy group="sources" name="TimeToTextConvertorSource" />
   <Proxy group="sources" name="TimeSource" />
-  <Proxy group="sources" name="Ruler" />
-  <Proxy group="sources" name="RTAnalyticSource" />
+  <Proxy group="sources" name="VectorText" />
 </ParaViewSources>
-- 
GitLab


From 38fae5ad8570f0a781d8ce424908c4d4f4b07317 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Timoth=C3=A9e=20Couble?= <timothee.couble@kitware.com>
Date: Thu, 2 Mar 2023 11:14:17 +0100
Subject: [PATCH 2/3] [refact] Rename vvFilters and vvSource with lidarview
 prefix lq

---
 Application/CMakeLists.txt                   | 4 ++--
 Application/{vvFilters.xml => lqFilters.xml} | 0
 Application/{vvSources.xml => lqSources.xml} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename Application/{vvFilters.xml => lqFilters.xml} (100%)
 rename Application/{vvSources.xml => lqSources.xml} (100%)

diff --git a/Application/CMakeLists.txt b/Application/CMakeLists.txt
index a171d7894..936d6ef5c 100644
--- a/Application/CMakeLists.txt
+++ b/Application/CMakeLists.txt
@@ -48,8 +48,8 @@ paraview_client_add(
   MAIN_WINDOW_INCLUDE vvMainWindow.h
   SOURCES ${source_files}
   APPLICATION_XMLS
-    ${CMAKE_CURRENT_SOURCE_DIR}/vvSources.xml
-    ${CMAKE_CURRENT_SOURCE_DIR}/vvFilters.xml
+    ${CMAKE_CURRENT_SOURCE_DIR}/lqSources.xml
+    ${CMAKE_CURRENT_SOURCE_DIR}/lqFilters.xml
   
   RUNTIME_DESTINATION ${LV_INSTALL_RUNTIME_DIR}
   LIBRARY_DESTINATION ${LV_INSTALL_LIBRARY_DIR}
diff --git a/Application/vvFilters.xml b/Application/lqFilters.xml
similarity index 100%
rename from Application/vvFilters.xml
rename to Application/lqFilters.xml
diff --git a/Application/vvSources.xml b/Application/lqSources.xml
similarity index 100%
rename from Application/vvSources.xml
rename to Application/lqSources.xml
-- 
GitLab


From bb3f5ae564e507d77a0c5539171909e249023a92 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Timoth=C3=A9e=20Couble?= <timothee.couble@kitware.com>
Date: Thu, 2 Mar 2023 11:15:14 +0100
Subject: [PATCH 3/3] [feat] Make logo source available in LidarView ui

---
 Application/lqSources.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Application/lqSources.xml b/Application/lqSources.xml
index 0f4b35d73..59c5c793a 100644
--- a/Application/lqSources.xml
+++ b/Application/lqSources.xml
@@ -11,6 +11,7 @@
   <Proxy group="sources" name="HierarchicalFractal" />
   <Proxy group="sources" name="ImageMandelbrotSource" />
   <Proxy group="sources" name="LineSource" />
+  <Proxy group="sources" name="LogoSource" />
   <Proxy group="sources" name="OutlineSource" />
   <Proxy group="sources" name="PlaneSource" />
   <Proxy group="sources" name="PointSource" />
-- 
GitLab