Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package breeze5-icons for openSUSE:Factory 
checked in at 2022-12-12 17:37:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old)
 and      /work/SRC/openSUSE:Factory/.breeze5-icons.new.1835 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "breeze5-icons"

Mon Dec 12 17:37:35 2022 rev:87 rq:1042094 version:5.101.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes      
2022-11-15 13:16:56.399918426 +0100
+++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.1835/breeze5-icons.changes    
2022-12-12 17:37:37.200550637 +0100
@@ -1,0 +2,14 @@
+Tue Dec  6 20:10:18 UTC 2022 - Christophe Marin <[email protected]>
+
+- Update to 5.101.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.101.0
+- Changes since 5.100.0:
+  * Add kdesrc-build icons
+  * scalabletest "QString("" -> "QStringLiteral(""
+  * Add SimpleScreenRecorder icon (kde#412490)
+  * application-x-executable: make symbolic icon follow color scheme
+  * Add touchscreen icons to devices and preferences (kde#461562)
+
+-------------------------------------------------------------------

Old:
----
  breeze-icons-5.100.0.tar.xz
  breeze-icons-5.100.0.tar.xz.sig

New:
----
  breeze-icons-5.101.0.tar.xz
  breeze-icons-5.101.0.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ breeze5-icons.spec ++++++
--- /var/tmp/diff_new_pack.r4PUW6/_old  2022-12-12 17:37:38.004554693 +0100
+++ /var/tmp/diff_new_pack.r4PUW6/_new  2022-12-12 17:37:38.004554693 +0100
@@ -16,7 +16,7 @@
 #
 
 
-%define _tar_path 5.100
+%define _tar_path 5.101
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -24,11 +24,10 @@
 # Only needed for the package signature condition
 %bcond_without released
 Name:           breeze5-icons
-Version:        5.100.0
+Version:        5.101.0
 Release:        0
 Summary:        Breeze icon theme
 License:        LGPL-3.0-only
-Group:          System/GUI/KDE
 URL:            https://www.kde.org
 Source:         breeze-icons-%{version}.tar.xz
 %if %{with released}
@@ -50,7 +49,6 @@
 
 %package rcc
 Summary:        Breeze icon theme - rcc file
-Group:          System/GUI/KDE
 
 %description rcc
 Breeze-icons is a freedesktop.org compatible icon theme.

++++++ breeze-icons-5.100.0.tar.xz -> breeze-icons-5.101.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.100.0/CMakeLists.txt 
new/breeze-icons-5.101.0/CMakeLists.txt
--- old/breeze-icons-5.100.0/CMakeLists.txt     2022-11-05 13:22:30.000000000 
+0100
+++ new/breeze-icons-5.101.0/CMakeLists.txt     2022-12-03 10:41:39.000000000 
+0100
@@ -1,6 +1,6 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.100.0") # handled by release scripts
+set(KF_VERSION "5.101.0") # handled by release scripts
 project(BreezeIcons VERSION ${KF_VERSION})
 
 # Disallow in-source build
@@ -10,7 +10,7 @@
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.100.0  NO_MODULE)
+find_package(ECM 5.101.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.100.0/autotests/scalabletest.cpp 
new/breeze-icons-5.101.0/autotests/scalabletest.cpp
--- old/breeze-icons-5.100.0/autotests/scalabletest.cpp 2022-11-05 
13:22:30.000000000 +0100
+++ new/breeze-icons-5.101.0/autotests/scalabletest.cpp 2022-12-03 
10:41:39.000000000 +0100
@@ -68,12 +68,12 @@
         , size(cg.value("Size", 0).toInt())
         , contextString(cg.value("Context", QString()).toString())
         , context(parseContext(contextString))
-        , type(parseType(cg.value("Type", QString("Threshold")).toString()))
+        , type(parseType(cg.value("Type", 
QStringLiteral("Threshold")).toString()))
     {
         QVERIFY2(!contextString.isEmpty(),
-                 QString("Missing 'Context' key in file %1, config group 
'[%2]'").arg(cg.fileName(), cg.group()).toLatin1().constData());
+                 QStringLiteral("Missing 'Context' key in file %1, config 
group '[%2]'").arg(cg.fileName(), cg.group()).toLatin1().constData());
         QVERIFY2(context != -1,
-                 QString("Don't know how to handle 'Context=%1' in file %2, 
config group '[%3]'")
+                 QStringLiteral("Don't know how to handle 'Context=%1' in file 
%2, config group '[%3]'")
                      .arg(contextString, cg.fileName(), cg.group())
                      .toLatin1()
                      .constData());
@@ -132,7 +132,7 @@
     QList<QFileInfo> allIcons()
     {
         QList<QFileInfo> icons;
-        auto iconDir = QString("%1/%2").arg(themeDir).arg(path);
+        auto iconDir = QStringLiteral("%1/%2").arg(themeDir).arg(path);
         QDirIterator it(iconDir);
         while (it.hasNext()) {
             it.next();
@@ -182,8 +182,7 @@
             for (auto directoryPath : directoryPaths) {
                 config.beginGroup(directoryPath);
                 QVERIFY2(keys.contains(directoryPath + "/Size"),
-                         QString("The theme %1 has an entry 'Directories' 
which specifies '%2' as directory, but there's no"
-                                 " have no associated entry '%2/Size'")
+                         QStringLiteral("The theme %1 has an entry 
'Directories' which specifies '%2' as directory, but it has no associated entry 
'%2/Size'")
                              .arg(themeDir + "/index.theme", directoryPath)
                              .toLatin1()
                              .constData());
@@ -210,11 +209,12 @@
                 QVERIFY(!inheritedPaths.empty());
                 for (const auto& path : inheritedPaths) {
                     inheritedConfig.beginGroup(path);
-                    QVERIFY2(inheritedKeys.contains(path + "/Size"),
-                             QString("The theme %1 has an entry 'Directories' 
which specifies '%2' as directory, but has no associated entry '%2/Size'")
-                                 .arg(inheritedDir + "/index.theme", path)
-                                 .toLatin1()
-                                 .constData());
+                    QVERIFY2(
+                        inheritedKeys.contains(path + "/Size"),
+                        QStringLiteral("The theme %1 has an entry 
'Directories' which specifies '%2' as directory, but it has no associated entry 
'%2/Size'")
+                            .arg(inheritedDir + "/index.theme", path)
+                            .toLatin1()
+                            .constData());
                     auto dir = std::make_shared<Dir>(inheritedConfig, 
inheritedDir);
                     inheritedConfig.endGroup();
                     contextHash[dir->context].append(dir);
@@ -297,7 +297,7 @@
             return;
         }
         notScalableIcons.removeDuplicates();
-        QFAIL(QString("The following icons are not available in a scalable 
directory:\n  %1").arg(notScalableIcons.join("\n  ")).toLatin1().constData());
+        QFAIL(QStringLiteral("The following icons are not available in a 
scalable directory:\n  %1").arg(notScalableIcons.join("\n  
")).toLatin1().constData());
     }
 
     void test_scalableDuplicates_data()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.100.0/icons/apps/16/kdesrc-build.svg 
new/breeze-icons-5.101.0/icons/apps/16/kdesrc-build.svg
--- old/breeze-icons-5.100.0/icons/apps/16/kdesrc-build.svg     1970-01-01 
01:00:00.000000000 +0100
+++ new/breeze-icons-5.101.0/icons/apps/16/kdesrc-build.svg     2022-12-03 
10:41:39.000000000 +0100
@@ -0,0 +1,88 @@
+<svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg";>
+    <linearGradient id="a" x1="8" x2="8" y2="16" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#34495e" offset="0"/>
+        <stop stop-color="#391847" offset="1"/>
+    </linearGradient>
+    <linearGradient id="b" x1="8" x2="8" y1="11.6" y2="16" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#494d76" offset="0"/>
+        <stop stop-color="#552968" offset="1"/>
+    </linearGradient>
+    <linearGradient id="c" x1="3.99976" x2="3.63492" y1="5" y2="14.1916" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#538094" offset="0"/>
+        <stop stop-color="#136b2f" offset="1"/>
+    </linearGradient>
+    <linearGradient id="d" x1="2.8" x2="2.3756" y1="5" y2="14.1804" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#6599af" offset="0"/>
+        <stop stop-color="#1da848" offset="1"/>
+    </linearGradient>
+    <linearGradient id="e" x1="3.7998" x2="3.7998" y1="8.20007" y2="14.2001" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#2ecc71" offset="0"/>
+        <stop stop-color="#cef829" offset="1"/>
+    </linearGradient>
+    <linearGradient id="f" x1="3.80029" x2="3.80029" y1="9.80002" y2="14.2" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#84fe9f" offset="0"/>
+        <stop stop-color="#84fe9f" stop-opacity="0" offset="1"/>
+    </linearGradient>
+    <linearGradient id="g" x1="7.04737" x2="6.78863" y1="3" y2="14.194" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#537594" offset="0"/>
+        <stop stop-color="#11686d" offset="1"/>
+    </linearGradient>
+    <linearGradient id="h" x1="5.99976" x2="5.50155" y1="3.39998" y2="14.1769" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#5d8da8" offset="0"/>
+        <stop stop-color="#0e957d" offset="1"/>
+    </linearGradient>
+    <linearGradient id="i" x1="6.99976" x2="6.99976" y1="8.20002" y2="14.2" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#3daee9" offset="0"/>
+        <stop stop-color="#1cdc9a" offset="1"/>
+    </linearGradient>
+    <linearGradient id="j" x1="6.99976" x2="6.99976" y1="8.20002" y2="14.2" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#55def0" offset="0"/>
+        <stop stop-color="#55def0" stop-opacity="0" offset="1"/>
+    </linearGradient>
+    <linearGradient id="k" x1="6" x2="8" y1="3.5" y2="3.5" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#70a2b9" offset="0"/>
+        <stop stop-color="#507694" offset="1"/>
+    </linearGradient>
+    <linearGradient id="l" x1="11.0004" x2="11.062" y1="3.20007" y2="14.3997" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#537594" offset="0"/>
+        <stop stop-color="#9a265e" offset="1"/>
+    </linearGradient>
+    <linearGradient id="m" x1="9.50024" x2="9.50024" y1="2.79245" y2="14" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#7998be" stop-opacity=".8" offset="0"/>
+        <stop stop-color="#9265a2" offset=".5"/>
+        <stop stop-color="#622e2e" offset="1"/>
+    </linearGradient>
+    <linearGradient id="n" x1="10.9838" x2="10.9838" y1="10.4244" y2="13.5153" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#e74c3c" offset="0"/>
+        <stop stop-color="#da4453" offset=".5"/>
+        <stop stop-color="#9b59b6" offset="1"/>
+    </linearGradient>
+    <linearGradient id="o" x1="9.00004" x2="9.00004" y1="10.5244" y2="13.0002" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#fa8e6c" offset="0"/>
+        <stop stop-color="#fa8e6c" stop-opacity="0" offset="1"/>
+    </linearGradient>
+    <linearGradient id="p" x1="9.3999" x2="12.1999" y1="3.40007" y2="3.40007" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#99afd2" offset="0"/>
+        <stop stop-color="#6a87ab" offset="1"/>
+    </linearGradient>
+    <path d="m0 2c0-1.104569.895431-2 2-2h12c1.1046 0 2 .895431 2 2v12c0 
1.1046-.8954 2-2 2h-12c-1.104569 0-2-.8954-2-2z" fill="url(#a)"/>
+    <path d="m0 11h16v3c0 1.1045-.8954 2-2 2h-12c-1.104569 0-2-.8955-2-2z" 
fill="url(#b)"/>
+    <path d="m0 13v1c0 1.1046.895431 2 2 2h12c1.1046 0 2-.8954 2-2v-1c0 
1.1046-.8954 2-2 2h-12c-1.104569 0-2-.8954-2-2z" fill="#3f175a"/>
+    <path d="m0 3v-1c0-1.10457.895431-2.00000048 2-2.00000048h12c1.1046 0 2 
.89543148 2 2.00000048v1c0-1.10457-.8954-2-2-2h-12c-1.104569 0-2 .89543-2 2z" 
fill="#43566d"/>
+    <path d="m2 5h2.99995l-.00017 8c-.00001.5523-.44772 1-1 1-.55229 
0-1.00001-.4477-.99999-1l.00021-6z" fill="url(#c)"/>
+    <path d="m4.00024 5h-2.00024l1.00024.5v7.5c0 .5523.44772 1 1 1z" 
clip-rule="evenodd" fill="url(#d)" fill-rule="evenodd"/>
+    <path d="m3 10.0001c.62942-.31468 1.37064-.3148 2 0v2.9999c0 .5523-.44772 
1-1 1s-1-.4477-1-1z" fill="url(#e)"/>
+    <path d="m4.00034 9.76404c-.34265-.00002-.68531.07867-1.0001.23606l.00007 
2c.00002.5523.44774 1 1.00003 1z" clip-rule="evenodd" fill="url(#f)" 
fill-rule="evenodd"/>
+    <path d="m3 12v1c0 .5523.44772 1 1 1s1-.4477 1-1v-1c0 .5523-.44772 1-1 
1s-1-.4477-1-1z" fill="#99ad1d"/>
+    <path d="m6 3h2v10c0 .5523-.44772 1-1 1s-1-.4477-1-1z" fill="url(#g)"/>
+    <path d="m7.00022 4.99995-1-.49995-.00022 8.4997c-.00001.5525.4478 1.0003 
1.00022 1.0003z" clip-rule="evenodd" fill="url(#h)" fill-rule="evenodd"/>
+    <path d="m6 7.99988 2.00024.5-.00019 4.50002c-.00002.5523-.44774 1-1.00002 
1-.5523 0-1.00002-.4477-1.00002-1z" fill="url(#i)"/>
+    <path d="m6.99995 8.24988-1-.25-.00019 3.99972c-.00003.5524.44778 1.0003 
1.00019 1.0003z" fill="url(#j)"/>
+    <path d="m6 11.9999v1c0 .5523.44773 1 1.00002 1 .55228 0 1-.4477 
1.00002-1v-1c-.00002.5523-.44774 1-1.00002 1-.55229 0-1.00002-.4477-1.00002-1z" 
fill="#149b8b"/>
+    <path d="m5.5 3h3v1h-3z" fill="url(#k)"/>
+    <path d="m10.0002 3h2v4.50002l3 5.50008c0 
.5522-.4476.9999-.9999.9999h-6.00011c-.55225 
0-.99995-.4477-.99995-.9999l2.99996-5.50008z" fill="url(#l)"/>
+    <path d="m11.0002 5.00012-1.0002-.5.0002 2.9999-3.0002 5.50008h4z" 
clip-rule="evenodd" fill="url(#m)" fill-rule="evenodd"/>
+    <path d="m15.0002 13.0001-1.6363-3-5.00005.5-1.36385 2.5z" 
clip-rule="evenodd" fill="url(#n)" fill-rule="evenodd"/>
+    <path d="m11.0001 10.2366-2.63625.2636-1.36385 2.5h4z" fill="url(#o)"/>
+    <path d="m9.5 3h3v1h-3z" fill="url(#p)"/>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/breeze-icons-5.100.0/icons/apps/48/kdesrc-build.svg 
new/breeze-icons-5.101.0/icons/apps/48/kdesrc-build.svg
--- old/breeze-icons-5.100.0/icons/apps/48/kdesrc-build.svg     1970-01-01 
01:00:00.000000000 +0100
+++ new/breeze-icons-5.101.0/icons/apps/48/kdesrc-build.svg     2022-12-03 
10:41:39.000000000 +0100
@@ -0,0 +1,177 @@
+<svg fill="none" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink";>
+    <linearGradient id="a" x1="24" x2="24" y1="4" y2="44" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#34495e" offset="0"/>
+        <stop stop-color="#391847" offset="1"/>
+    </linearGradient>
+    <linearGradient id="b" x1="24" x2="24" y1="33" y2="44" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#494d76" offset="0"/>
+        <stop stop-color="#552968" offset="1"/>
+    </linearGradient>
+    <linearGradient id="c" x1="16.5" x2="20" y1="39" y2="45" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#2ecc71" offset="0"/>
+        <stop stop-color="#2ecc71" stop-opacity="0" offset="1"/>
+    </linearGradient>
+    <linearGradient id="d" x1="15" x2="14.0879" y1="17" y2="39.9789" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#538094" offset="0"/>
+        <stop stop-color="#136b2f" offset="1"/>
+    </linearGradient>
+    <linearGradient id="e" x1="12" x2="10.939" y1="17" y2="39.951" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#6599af" stop-opacity=".8" offset="0"/>
+        <stop stop-color="#1da848" offset="1"/>
+    </linearGradient>
+    <linearGradient id="f" x1="14.5" x2="14.5" y1="25" y2="40" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#2ecc71" offset="0"/>
+        <stop stop-color="#cef829" offset="1"/>
+    </linearGradient>
+    <linearGradient id="g">
+        <stop stop-color="#84fe9f" offset="0"/>
+        <stop stop-color="#84fe9f" stop-opacity="0" offset="1"/>
+    </linearGradient>
+    <linearGradient id="h" x1="14.5" x2="14.5" y1="29" y2="40" 
gradientUnits="userSpaceOnUse" xlink:href="#g"/>
+    <linearGradient id="i" x1="15.5" x2="15.5" y1="31" y2="32" 
gradientUnits="userSpaceOnUse" xlink:href="#g"/>
+    <linearGradient id="j" x1="15.5" x2="15.5" y1="24" y2="25" 
gradientUnits="userSpaceOnUse" xlink:href="#g"/>
+    <linearGradient id="k" x1="15.5" x2="15.5" y1="36" y2="37" 
gradientUnits="userSpaceOnUse" xlink:href="#g"/>
+    <linearGradient id="l" x1="14" x2="14" y1="33" y2="35" 
gradientUnits="userSpaceOnUse" xlink:href="#g"/>
+    <linearGradient id="m" x1="14" x2="14" y1="28" y2="30" 
gradientUnits="userSpaceOnUse" xlink:href="#g"/>
+    <linearGradient id="n" x1="23.5" x2="27" y1="36" y2="42" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#3daee9" offset="0"/>
+        <stop stop-color="#3daee9" stop-opacity="0" offset="1"/>
+    </linearGradient>
+    <linearGradient id="o" x1="21.619" x2="20.9722" y1="9" y2="36.985" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#537594" offset="0"/>
+        <stop stop-color="#11686d" offset="1"/>
+    </linearGradient>
+    <linearGradient id="p" x1="19" x2="17.7545" y1="10" y2="36.9424" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#5d8da8" stop-opacity=".8" offset="0"/>
+        <stop stop-color="#0e957d" offset="1"/>
+    </linearGradient>
+    <linearGradient id="q" x1="21.5" x2="21.5" y1="22" y2="37" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#3daee9" offset="0"/>
+        <stop stop-color="#1cdc9a" offset="1"/>
+    </linearGradient>
+    <linearGradient id="r">
+        <stop stop-color="#55def0" offset="0"/>
+        <stop stop-color="#55def0" stop-opacity="0" offset="1"/>
+    </linearGradient>
+    <linearGradient id="s" x1="21.5" x2="21.5" y1="22" y2="37" 
gradientUnits="userSpaceOnUse" xlink:href="#r"/>
+    <linearGradient id="t" x1="22.5" x2="22.5" y1="29" y2="30" 
gradientUnits="userSpaceOnUse" xlink:href="#r"/>
+    <linearGradient id="u" x1="20.5" x2="20.5" y1="31" y2="32" 
gradientUnits="userSpaceOnUse" xlink:href="#r"/>
+    <linearGradient id="v" x1="21" x2="21" y1="25" y2="27" 
gradientUnits="userSpaceOnUse" xlink:href="#r"/>
+    <linearGradient id="w" x1="22.5" x2="22.5" y1="22" y2="23" 
gradientUnits="userSpaceOnUse" xlink:href="#r"/>
+    <linearGradient id="x" x1="20.5" x2="20.5" y1="17" y2="18" 
gradientUnits="userSpaceOnUse" xlink:href="#r"/>
+    <linearGradient id="y" x1="18" x2="25" y1="9.5" y2="9.5" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#70a2b9" offset="0"/>
+        <stop stop-color="#507694" offset="1"/>
+    </linearGradient>
+    <linearGradient id="z" x1="29" x2="29.5" y1="39.5" y2="45" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#5e184e" offset="0"/>
+        <stop stop-color="#4f2265" stop-opacity="0" offset="1"/>
+    </linearGradient>
+    <linearGradient id="A" x1="29" x2="28.8459" y1="12" y2="39.9992" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#537594" offset="0"/>
+        <stop stop-color="#9a265e" offset="1"/>
+    </linearGradient>
+    <linearGradient id="B" x1="28.5" x2="28.5" y1="13" y2="40" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#7998be" stop-opacity=".8" offset="0"/>
+        <stop stop-color="#9265a2" offset=".5"/>
+        <stop stop-color="#622e2e" offset="1"/>
+    </linearGradient>
+    <linearGradient id="C" x1="28.4573" x2="28.4573" y1="30.3839" y2="41.9233" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#e74c3c" offset="0"/>
+        <stop stop-color="#da4453" offset=".5"/>
+        <stop stop-color="#9b59b6" offset="1"/>
+    </linearGradient>
+    <linearGradient id="D" x1="28.5" x2="28.5" y1="29.8623" y2="39" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#fa8e6c" offset="0"/>
+        <stop stop-color="#fa8e6c" stop-opacity="0" offset="1"/>
+    </linearGradient>
+    <linearGradient id="E" x1="21.8125" x2="21.8125" y1="27.4286" y2="31.5" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#31c0cb" offset="0"/>
+        <stop stop-color="#31c0cb" stop-opacity=".5" offset="1"/>
+    </linearGradient>
+    <linearGradient id="F" x1="22" x2="22" y1="35" y2="37" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#ff948a" offset="0"/>
+        <stop stop-color="#ff948a" stop-opacity="0" offset="1"/>
+    </linearGradient>
+    <linearGradient id="G">
+        <stop stop-color="#fea38a" offset="0"/>
+        <stop stop-color="#fea38a" stop-opacity="0" offset="1"/>
+    </linearGradient>
+    <linearGradient id="H" x1="21.5" x2="21.5" y1="33" y2="34" 
gradientUnits="userSpaceOnUse" xlink:href="#G"/>
+    <linearGradient id="I" x1="27.5" x2="27.5" y1="34" y2="35" 
gradientUnits="userSpaceOnUse" xlink:href="#G"/>
+    <linearGradient id="J" x1="30.5" x2="30.5" y1="32" y2="33" 
gradientUnits="userSpaceOnUse" xlink:href="#G"/>
+    <linearGradient id="K" x1="30.5" x2="30.5" y1="36" y2="37" 
gradientUnits="userSpaceOnUse" xlink:href="#G"/>
+    <linearGradient id="L" x1="35" x2="35" y1="35" y2="37" 
gradientUnits="userSpaceOnUse" xlink:href="#G"/>
+    <linearGradient id="M">
+        <stop stop-color="#fe8aa5" offset="0"/>
+        <stop stop-color="#fea38a" stop-opacity="0" offset="1"/>
+    </linearGradient>
+    <linearGradient id="N" x1="26.5" x2="26.5" y1="30" y2="31" 
gradientUnits="userSpaceOnUse" xlink:href="#M"/>
+    <linearGradient id="O" x1="27.5" x2="27.5" y1="26" y2="27" 
gradientUnits="userSpaceOnUse" xlink:href="#M"/>
+    <linearGradient id="P" x1="29.5" x2="29.5" y1="23" y2="24" 
gradientUnits="userSpaceOnUse" xlink:href="#M"/>
+    <linearGradient id="Q" x1="28.5" x2="28.5" y1="19" y2="20" 
gradientUnits="userSpaceOnUse" xlink:href="#M"/>
+    <linearGradient id="R" x1="23" x2="23" y1="30" y2="32" 
gradientUnits="userSpaceOnUse" xlink:href="#G"/>
+    <linearGradient id="S" x1="31.5" x2="31.5" y1="28" y2="31" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#fe8aa5" offset="0"/>
+        <stop stop-color="#e84d3d" stop-opacity="0" offset="1"/>
+    </linearGradient>
+    <linearGradient id="T">
+        <stop stop-color="#99afd3" offset="0"/>
+        <stop stop-color="#99afd3" stop-opacity="0" offset="1"/>
+    </linearGradient>
+    <linearGradient id="U" x1="30" x2="30" y1="11" y2="13" 
gradientUnits="userSpaceOnUse" xlink:href="#T"/>
+    <linearGradient id="V" x1="27.5" x2="27.5" y1="10" y2="13" 
gradientUnits="userSpaceOnUse" xlink:href="#T"/>
+    <linearGradient id="W" x1="25" x2="32" y1="12.5" y2="12.5" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#99afd2" offset="0"/>
+        <stop stop-color="#6a87ab" offset="1"/>
+    </linearGradient>
+    <path d="m4 8c0-2.20914 1.79086-4 4-4h32c2.2091 0 4 1.79086 4 4v32c0 
2.2091-1.7909 4-4 4h-32c-2.20914 0-4-1.7909-4-4z" fill="url(#a)"/>
+    <path d="m4 33h40v7c0 2.2091-1.7909 4-4 4h-32c-2.20914 0-4-1.7909-4-4z" 
fill="url(#b)"/>
+    <path d="m4 39v1c0 2.2091 1.79086 4 4 4h32c2.2091 0 4-1.7909 4-4v-1c0 
2.2091-1.7909 4-4 4h-32c-2.20914 0-4-1.7909-4-4z" fill="#3f175a"/>
+    <path d="m4 9v-1c0-2.20914 1.79086-4 4-4h32c2.2091 0 4 1.79086 4 
4v1c0-2.20914-1.7909-4-4-4h-32c-2.20914 0-4 1.79086-4 4z" fill="#43566d"/>
+    <path d="m16.46 43-3.73-3.73 2.27-2.27h1.54l6 6z" fill="url(#c)" 
opacity=".2"/>
+    <path d="m10 17h7v20.5c0 1.3807-1.1193 2.5-2.5 
2.5s-2.5-1.1193-2.5-2.5v-18z" fill="url(#d)"/>
+    <path d="m14 17h-4l2 1v19.5c0 1.2095.8589 2.2184 2 2.45z" 
clip-rule="evenodd" fill="url(#e)" fill-rule="evenodd"/>
+    <path d="m12 29c1.6503-.3301 3.3497-.3301 5 0v8.5c0 1.3807-1.1193 2.5-2.5 
2.5s-2.5-1.1193-2.5-2.5z" fill="url(#f)"/>
+    <path d="m12 29.0001c.6609-.1322 1.3297-.2115 
2-.2378v10.1877c-.7132-.1448-1.3162-.5932-1.6681-1.2044-.2111-.3667-.3319-.792-.3319-1.2456z"
 clip-rule="evenodd" fill="url(#h)" fill-rule="evenodd"/>
+    <path d="m12 36.5v1c0 1.3807 1.1193 2.5 2.5 2.5s2.5-1.1193 2.5-2.5v-1c0 
1.3807-1.1193 2.5-2.5 2.5s-2.5-1.1193-2.5-2.5z" fill="#c0d927"/>
+    <circle cx="15.5" cy="31.5" r=".5" fill="url(#i)"/>
+    <circle cx="15.5" cy="24.5" r=".5" fill="url(#j)" opacity=".3"/>
+    <circle cx="15.5" cy="36.5" r=".5" fill="url(#k)"/>
+    <circle cx="14" cy="34" r="1" fill="url(#l)"/>
+    <circle cx="14" cy="29" r="1" fill="url(#m)"/>
+    <path d="m26.46 43-6.73-6.73 2.27-2.27h1.54l9 9z" fill="url(#n)" 
opacity=".2"/>
+    <path d="m19 9h5v25.5c0 1.3807-1.1193 2.5-2.5 2.5s-2.5-1.1193-2.5-2.5z" 
fill="url(#o)"/>
+    <path d="m21 11-2-.5v24c0 1.2095.8589 2.2184 2 2.45z" clip-rule="evenodd" 
fill="url(#p)" fill-rule="evenodd"/>
+    <path d="m19 22.5 5 .5v11.5c0 1.3807-1.1193 2.5-2.5 
2.5s-2.5-1.1193-2.5-2.5z" fill="url(#q)"/>
+    <path d="m21 22.7-2-.2v11c0 .4535.1208.8789.3319 1.2456.3519.6112.9549 
1.0596 1.6681 1.2044z" fill="url(#s)"/>
+    <path d="m19 33.5v1c0 1.3807 1.1193 2.5 2.5 2.5s2.5-1.1193 2.5-2.5v-1c0 
1.3807-1.1193 2.5-2.5 2.5s-2.5-1.1193-2.5-2.5z" fill="#18c2ae"/>
+    <circle cx="22.5" cy="29.5" r=".5" fill="url(#t)"/>
+    <circle cx="20.5" cy="31.5" r=".5" fill="url(#u)"/>
+    <circle cx="21" cy="26" r="1" fill="url(#v)"/>
+    <circle cx="22.5" cy="22.5" r=".5" fill="url(#w)"/>
+    <circle cx="20.5" cy="17.5" r=".5" fill="url(#x)" opacity=".5"/>
+    <path d="m18 9h7v1h-7z" fill="url(#y)"/>
+    <path d="m18.29 39.71 20.71-2.71 4.2842 4.2842c-.7227 1.0371-1.9242 
1.7158-3.2841 1.7158h-18.4201z" fill="url(#z)"/>
+    <path d="m30.9999 12h-5v10.2859l-7.455 12.78c-.3569.6118-.5449 
1.3073-.5449 2.0155v1.9186c0 .5523.4477 1 1 1h19c.5523 0 1-.4477 
1-1v-1.9186c0-.7082-.188-1.4037-.5449-2.0155l-7.4552-12.7804z" 
clip-rule="evenodd" fill="url(#A)" fill-rule="evenodd"/>
+    <path d="m25.9999 13.5v8.7859l-7.455 12.78c-.3569.6118-.5449 1.3073-.5449 
2.0155v1.9186c0 .5523.4477 1 1 1h19c.5523 0 1-.4477 
1-1v-1.9186c0-.7082-.188-1.4037-.5449-2.0155l-7.4552-12.7804 7.0001 
14.7959v1.9186h-13l2-16.444v-8.556z" fill="url(#B)"/>
+    <path d="m20.625 31.5-2.0801 3.566c-.3569.6117-.5449 1.3073-.5449 
2.0155v1.9186c0 .5523.4477 1 1 1h19c.5523 0 1-.4477 
1-1v-1.9186c0-.7082-.188-1.4038-.5449-2.0155l-3.6551-6.266z" fill="url(#C)"/>
+    <path d="m18 38.0001v1c0 .5523.4477 1 1 1h19c.5523 0 1-.4477 1-1v-1c0 
.5523-.4477 1-1 1h-19c-.5523 0-1-.4477-1-1z" fill="#9f357b"/>
+    <path d="m34.1414 28.9254 3.6665 
7.7498c.1265.2674.1921.5596.1921.8554v.4694l-13 1 1.0376-8.531-5.4126 
1.031-2.0801 3.5658c-.3569.6118-.5449 1.3073-.5449 2.0155v.9187c0 .5523.4477 1 
1 
1h6l13.0108-.0001c.5473-.0057.9892-.4512.9892-.9999v-.9187c0-.7082-.188-1.4037-.5448-2.0154l-3.6552-6.266z"
 fill="url(#D)"/>
+    <path d="m24 30.86v-5.15l-3.375 5.79z" clip-rule="evenodd" fill="url(#E)" 
fill-rule="evenodd" opacity=".65"/>
+    <circle cx="22" cy="36" r="1" fill="url(#F)" opacity=".5"/>
+    <circle cx="21.5" cy="33.5" r=".5" fill="url(#H)"/>
+    <circle cx="27.5" cy="34.5" r=".5" fill="url(#I)" opacity=".5"/>
+    <circle cx="30.5" cy="32.5" r=".5" fill="url(#J)" opacity=".5"/>
+    <circle cx="30.5" cy="36.5" r=".5" fill="url(#K)" opacity=".5"/>
+    <circle cx="35" cy="36" r="1" fill="url(#L)" opacity=".5"/>
+    <circle cx="26.5" cy="30.5" r=".5" fill="url(#N)" opacity=".35"/>
+    <circle cx="27.5" cy="26.5" r=".5" fill="url(#O)"/>
+    <circle cx="29.5" cy="23.5" r=".5" fill="url(#P)" opacity=".5"/>
+    <circle cx="28.5" cy="19.5" r=".5" fill="url(#Q)" opacity=".2"/>
+    <circle cx="23" cy="31" r="1" fill="url(#R)"/>
+    <circle cx="31.5" cy="29.5" r="1.5" fill="url(#S)"/>
+    <circle cx="30" cy="12" r="1" fill="url(#U)" opacity=".35"/>
+    <circle cx="27.5" cy="11.5" r="1.5" fill="url(#V)" opacity=".35"/>
+    <path d="m25 12h7v1h-7z" fill="url(#W)"/>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.100.0/icons/apps/48/simplescreenrecorder.svg 
new/breeze-icons-5.101.0/icons/apps/48/simplescreenrecorder.svg
--- old/breeze-icons-5.100.0/icons/apps/48/simplescreenrecorder.svg     
1970-01-01 01:00:00.000000000 +0100
+++ new/breeze-icons-5.101.0/icons/apps/48/simplescreenrecorder.svg     
2022-12-03 10:41:39.000000000 +0100
@@ -0,0 +1,48 @@
+<svg fill="none" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg";>
+    <linearGradient id="a" x1="44" x2="4" y1="24" y2="24" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#192633" offset="0"/>
+        <stop stop-color="#45545b" offset=".25"/>
+        <stop stop-color="#617a91" offset=".5"/>
+        <stop stop-color="#586474" offset=".75"/>
+        <stop stop-color="#432f2f" offset="1"/>
+    </linearGradient>
+    <linearGradient id="b" x1="11" x2="36" y1="12" y2="37" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#230a0a" offset="0"/>
+        <stop stop-color="#2a1818" offset=".102629"/>
+        <stop stop-color="#476076" offset="1"/>
+    </linearGradient>
+    <linearGradient id="c" x1="10" x2="38" y1="24" y2="24" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#ae3642" offset="0"/>
+        <stop stop-color="#17683a" offset=".5"/>
+        <stop stop-color="#216694" offset=".785714"/>
+        <stop stop-color="#25688c" offset="1"/>
+    </linearGradient>
+    <linearGradient id="d" x1="38" x2="10" y1="24" y2="24" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#2a7aaf" offset=".0360243"/>
+        <stop stop-color="#299fb9" offset=".236931"/>
+        <stop stop-color="#27ae60" offset=".5"/>
+        <stop stop-color="#da4453" offset=".964726"/>
+    </linearGradient>
+    <linearGradient id="e" x1="18" x2="30" y1="18" y2="30" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#f47750" offset="0"/>
+        <stop stop-color="#88b175" offset=".275711"/>
+        <stop stop-color="#3daee9" offset="1"/>
+    </linearGradient>
+    <linearGradient id="f" x1="14" x2="20" y1="14" y2="20" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#ffcdd2" offset="0"/>
+        <stop stop-color="#f25665" stop-opacity="0" offset="1"/>
+    </linearGradient>
+    <linearGradient id="g" x1="20" x2="23" y1="20" y2="23" 
gradientUnits="userSpaceOnUse">
+        <stop stop-color="#e49e99" offset="0"/>
+        <stop stop-color="#74cc2e" stop-opacity="0" offset="1"/>
+    </linearGradient>
+    <path d="m44 24c0 11.0457-8.9543 20-20 20s-20-8.9543-20-20 8.9543-20 20-20 
20 8.9543 20 20z" fill="url(#a)"/>
+    <path d="m6 24c0 9.9411 8.0589 18 18 18s18-8.0589 18-18-8.0589-18-18-18-18 
8.0589-18 18z" fill="url(#b)"/>
+    <path d="m10 24c0 7.732 6.268 14 14 14s14-6.268 14-14-6.268-14-14-14-14 
6.268-14 14z" fill="url(#c)"/>
+    <path d="m24 10c-7.756 0-14 6.244-14 14s6.244 14 14 14 14-6.244 
14-14-6.244-14-14-14zm0 1c7.202 0 13 5.798 13 13s-5.798 13-13 13-13-5.798-13-13 
5.798-13 13-13z" fill="url(#d)"/>
+    <path d="m24 12c-6.648 0-12 5.352-12 12s5.352 12 12 12 12-5.352 
12-12-5.352-12-12-12zm0 3c4.986 0 9 4.01 9 9 0 4.986-4.01 9-9 9-4.986 
0-9-4.01-9-9 0-4.986 4.01-9 9-9z" fill="url(#d)"/>
+    <path d="m22.787 25.5817c.8763.6724 2.1318.5071 
2.8042-.3692s.5071-2.1318-.3692-2.8042c-.8763-.6725-2.1318-.5072-2.8042.3692-.6724.8763-.5071
 2.1318.3692 2.8042z" fill="#094035"/>
+    <path d="m24 29c2.7614 0 5-2.2386 5-5s-2.2386-5-5-5-5 2.2386-5 5 2.2386 5 
5 5zm0 1c3.3137 0 6-2.6863 6-6s-2.6863-6-6-6-6 2.6863-6 6 2.6863 6 6 6z" 
clip-rule="evenodd" fill="url(#e)" fill-rule="evenodd" opacity=".35"/>
+    <path d="m20 17c0 1.6569-1.3431 3-3 3s-3-1.3431-3-3 1.3431-3 3-3 3 1.3431 
3 3z" fill="url(#f)"/>
+    <path d="m23 21.5c0 .8284-.6716 1.5-1.5 1.5s-1.5-.6716-1.5-1.5.6716-1.5 
1.5-1.5 1.5.6716 1.5 1.5z" fill="url(#g)"/>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.100.0/icons/devices/16/input-touchscreen.svg 
new/breeze-icons-5.101.0/icons/devices/16/input-touchscreen.svg
--- old/breeze-icons-5.100.0/icons/devices/16/input-touchscreen.svg     
1970-01-01 01:00:00.000000000 +0100
+++ new/breeze-icons-5.101.0/icons/devices/16/input-touchscreen.svg     
2022-12-03 10:41:39.000000000 +0100
@@ -0,0 +1,12 @@
+<svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg";>
+    <style type="text/css" id="current-color-scheme">
+        .ColorScheme-Text {
+            color:#232629;
+        }
+    </style>
+    <g class="ColorScheme-Text" 
style="fill:currentColor;fill-opacity:1;stroke:none">
+        <path d="m2 13v-10h12v10h-1v-9h-10v8h2v1z"/>
+        <path d="m8 
14h3.15l1-3s-2.15-1-3.15-1.00002v-2.25427c0-.99999-1-.99999-1 
.00009v4.2542h-.25l-.5-1c-.75-1.5-1.5 0-1.5 0z"/>
+        <path d="m10 7.25v1.75c.5664-.35 1-1.04318 1-1.75 
0-1.24264-1.11929-2.25-2.5-2.25s-2.5 1.00736-2.5 2.25c0 .70682.43361 1.4 1 
1.75v-1.75c0-.59386.56986-1.25 1.5-1.25s1.5.65614 1.5 1.25z"/>
+    </g>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.100.0/icons/devices/22/input-touchscreen.svg 
new/breeze-icons-5.101.0/icons/devices/22/input-touchscreen.svg
--- old/breeze-icons-5.100.0/icons/devices/22/input-touchscreen.svg     
1970-01-01 01:00:00.000000000 +0100
+++ new/breeze-icons-5.101.0/icons/devices/22/input-touchscreen.svg     
2022-12-03 10:41:39.000000000 +0100
@@ -0,0 +1,12 @@
+<svg fill="none" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg";>
+    <style type="text/css" id="current-color-scheme">
+        .ColorScheme-Text {
+            color:#232629;
+        }
+    </style>
+    <g class="ColorScheme-Text" 
style="fill:currentColor;fill-opacity:1;stroke:none">
+        <path d="m2 18v-15h18v14.5h-1v-13.5h-16v13h3v1z"/>
+        <path d="m10 
20.9999h6.5l1.5-6c-2-1.4999-4.5-2-6-2v-3.69991c0-1.29999-2-2.00008-2 
0v7.70001l-1.5-2.0001c-1.5-2-3 0-3 0z"/>
+        <path d="m9.0001 12.3726c-.9068-.6325-1.5001-1.6833-1.5001-2.87272 
0-1.933 1.567-3.5 3.5-3.5s3.5 1.567 3.5 3.5c0 .97932-.4022 1.86482-1.0505 
2.50002h1.2927c.4787-.715.7578-1.5749.7578-2.50002 
0-2.48528-2.0147-4.5-4.5-4.5-2.48528 0-4.5 2.01472-4.5 4.5 0 1.76692 1.01833 
3.29592 2.5001 4.03232z"/>
+    </g>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.100.0/icons/devices/64/input-touchscreen.svg 
new/breeze-icons-5.101.0/icons/devices/64/input-touchscreen.svg
--- old/breeze-icons-5.100.0/icons/devices/64/input-touchscreen.svg     
1970-01-01 01:00:00.000000000 +0100
+++ new/breeze-icons-5.101.0/icons/devices/64/input-touchscreen.svg     
2022-12-03 10:41:39.000000000 +0100
@@ -0,0 +1,81 @@
+<svg fill="none" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink";>
+    <defs>
+        <style type="text/css" id="current-color-scheme">
+            .ColorScheme-Highlight {
+                color:#3daee9;
+            }
+        </style>
+        <linearGradient id="a" x1="22.3571" x2="32.6923" y1="7" y2="52.8439" 
gradientUnits="userSpaceOnUse">
+            <stop stop-color="#26343c" offset="0"/>
+            <stop stop-color="#1a2530" offset=".45"/>
+            <stop stop-color="#121920" offset="1"/>
+        </linearGradient>
+        <linearGradient id="b" x1="5" x2="59" y1="53" y2="53" 
gradientUnits="userSpaceOnUse">
+            <stop stop-color="#161d24" offset="0"/>
+            <stop stop-color="#08121c" offset=".5"/>
+            <stop stop-color="#121920" offset="1"/>
+        </linearGradient>
+        <linearGradient id="c" x1="5" x2="59" y1="7" y2="7" 
gradientUnits="userSpaceOnUse">
+            <stop stop-color="#42545f" offset="0"/>
+            <stop stop-color="#334551" offset=".5"/>
+            <stop stop-color="#283742" offset="1"/>
+        </linearGradient>
+        <linearGradient id="d" x1="41.1979" x2="4.07205" y1="10.1653" 
y2="36.0476" gradientUnits="userSpaceOnUse">
+            <stop stop-color="#1abc9c" offset="0"/>
+            <stop stop-color="#2980b9" offset="1"/>
+        </linearGradient>
+        <linearGradient id="e" x1="27.6623" x2="53.8651" y1="33.0593" 
y2="38.1684" gradientUnits="userSpaceOnUse">
+            <stop stop-color="#cc4a5e" offset="0"/>
+            <stop stop-color="#aa478a" offset="1"/>
+        </linearGradient>
+        <linearGradient id="f">
+            <stop stop-color="#334545" offset="0"/>
+            <stop stop-color="#536161" offset="1"/>
+        </linearGradient>
+        <linearGradient id="g" x1="21.9574" x2="15.6521" y1="58.5268" 
y2="37.826" gradientUnits="userSpaceOnUse" xlink:href="#f"/>
+        <linearGradient id="h" x1="31.0452" x2="22.0902" y1="41.9171" 
y2="36.7131" gradientUnits="userSpaceOnUse" xlink:href="#f"/>
+        <linearGradient id="i">
+            <stop offset="0"/>
+            <stop stop-opacity="0" offset="1"/>
+        </linearGradient>
+        <linearGradient id="j" x1="9" x2="9" y1="11" y2="49" 
gradientUnits="userSpaceOnUse" xlink:href="#i"/>
+        <linearGradient id="k" x1="5" x2="36.4274" y1="8" y2="39.1526" 
gradientUnits="userSpaceOnUse">
+            <stop stop-color="#fff" stop-opacity=".4" offset="0"/>
+            <stop stop-color="#fff" stop-opacity=".15" offset="1"/>
+        </linearGradient>
+        <linearGradient id="l" x1="31" x2="61" y1="21.5" y2="54" 
gradientUnits="userSpaceOnUse" xlink:href="#i"/>
+        <linearGradient id="m" x1="34.0718" x2="34.0718" y1="21.6146" 
y2="59.0033" gradientUnits="userSpaceOnUse">
+            <stop stop-color="#fccec0" offset="0"/>
+            <stop stop-color="#c98350" offset="1"/>
+        </linearGradient>
+        <linearGradient id="n" x1="34.6875" x2="34.6875" y1="40.7672" 
y2="59.0029" gradientUnits="userSpaceOnUse">
+            <stop stop-color="#a96535" stop-opacity="0" offset="0"/>
+            <stop stop-color="#a96535" offset="1"/>
+        </linearGradient>
+        <linearGradient id="o" x1="34.6875" x2="34.6875" y1="21.8599" 
y2="46.5" gradientUnits="userSpaceOnUse">
+            <stop stop-color="#fff" offset="0"/>
+            <stop stop-color="#fff" stop-opacity=".5" offset="1"/>
+        </linearGradient>
+    </defs>
+    <path d="m5 11c0-2.20914 1.79086-4 4-4h46c2.2091 0 4 1.79086 4 4v38c0 
2.2091-1.7909 4-4 4h-46c-2.20914 0-4-1.7909-4-4z" fill="url(#a)"/>
+    <path d="m55 53c2.2091 0 4-1.7909 4-4v-1c0 2.2091-1.7909 4-4 
4h-46c-2.20914 0-4-1.7909-4-4v1c0 2.2091 1.79086 4 4 4z" fill="url(#b)"/>
+    <path d="m9 7c-2.20914 0-4 1.79086-4 4v1c0-2.20914 1.79086-4 4-4h46c2.2091 
0 4 1.79086 4 4v-1c0-2.20914-1.7909-4-4-4z" fill="url(#c)"/>
+    <path d="m10 11c-.55228 0-1 .4477-1 1v36c0 .5523.44772 1 1 1h44c.5523 0 
1-.4477 1-1v-36c0-.5523-.4477-1-1-1z" fill="url(#d)"/>
+    <path d="m54.6616 11.2501-45.6616 33.7499 2 4h42.9999c.5523 0 1-.4477 
1-1v-36.0111c-.0032-.2942-.1334-.5578-.3383-.7388z" fill="url(#e)"/>
+    <path d="m54.6615 11.25-31.1615 23.03 
31.5-10.2801-.0001-12.0166c-.0048-.2919-.1347-.5535-.3384-.7333z" 
fill="#aa478a"/>
+    <path d="m23.5 34.2826-14.5 10.7174v3c0 .5523.44772 1 1 1h33z" 
fill="url(#g)"/>
+    <path d="m43 49-19.5-14.72-.1224 14.72z" fill="url(#h)"/>
+    <path d="m9 12c0-.5523.44772-1 1-1h44c.5523 0 1 .4477 1 1v36c0 .5523-.4477 
1-1 1h-44c-.55229 0-1-.4477-1-1z" fill="url(#j)" opacity=".1"/>
+    <path d="m5 12c0-2.20914 1.79086-4 4-4h46c2.2091 0 4 1.79086 4 4v36c0 
2.2091-1.7909 4-4 4h-46c-2.20914 0-4-1.7909-4-4z" fill="url(#k)" opacity=".1"/>
+    <path d="m42 24a10 10 0 0 1-10 10 10 10 0 0 1-10-10 10 10 0 0 1 10-10 10 
10 0 0 1 10 10z" style="fill:currentColor" class="ColorScheme-Highlight" 
opacity=".5"/>
+    <path d="m40 24a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8z" 
style="fill:currentColor" class="ColorScheme-Highlight"/>
+    <path d="m40 24a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8z" 
fill="#000" fill-opacity=".4"/>
+    <path d="m59 48.5-26-26v30.5h26z" fill="url(#l)" opacity=".2"/>
+    <path d="m33.3564 58.5c4.2184.5624 9.4682.5093 
10.0838.5009.0406-.0006.0805-.0008.1211-.0011 3.827-.0244 6.8054-2.3413 
7.2729-5.9645l1.1658-8.0353c1-6-3.5-7.5-5-4.5 0-3.5-4-5.5-6-2.5 
0-3-4-5-6-2v-11c0-4-6-5-6 0v20.5s-1.0047-1.5047-2-2.5c-6.818-6.8181-9-1-9-1 4 3 
7.8564 15.5 15.3564 16.5z" fill="url(#m)"/>
+    <path d="m33.3565 57.5c4.2183.5625 9.4681.5093 
10.0838.5009.0406-.0005.0804-.0008.121-.0011 3.7484-.0239 6.8268-2.2809 
7.391-5.7781l-.1181.8137c-.4675 3.6231-3.4459 5.94-7.2729 
5.9644-.0406.0003-.0804.0006-.121.0011-.6157.0084-5.8655.0616-10.0838-.5009-4.8108-.6414-8.1225-6.0145-10.9345-10.5769-1.5719-2.5503-2.9878-4.8474-4.422-5.9231
 1.3082 1.1692 2.9863 2.5938 4.422 4.9231 2.812 4.5624 6.1237 9.9355 10.9345 
10.5769zm17.5958-5.2783.0321-.2216c-.0096.0744-.0203.1483-.0321.2216z" 
clip-rule="evenodd" fill="url(#n)" fill-rule="evenodd"/>
+    <g fill="url(#o)" opacity=".5">
+        <path d="m18 42c.8696-1.3083 3.743-3.2571 9 2 .9953.9953 2 1.5 2 
1.5s-1.0047-1.5047-2-2.5c-6.818-6.8181-9-1-9-1z"/>
+        <path d="m29 26c0-5 6-4 6 0v-1c0-4-6-5-6 0z"/>
+        <path d="m35 36c2-3 6-1 6 2 2-3 6-1 6 2.5 1.4009-2.8017 5.4182-1.6787 
5.1287 3.369-.2588-4.1854-3.8257-4.975-5.1287-2.369 0-3.5-4-5.5-6-2.5 
0-3-4-5-6-2z"/>
+    </g>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.100.0/icons/mimetypes/16/application-x-executable.svg 
new/breeze-icons-5.101.0/icons/mimetypes/16/application-x-executable.svg
--- old/breeze-icons-5.100.0/icons/mimetypes/16/application-x-executable.svg    
2022-11-05 13:22:30.000000000 +0100
+++ new/breeze-icons-5.101.0/icons/mimetypes/16/application-x-executable.svg    
2022-12-03 10:41:39.000000000 +0100
@@ -1,3 +1,10 @@
 <svg width="16" height="16" viewBox="0 0 16 16" 
xmlns="http://www.w3.org/2000/svg";>
-    <path fill="#555" d="m2 2v12h12v-12zm1 2h10v9h-10zm4 1v4h2v-4zm0 
5v2h2v-2z" />
+    <defs id="defs1">
+        <style type="text/css" id="current-color-scheme">
+            .ColorScheme-Text {
+                color:#555555;
+            }
+        </style>
+    </defs>
+    <path style="fill:currentColor;fill-opacity:1;stroke:none" 
class="ColorScheme-Text" d="m2 2v12h12v-12zm1 2h10v9h-10zm4 1v4h2v-4zm0 
5v2h2v-2z" />
 </svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.100.0/icons/mimetypes/22/application-x-executable.svg 
new/breeze-icons-5.101.0/icons/mimetypes/22/application-x-executable.svg
--- old/breeze-icons-5.100.0/icons/mimetypes/22/application-x-executable.svg    
2022-11-05 13:22:30.000000000 +0100
+++ new/breeze-icons-5.101.0/icons/mimetypes/22/application-x-executable.svg    
2022-12-03 10:41:39.000000000 +0100
@@ -1,69 +1,10 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/";
-   xmlns:cc="http://creativecommons.org/ns#";
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
-   xmlns:svg="http://www.w3.org/2000/svg";
-   xmlns="http://www.w3.org/2000/svg";
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
-   width="22"
-   version="1.1"
-   height="22"
-   id="svg2"
-   inkscape:version="0.91 r13725"
-   sodipodi:docname="application-x-executable.svg">
-  <sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1360"
-     inkscape:window-height="708"
-     id="namedview12"
-     showgrid="true"
-     inkscape:zoom="28.32"
-     inkscape:cx="6.9915251"
-     inkscape:cy="11.352253"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:window-maximized="1"
-     inkscape:current-layer="layer1"
-     inkscape:object-nodes="true">
-    <inkscape:grid
-       type="xygrid"
-       id="grid4140" />
-  </sodipodi:namedview>
-  <defs
-     id="defs3871" />
-  <metadata
-     id="metadata3874">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
-        <dc:title />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Capa 1"
-     inkscape:groupmode="layer"
-     id="layer1"
-     transform="matrix(1 0 0 1 -326 -534.3622)">
-    <path
-       inkscape:connector-curvature="0"
-       
style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#555555;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
-       d="m 329,537.3622 0,16 16,0 0,-16 z m 1,3 14,0 0,12 -14,0 z m 6,2 0,6 
2,0 0,-6 z m 0,6.9444 0,1.0556 2,0.0556 0,-1.0556 z"
-       id="path4"
-       sodipodi:nodetypes="cccccccccccccccccccc" />
-  </g>
+<svg width="22" height="22" xmlns="http://www.w3.org/2000/svg";>
+    <defs id="defs1">
+        <style type="text/css" id="current-color-scheme">
+            .ColorScheme-Text {
+                color:#555555;
+            }
+        </style>
+    </defs>
+    <path transform="matrix(1 0 0 1 -326 -534.3622)" 
style="fill:currentColor;fill-opacity:1;stroke:none" class="ColorScheme-Text" 
d="m 329,537.3622 0,16 16,0 0,-16 z m 1,3 14,0 0,12 -14,0 z m 6,2 0,6 2,0 0,-6 
z m 0,6.9444 0,1.0556 2,0.0556 0,-1.0556 z" />
 </svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.100.0/icons/preferences/22/preferences-desktop-touchscreen.svg
 
new/breeze-icons-5.101.0/icons/preferences/22/preferences-desktop-touchscreen.svg
--- 
old/breeze-icons-5.100.0/icons/preferences/22/preferences-desktop-touchscreen.svg
   1970-01-01 01:00:00.000000000 +0100
+++ 
new/breeze-icons-5.101.0/icons/preferences/22/preferences-desktop-touchscreen.svg
   2022-12-03 10:41:39.000000000 +0100
@@ -0,0 +1,72 @@
+<svg fill="none" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink";>
+    <defs>
+        <style type="text/css" id="current-color-scheme">
+            .ColorScheme-Highlight {
+                color:#3daee9;
+            }
+        </style>
+        <linearGradient id="a" x1="7.07143" x2="11.3935" y1="1" y2="19.9101" 
gradientUnits="userSpaceOnUse">
+            <stop stop-color="#26343c" offset="0"/>
+            <stop stop-color="#1a2530" offset=".447566"/>
+            <stop stop-color="#121920" offset="1"/>
+        </linearGradient>
+        <linearGradient id="b" x2="22" y1="20" y2="20" 
gradientUnits="userSpaceOnUse">
+            <stop stop-color="#070f17" offset="0"/>
+            <stop offset="1"/>
+        </linearGradient>
+        <linearGradient id="c" x2="22" y1="1" y2="1" 
gradientUnits="userSpaceOnUse">
+            <stop stop-color="#3b4c56" offset="0"/>
+            <stop stop-color="#334551" offset=".5"/>
+            <stop stop-color="#243540" offset="1"/>
+        </linearGradient>
+        <linearGradient id="d" x1="14.5992" x2="-.011072" y1="2.6705" 
y2="12.7675" gradientUnits="userSpaceOnUse">
+            <stop stop-color="#1abc9c" offset="0"/>
+            <stop stop-color="#2980b9" offset="1"/>
+        </linearGradient>
+        <linearGradient id="e" x1="9.30267" x2="19.5624" y1="11.7076" 
y2="13.6907" gradientUnits="userSpaceOnUse">
+            <stop stop-color="#cc4a5e" offset="0"/>
+            <stop stop-color="#aa478a" offset="1"/>
+        </linearGradient>
+        <linearGradient id="f" x1="7.07027" x2="4.56326" y1="21.7606" 
y2="13.6014" gradientUnits="userSpaceOnUse">
+            <stop stop-color="#334545" offset="0"/>
+            <stop stop-color="#536161" offset="1"/>
+        </linearGradient>
+        <linearGradient id="g">
+            <stop offset="0"/>
+            <stop stop-opacity="0" offset="1"/>
+        </linearGradient>
+        <linearGradient id="h" x1="11" x2="11" y1="3" y2="18" 
gradientUnits="userSpaceOnUse" xlink:href="#g"/>
+        <linearGradient id="i" x1="10.5926" x2="22.8149" y1="7.72223" 
y2="20.963" gradientUnits="userSpaceOnUse" xlink:href="#g"/>
+        <linearGradient id="j" x1="11.59" x2="11.59" y1="6.90452" y2="22.2351" 
gradientUnits="userSpaceOnUse">
+            <stop stop-color="#fccec0" offset="0"/>
+            <stop stop-color="#c98350" offset="1"/>
+        </linearGradient>
+        <linearGradient id="k" x1="12" x2="12" y1="14" y2="22" 
gradientUnits="userSpaceOnUse">
+            <stop stop-color="#a96535" stop-opacity="0" offset="0"/>
+            <stop stop-color="#a96535" offset="1"/>
+        </linearGradient>
+        <linearGradient id="l" x1="11.774" x2="11.774" y1="7.91847" 
y2="18.0001" gradientUnits="userSpaceOnUse">
+            <stop stop-color="#fff" offset="0"/>
+            <stop stop-color="#fff" stop-opacity=".5" offset="1"/>
+        </linearGradient>
+    </defs>
+    <path d="m0 3.5c0-1.38071 1.11929-2.5 2.5-2.5h17c1.3807 0 2.5 1.11929 2.5 
2.5v14c0 1.3807-1.1193 2.5-2.5 2.5h-17c-1.38071 0-2.5-1.1193-2.5-2.5z" 
fill="url(#a)"/>
+    <path d="m0 16.5v1c0 1.3807 1.11929 2.5 2.5 2.5h17c1.3807 0 2.5-1.1193 
2.5-2.5v-1c0 1.3807-1.1193 2.5-2.5 2.5h-17c-1.38071 0-2.5-1.1193-2.5-2.5z" 
fill="url(#b)"/>
+    <path d="m2.5 1c-1.38071 0-2.5 1.11929-2.5 2.5v1c0-1.38071 1.11929-2.5 
2.5-2.5h17c1.3807 0 2.5 1.11929 2.5 2.5v-1c0-1.38071-1.1193-2.5-2.5-2.5z" 
fill="url(#c)"/>
+    <path d="m2.5 3c-.27614 0-.5.22386-.5.5v14c0 .2761.22386.5.5.5h17c.2761 0 
.5-.2239.5-.5v-14c0-.27614-.2239-.5-.5-.5z" fill="url(#d)"/>
+    <path d="m19.829 3.12354-17.829 12.87646 1 2h17-.5c.2761 0 
.5-.2239.5-.5v-13.99995-.00363c-.0011-.1487-.067-.28197-.171-.37288z" 
fill="url(#e)"/>
+    <path d="m7.5 12.0278-5.5 3.9722v1.5c0 .2761.22386.5.5.5h12.5z" 
fill="url(#f)"/>
+    <path d="m19.8287 3.12329-12.3287 8.87671 
12.4999-2.99996v-5.50888c-.0025-.14671-.0683-.27802-.1712-.36787z" 
fill="#aa478a"/>
+    <path d="m2 3.5c0-.27614.22386-.5.5-.5h17c.2761 0 .5.22386.5.5v14c0 
.2761-.2239.5-.5.5h-17c-.27614 0-.5-.2239-.5-.5z" fill="url(#h)" opacity=".2"/>
+    <path d="m16.15 8.99998c0 2.84422-2.3058 5.15002-5.15 5.15002-2.84429 
0-5.15002-2.3058-5.15002-5.15002 0-2.84427 2.30573-5.15 5.15002-5.15 2.8442 0 
5.15 2.30573 5.15 5.15z" style="fill:currentColor" 
class="ColorScheme-Highlight" opacity=".5"/>
+    <path d="m15 9c0 2.2091-1.7909 4-4 4-2.20914 0-4-1.7909-4-4 0-2.20914 
1.79086-4 4-4 2.2091 0 4 1.79086 4 4z" style="fill:currentColor" 
class="ColorScheme-Highlight" />
+    <path d="m15 9c0 2.2091-1.7909 4-4 4-2.20914 0-4-1.7909-4-4 0-2.20914 
1.79086-4 4-4 2.2091 0 4 1.79086 4 4z" fill="#000" fill-opacity=".5"/>
+    <path d="m11.3438 20.25v-12.12036l10.6563 10.65636v1.464z" fill="url(#i)" 
opacity=".4"/>
+    <path d="m9.99996 
21.9993h7.00004l1.75-4.9992c0-2.0001-.75-2.0001-2.45-2.0001 0-1-.3-1-2.15-1 
0-1-.3-1-2.15-1v-3.99994c0-1.50007-2.00004-1.65-2.00004 
0v8.00004l-.05-.0001s-.44993-1.5-.84468-1.8947c-2.10528-2.1053-4-.4999-4-.4999z"
 fill="url(#j)"/>
+    <path d="m16.9999 
20.9993h-6.99999l-4.42559-6.6853c-.29742.1459-.4691.2914-.4691.2914l4.89469 
7.3939h6.99999l1.75-4.9992c0-.3259-.0199-.5986-.0606-.827z" fill="url(#k)"/>
+    <g fill="url(#l)" opacity=".7">
+        <path d="m5.57432 15.314c.69064-.3389 2.05933-.6803 
3.5309.7913.39475.3947.84469 1.8947.84469 
1.8947l.05.0001v-1l-.05-.0001s-.44994-1.5-.84469-1.8947c-2.10528-2.1053-4-.4999-4-.4999z"/>
+        <path d="m9.99991 10.0001c0-1.65004 1.99999-1.50011 1.99999 
0v-1.00004c0-1.50007-1.99999-1.65-1.99999 0z"/>
+        <path d="m11.9999 13c1.85 0 2.15 0 2.15 1 1.85 0 2.15 0 2.15 1 1.6999 
0 2.45 0 2.45 2.0001l-.0606.1731c-.209-1.1732-.9663-1.1732-2.3892-1.1732 
0-1-.3002-1-2.1502-1 0-1-.3-1-2.15-1z"/>
+    </g>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.100.0/icons/preferences/32/preferences-desktop-touchscreen.svg
 
new/breeze-icons-5.101.0/icons/preferences/32/preferences-desktop-touchscreen.svg
--- 
old/breeze-icons-5.100.0/icons/preferences/32/preferences-desktop-touchscreen.svg
   1970-01-01 01:00:00.000000000 +0100
+++ 
new/breeze-icons-5.101.0/icons/preferences/32/preferences-desktop-touchscreen.svg
   2022-12-03 10:41:39.000000000 +0100
@@ -0,0 +1,68 @@
+<svg fill="none" viewBox="0 0 32 33" xmlns="http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink";>
+    <defs>
+        <style type="text/css" id="current-color-scheme">
+            .ColorScheme-Highlight {
+                color:#3daee9;
+            }
+        </style>
+        <linearGradient id="a" x1="10.2857" x2="16.2998" y1="1" y2="27.933" 
gradientUnits="userSpaceOnUse">
+            <stop stop-color="#26343c" offset="0"/>
+            <stop stop-color="#1a2530" offset=".447566"/>
+            <stop stop-color="#121920" offset="1"/>
+        </linearGradient>
+        <linearGradient id="b" x2="32" y1="28" y2="28" 
gradientUnits="userSpaceOnUse">
+            <stop stop-color="#070f17" offset="0"/>
+            <stop offset="1"/>
+        </linearGradient>
+        <linearGradient id="c" x2="32" y1="1" y2="1" 
gradientUnits="userSpaceOnUse">
+            <stop stop-color="#3b4c56" offset="0"/>
+            <stop stop-color="#334551" offset=".5"/>
+            <stop stop-color="#243540" offset="1"/>
+        </linearGradient>
+        <linearGradient id="d" x1="21.5987" x2="-3.073" y1="2.41056" 
y2="17.237" gradientUnits="userSpaceOnUse">
+            <stop stop-color="#1abc9c" offset="0"/>
+            <stop stop-color="#2980b9" offset="1"/>
+        </linearGradient>
+        <linearGradient id="e" x1="9.88709" x2="6.08863" y1="31.7662" 
y2="19.2248" gradientUnits="userSpaceOnUse">
+            <stop stop-color="#334545" offset="0"/>
+            <stop stop-color="#536161" offset="1"/>
+        </linearGradient>
+        <linearGradient id="f" x1="13.2169" x2="29.1597" y1="16.3517" 
y2="19.4779" gradientUnits="userSpaceOnUse">
+            <stop stop-color="#cc4a5e" offset="0"/>
+            <stop stop-color="#aa478a" offset="1"/>
+        </linearGradient>
+        <linearGradient id="g">
+            <stop offset="0"/>
+            <stop stop-opacity="0" offset="1"/>
+        </linearGradient>
+        <linearGradient id="h" x1="16" x2="16" y1="3" y2="26" 
gradientUnits="userSpaceOnUse" xlink:href="#g"/>
+        <linearGradient id="i" x1="15.4075" x2="33.1852" y1="9.77777" 
y2="29.037" gradientUnits="userSpaceOnUse" xlink:href="#g"/>
+        <linearGradient id="j" x1="17.6351" x2="17.6351" y1="9.8457" 
y2="32.0019" gradientUnits="userSpaceOnUse">
+            <stop stop-color="#fccec0" offset="0"/>
+            <stop stop-color="#c98350" offset="1"/>
+        </linearGradient>
+        <linearGradient id="k" x1="18" x2="18" y1="21" y2="32" 
gradientUnits="userSpaceOnUse">
+            <stop stop-color="#a96535" stop-opacity="0" offset="0"/>
+            <stop stop-color="#a96535" offset="1"/>
+        </linearGradient>
+        <linearGradient id="l" x1="18" x2="18" y1="10" y2="25.5" 
gradientUnits="userSpaceOnUse">
+            <stop stop-color="#fff" offset="0"/>
+            <stop stop-color="#fff" stop-opacity=".5" offset="1"/>
+        </linearGradient>
+    </defs>
+    <path d="m0 4c0-1.65685 1.34315-3 3-3h26c1.6569 0 3 1.34315 3 3v21c0 
1.6569-1.3431 3-3 3h-26c-1.65685 0-3-1.3431-3-3z" fill="url(#a)"/>
+    <path d="m29 28h-26c-1.65685 0-3-1.3431-3-3v-1c0 1.6569 1.34315 3 3 
3h26c1.6569 0 3-1.3431 3-3v1c0 1.6569-1.3431 3-3 3z" fill="url(#b)"/>
+    <path d="m3 1c-1.65685 0-3 1.34315-3 3v1c0-1.65685 1.34315-3 3-3h26c1.6569 
0 3 1.34315 3 3v-1c0-1.65685-1.3431-3-3-3z" fill="url(#c)"/>
+    <path d="m3 3c-.55229 0-1 .44772-1 1v21c0 .5523.44772 1 1 1h26c.5523 0 
1-.4477 1-1v-21c0-.55228-.4477-1-1-1z" fill="url(#d)"/>
+    <path d="m11.14 17.14-9.14 6.86v1c0 .5523.44772 1 1 1h19z" fill="url(#e)"/>
+    <path d="m29.6638 3.25208-18.521 13.89072 10.8571 8.8572h7c.5523 0 1-.4477 
1-1v-21.01249c-.0036-.29253-.1327-.55482-.3361-.73543z" fill="url(#f)"/>
+    <path d="m29.6637 3.25195-18.5238 13.88805 
18.8599-6.14v-7.01887c-.0053-.29002-.1341-.54986-.3361-.72918z" fill="#aa478a"/>
+    <path d="m2 4c0-.55228.44772-1 1-1h26c.5523 0 1 .44772 1 1v21c0 
.5523-.4477 1-1 1h-26c-.55229 0-1-.4477-1-1z" fill="url(#h)" opacity=".2"/>
+    <path d="m21.65 11.5c0 3.0376-2.4624 5.5-5.5 5.5-3.0375 
0-5.5-2.4624-5.5-5.5 0-3.03757 2.4625-5.5 5.5-5.5 3.0376 0 5.5 2.46243 5.5 
5.5z" style="fill:currentColor" class="ColorScheme-Highlight" opacity=".5"/>
+    <path d="m20.6501 11.4999c0 2.4853-2.0147 4.5-4.5 4.5-2.4852 
0-4.5-2.0147-4.5-4.5s2.0148-4.50002 4.5-4.50002c2.4853 0 4.5 2.01472 4.5 
4.50002z" style="fill:currentColor" class="ColorScheme-Highlight"/>
+    <path d="m20.6501 11.4999c0 2.4853-2.0147 4.5-4.5 4.5-2.4852 
0-4.5-2.0147-4.5-4.5s2.0148-4.50002 4.5-4.50002c2.4853 0 4.5 2.01472 4.5 
4.50002z" fill="#000" fill-opacity=".4"/>
+    <path d="m17.5 28v-17.5l14.5001 14.5c0 1.6569-1.3431 3-3 3z" 
fill="url(#i)" opacity=".2"/>
+    <path d="m16.7037 31.7037c2.4763.2751 5.9745.2948 
6.4614.2962.0395.0001.077.0008.1164.0014 2.1505.0345 4.0109-1.3971 
4.2869-3.5359l.6908-4.7617c.5926-3.5556-2.074-4.4444-2.9629-2.6667 
0-2.0741-2.3704-3.2592-3.5556-1.4815 
0-1.7777-2.5555-2.9629-3.7407-1.1852v-6.5185c0-2.37032-3.5-2.96294-3.5 
0v12.6482s-.5-1.5-1.5-2.5c-3.2596-3.2596-4.88892-.0741-4.88892-.0741 2.37042 
1.7778 4.16552 9.2859 8.59262 9.7778z" fill="url(#j)"/>
+    <path d="m23.1651 
31.9999c-.4869-.0014-3.9851-.0211-6.4614-.2962-2.8087-.3121-4.558-3.4483-6.067-6.1535-.86944-1.5587-1.65909-2.9744-2.52562-3.6243
 0 0 .1468-.287.44043-.6006.69967.7409 1.36507 1.9339 2.08519 3.2249 1.509 
2.7052 3.2583 5.8414 6.067 6.1535 2.4763.2751 5.9745.2948 
6.4614.2962.0347.0001.0679.0006.1023.0012l.0141.0002c2.1505.0345 4.0109-1.3971 
4.2869-3.536l.6908-4.7616c.0263-.1573.0461-.3094.06-.4562.0453.4218.0315.9072-.06
 1.4562l-.6908 4.7616c-.276 2.1389-2.1364 3.5705-4.2869 
3.536l-.0141-.0002c-.0344-.0006-.0676-.0011-.1023-.0012z" fill="url(#k)"/>
+    <path d="m14.5 
24.5s-.5-1.5-1.5-2.5c-3.2596-3.2596-4.88892-.0741-4.88892-.0741.14881.1116.29536.2458.44043.3994.68459-.731
 2.16729-1.6065 4.44849.6747 1 1 1.5 2.5 1.5 2.5zm3.5-5.1296v-1c1.1852-1.7778 
3.7407-.5926 3.7407 1.1851 1.1852-1.7777 3.5556-.5926 3.5556 1.4815.8496-1.6991 
3.3231-.9623 3.0229 2.2105-.2484-2.3103-2.2713-2.7138-3.0229-1.2105 
0-2.0741-2.3704-3.2592-3.5556-1.4815 
0-1.7777-2.5555-2.9629-3.7407-1.1851zm0-7.5186v1c0-2.3703-3.5-2.96294-3.5 
0v-1c0-2.96294 3.5-2.37032 3.5 0z" clip-rule="evenodd" fill="url(#l)" 
fill-rule="evenodd" opacity=".6"/>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.100.0/icons-dark/devices/16/input-touchscreen.svg 
new/breeze-icons-5.101.0/icons-dark/devices/16/input-touchscreen.svg
--- old/breeze-icons-5.100.0/icons-dark/devices/16/input-touchscreen.svg        
1970-01-01 01:00:00.000000000 +0100
+++ new/breeze-icons-5.101.0/icons-dark/devices/16/input-touchscreen.svg        
2022-12-03 10:41:39.000000000 +0100
@@ -0,0 +1,12 @@
+<svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg";>
+    <style type="text/css" id="current-color-scheme">
+        .ColorScheme-Text {
+            color:#eff0f1;
+        }
+    </style>
+    <g class="ColorScheme-Text" 
style="fill:currentColor;fill-opacity:1;stroke:none">
+        <path d="m2 13v-10h12v10h-1v-9h-10v8h2v1z"/>
+        <path d="m8 
14h3.15l1-3s-2.15-1-3.15-1.00002v-2.25427c0-.99999-1-.99999-1 
.00009v4.2542h-.25l-.5-1c-.75-1.5-1.5 0-1.5 0z"/>
+        <path d="m10 7.25v1.75c.5664-.35 1-1.04318 1-1.75 
0-1.24264-1.11929-2.25-2.5-2.25s-2.5 1.00736-2.5 2.25c0 .70682.43361 1.4 1 
1.75v-1.75c0-.59386.56986-1.25 1.5-1.25s1.5.65614 1.5 1.25z"/>
+    </g>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/breeze-icons-5.100.0/icons-dark/devices/22/input-touchscreen.svg 
new/breeze-icons-5.101.0/icons-dark/devices/22/input-touchscreen.svg
--- old/breeze-icons-5.100.0/icons-dark/devices/22/input-touchscreen.svg        
1970-01-01 01:00:00.000000000 +0100
+++ new/breeze-icons-5.101.0/icons-dark/devices/22/input-touchscreen.svg        
2022-12-03 10:41:39.000000000 +0100
@@ -0,0 +1,12 @@
+<svg fill="none" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg";>
+    <style type="text/css" id="current-color-scheme">
+        .ColorScheme-Text {
+            color:#eff0f1;
+        }
+    </style>
+    <g class="ColorScheme-Text" 
style="fill:currentColor;fill-opacity:1;stroke:none">
+        <path d="m2 18v-15h18v14.5h-1v-13.5h-16v13h3v1z"/>
+        <path d="m10 
20.9999h6.5l1.5-6c-2-1.4999-4.5-2-6-2v-3.69991c0-1.29999-2-2.00008-2 
0v7.70001l-1.5-2.0001c-1.5-2-3 0-3 0z"/>
+        <path d="m9.0001 12.3726c-.9068-.6325-1.5001-1.6833-1.5001-2.87272 
0-1.933 1.567-3.5 3.5-3.5s3.5 1.567 3.5 3.5c0 .97932-.4022 1.86482-1.0505 
2.50002h1.2927c.4787-.715.7578-1.5749.7578-2.50002 
0-2.48528-2.0147-4.5-4.5-4.5-2.48528 0-4.5 2.01472-4.5 4.5 0 1.76692 1.01833 
3.29592 2.5001 4.03232z"/>
+    </g>
+</svg>

Reply via email to