Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package kf6-breeze-icons for
openSUSE:Factory checked in at 2025-07-14 10:48:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kf6-breeze-icons (Old)
and /work/SRC/openSUSE:Factory/.kf6-breeze-icons.new.7373 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kf6-breeze-icons"
Mon Jul 14 10:48:11 2025 rev:17 rq:1292114 version:6.16.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/kf6-breeze-icons/kf6-breeze-icons.changes
2025-06-18 15:55:50.547462435 +0200
+++
/work/SRC/openSUSE:Factory/.kf6-breeze-icons.new.7373/kf6-breeze-icons.changes
2025-07-14 10:48:48.665490697 +0200
@@ -1,0 +2,22 @@
+Mon Jul 7 07:24:31 UTC 2025 - Christophe Marin <[email protected]>
+
+- Update to 6.16.0
+ * New feature release
+ * For more details please see:
+ * https://kde.org/announcements/frameworks/6/6.16.0
+- Changes since 6.15.0:
+ * Update dependency version to 6.16.0
+ * Add audio-speakers and audio-input-microphone to devices/64
+ * Remove duplicated icons
+ * Add 64px colorful printer-error icon
+ * Edit create-app-symlinks.py
+ * CMakeLists.txt - unset CMAKE_INTERPROCEDURAL_OPTIMIZATION
+ * Disable LTO for qt_add_big_resources (kde#487452)
+ * use big resource variant, else we OOM on 32 bit machines (kde#487452)
+ * Add TOML icon
+ * Add PIP Picture-in-Picture action icons
+ * Remove leftover of Virtualbox
+ * Remove outdated custom Virtualbox icon
+ * Update version to 6.16.0
+
+-------------------------------------------------------------------
Old:
----
breeze-icons-6.15.0.tar.xz
breeze-icons-6.15.0.tar.xz.sig
New:
----
breeze-icons-6.16.0.tar.xz
breeze-icons-6.16.0.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kf6-breeze-icons.spec ++++++
--- /var/tmp/diff_new_pack.ZFRu73/_old 2025-07-14 10:48:49.433522625 +0200
+++ /var/tmp/diff_new_pack.ZFRu73/_new 2025-07-14 10:48:49.433522625 +0200
@@ -19,11 +19,11 @@
%define qt6_version 6.8.0
%define rname breeze-icons
-# Full KF6 version (e.g. 6.15.0)
+# Full KF6 version (e.g. 6.16.0)
%{!?_kf6_version: %global _kf6_version %{version}}
%bcond_without released
Name: kf6-breeze-icons
-Version: 6.15.0
+Version: 6.16.0
Release: 0
Summary: Breeze icon theme
License: LGPL-3.0-only
++++++ breeze-icons-6.15.0.tar.xz -> breeze-icons-6.16.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/breeze-icons-6.15.0/.gitignore
new/breeze-icons-6.16.0/.gitignore
--- old/breeze-icons-6.15.0/.gitignore 2025-06-06 15:28:31.000000000 +0200
+++ new/breeze-icons-6.16.0/.gitignore 2025-07-04 17:09:08.000000000 +0200
@@ -6,6 +6,7 @@
dist
node_modules
/.vscode/
+/.kateproject.*
CMakeLists.txt.user*
.cmake/
/.clang-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/breeze-icons-6.15.0/CMakeLists.txt
new/breeze-icons-6.16.0/CMakeLists.txt
--- old/breeze-icons-6.15.0/CMakeLists.txt 2025-06-06 15:28:31.000000000
+0200
+++ new/breeze-icons-6.16.0/CMakeLists.txt 2025-07-04 17:09:08.000000000
+0200
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.16)
-set(KF_VERSION "6.15.0") # handled by release scripts
+set(KF_VERSION "6.16.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 6.15.0 NO_MODULE)
+find_package(ECM 6.16.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)
@@ -35,6 +35,18 @@
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
+# We need this for KDE-BUG 499674. qt_add_resources has issues with 32-bit
+# systems, while qt_add_big_resources has issues with LTO. We use
qt_add_big_resources
+# and disable LTO.
+check_cxx_compiler_flag(-fno-lto COMPILER_SUPPORTS_NO_LTO)
+check_cxx_compiler_flag(/GL- COMPILER_SUPPORTS_NO_GL)
+if(COMPILER_SUPPORTS_NO_LTO)
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-lto")
+elseif(COMPILER_SUPPORTS_NO_GL)
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /GL-")
+endif()
+set(CMAKE_INTERPROCEDURAL_OPTIMIZATION OFF)
+
if(Python_FOUND)
# Find lxml Python 3 module
exec_program(${Python_EXECUTABLE}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/breeze-icons-6.15.0/autotests/CMakeLists.txt
new/breeze-icons-6.16.0/autotests/CMakeLists.txt
--- old/breeze-icons-6.15.0/autotests/CMakeLists.txt 2025-06-06
15:28:31.000000000 +0200
+++ new/breeze-icons-6.16.0/autotests/CMakeLists.txt 2025-07-04
17:09:08.000000000 +0200
@@ -1,13 +1,17 @@
include(ECMAddTests)
if(BUILD_TESTING)
- find_package(Qt6 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Core Test)
+ find_package(Qt6 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Core Gui Test)
configure_file(testdata.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/testdata.h)
ecm_add_test(scalabletest.cpp
TEST_NAME "scalable"
LINK_LIBRARIES Qt6::Test
)
+ ecm_add_test(resourcetest.cpp
+ TEST_NAME "resource"
+ LINK_LIBRARIES KF6BreezeIcons Qt6::Gui Qt6::Test
+ )
if(WITH_ICON_GENERATION)
add_test(NAME "test24x24icons" COMMAND ${Python_EXECUTABLE}
${CMAKE_SOURCE_DIR}/autotests/test24x24icons.py
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/breeze-icons-6.15.0/autotests/resourcetest.cpp
new/breeze-icons-6.16.0/autotests/resourcetest.cpp
--- old/breeze-icons-6.15.0/autotests/resourcetest.cpp 1970-01-01
01:00:00.000000000 +0100
+++ new/breeze-icons-6.16.0/autotests/resourcetest.cpp 2025-07-04
17:09:08.000000000 +0200
@@ -0,0 +1,68 @@
+/*
+ This file is part of the KDE libraries
+
+ SPDX-FileCopyrightText: 2025 Christoph Cullmann <[email protected]>
+
+ SPDX-License-Identifier: LGPL-2.0-or-later
+*/
+
+#include <QFile>
+#include <QObject>
+#include <QTest>
+
+#include "breezeicons.h"
+#include "testhelpers.h"
+
+class ResourceTest : public QObject
+{
+ Q_OBJECT
+
+ void compareFileResourceWithFilesystem(const QString &name)
+ {
+ // resource location
+ const QString
qrcLocation(QStringLiteral(":/icons/breeze/%1").arg(name));
+
+ // file system location
+ const QString fsLocation(PROJECT_SOURCE_DIR +
QStringLiteral("/icons/%1").arg(name));
+
+ // read full data of both, must work
+ QFile qrcFile(qrcLocation);
+ QVERIFY(qrcFile.open(QFile::ReadOnly));
+ QFile fsFile(fsLocation);
+ QVERIFY(fsFile.open(QFile::ReadOnly));
+ const auto qrcData = qrcFile.readAll();
+ QVERIFY(!qrcData.isEmpty());
+ const auto fsData = fsFile.readAll();
+ QVERIFY(!fsData.isEmpty());
+
+ // fully equal?
+ QCOMPARE(qrcData, fsData);
+ }
+
+private Q_SLOTS:
+ // check that not stuff got lost in the DLL
+ // did happen for compiling with LTO or buggy preprocessing the DLL
+ void test_resourceContainsTheme()
+ {
+ // ensure the DLL is linked
+ BreezeIcons::initIcons();
+
+ // we want to have the proper theme file
+ compareFileResourceWithFilesystem(QStringLiteral("index.theme"));
+
+ // check some icons we know shall be there
+ // check no stuff that might not be generated in some config or that
is a symlink
+
compareFileResourceWithFilesystem(QStringLiteral("actions/16/go-previous.svg"));
+
compareFileResourceWithFilesystem(QStringLiteral("actions/16/table.svg"));
+
compareFileResourceWithFilesystem(QStringLiteral("actions/22/edit-paste.svg"));
+
compareFileResourceWithFilesystem(QStringLiteral("actions/22/tab-new.svg"));
+
compareFileResourceWithFilesystem(QStringLiteral("actions/32/document-edit.svg"));
+
compareFileResourceWithFilesystem(QStringLiteral("actions/32/zoom.svg"));
+
compareFileResourceWithFilesystem(QStringLiteral("mimetypes/64/application-json.svg"));
+
compareFileResourceWithFilesystem(QStringLiteral("places/64/folder-favorites.svg"));
+ }
+};
+
+QTEST_GUILESS_MAIN(ResourceTest)
+
+#include "resourcetest.moc"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/breeze-icons-6.15.0/create-app-symlinks.py
new/breeze-icons-6.16.0/create-app-symlinks.py
--- old/breeze-icons-6.15.0/create-app-symlinks.py 2025-06-06
15:28:31.000000000 +0200
+++ new/breeze-icons-6.16.0/create-app-symlinks.py 2025-07-04
17:09:08.000000000 +0200
@@ -84,6 +84,7 @@
"kontact": ["org.kde.kontact"],
"konversation": ["org.kde.konversation"],
"kopete": ["org.kde.kopete"],
+ "kpat": ["org.kde.kpat"],
"kphotoalbum": ["org.kde.kphotoalbum"],
"krdc": ["org.kde.krdc"],
"krename": ["org.kde.krename"],
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/actions/16/window-minimize-pip.svg
new/breeze-icons-6.16.0/icons/actions/16/window-minimize-pip.svg
--- old/breeze-icons-6.15.0/icons/actions/16/window-minimize-pip.svg
1970-01-01 01:00:00.000000000 +0100
+++ new/breeze-icons-6.16.0/icons/actions/16/window-minimize-pip.svg
2025-07-04 17:09:08.000000000 +0200
@@ -0,0 +1,9 @@
+<svg version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
+ <defs>
+ <style id="current-color-scheme" type="text/css">.ColorScheme-Text {
+ color:#232629;
+ }</style>
+ </defs>
+ <path class="ColorScheme-Text" d="m2 2v12h6v-1h-5v-9h10v4h1v-6zm7
7v6h6v-6zm1 2h4v3h-4z" fill="currentColor"/>
+ <path class="ColorScheme-Text" d="m7.9999465 5.0002137-0.999893
2e-7v1.3423975l1e-6 0.9501754-2.8926898-2.882958-0.707107 0.7071067 2.8887423
2.8831185-0.9501364-7e-7 -1.3390969 7e-7 4.666e-4 0.9998928h1.3386313l2.6606688
5.32e-5 4.131e-4 -2.6573881z" fill="currentColor"/>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/actions/16/window-restore-pip.svg
new/breeze-icons-6.16.0/icons/actions/16/window-restore-pip.svg
--- old/breeze-icons-6.15.0/icons/actions/16/window-restore-pip.svg
1970-01-01 01:00:00.000000000 +0100
+++ new/breeze-icons-6.16.0/icons/actions/16/window-restore-pip.svg
2025-07-04 17:09:08.000000000 +0200
@@ -0,0 +1,9 @@
+<svg version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
+ <defs>
+ <style id="current-color-scheme" type="text/css">.ColorScheme-Text {
+ color:#232629;
+ }</style>
+ </defs>
+ <path class="ColorScheme-Text" d="m2 2v12h6v-1h-5v-9h10v4h1v-6zm7
7v6h6v-6zm1 2h4v3h-4z" fill="currentColor"/>
+ <path class="ColorScheme-Text" d="M 4,8.999786 H 4.9999606 V 7.657389 L
4.9999596,6.707213 7.8928452,9.590171 8.6,8.883065 5.7110623,5.999946 l
0.9502006,1e-6 1.3391875,-1e-6 -4.666e-4,-0.999893 H 6.6612619 L 4.0004131,5
4,7.657388 Z" fill="currentColor"/>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/actions/22/window-minimize-pip.svg
new/breeze-icons-6.16.0/icons/actions/22/window-minimize-pip.svg
--- old/breeze-icons-6.15.0/icons/actions/22/window-minimize-pip.svg
1970-01-01 01:00:00.000000000 +0100
+++ new/breeze-icons-6.16.0/icons/actions/22/window-minimize-pip.svg
2025-07-04 17:09:08.000000000 +0200
@@ -0,0 +1,9 @@
+<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
+ <defs>
+ <style id="current-color-scheme" type="text/css">.ColorScheme-Text {
+ color:#232629;
+ }</style>
+ </defs>
+ <path class="ColorScheme-Text" d="m9.93907 8.0718026-0.999892
2e-7v3.2427472l-3.0355875-3.035587-0.707107 0.7071068 3.0355875
3.0355872h-3.2427475v0.999893h4.9497465v-0.292787z" fill="currentColor"/>
+ <path class="ColorScheme-Text" d="m3 3v16h8v-1h-7v-11h14v4h1v-8h-1zm9
9v4-1 5h8v-8h-3zm1 3h6v4h-6v-5z" fill="currentColor"/>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/actions/22/window-restore-pip.svg
new/breeze-icons-6.16.0/icons/actions/22/window-restore-pip.svg
--- old/breeze-icons-6.15.0/icons/actions/22/window-restore-pip.svg
1970-01-01 01:00:00.000000000 +0100
+++ new/breeze-icons-6.16.0/icons/actions/22/window-restore-pip.svg
2025-07-04 17:09:08.000000000 +0200
@@ -0,0 +1,9 @@
+<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
+ <defs>
+ <style id="current-color-scheme" type="text/css">.ColorScheme-Text {
+ color:#232629;
+ }</style>
+ </defs>
+ <path class="ColorScheme-Text" d="M 5,12.949747 H 5.999892 V 9.707 L
9.03548,12.742587 9.7425869,12.03548 6.706999,8.999893 H 9.9497469 V 8 H 5 v
0.292787 z" fill="currentColor"/>
+ <path class="ColorScheme-Text" d="m3 3v16h8v-1h-7v-11h14v4h1v-8h-1zm9
9v4-1 5h8v-8h-3zm1 3h6v4h-6v-5z" fill="currentColor"/>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/breeze-icons-6.15.0/icons/apps/48/VBox.svg
new/breeze-icons-6.16.0/icons/apps/48/VBox.svg
--- old/breeze-icons-6.15.0/icons/apps/48/VBox.svg 2025-07-14
10:50:28.665635673 +0200
+++ new/breeze-icons-6.16.0/icons/apps/48/VBox.svg 1970-01-01
01:00:00.000000000 +0100
@@ -1 +0,0 @@
-symbolic link to virtualbox.svg
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/breeze-icons-6.15.0/icons/apps/48/virtualbox.svg
new/breeze-icons-6.16.0/icons/apps/48/virtualbox.svg
--- old/breeze-icons-6.15.0/icons/apps/48/virtualbox.svg 2025-06-06
15:28:31.000000000 +0200
+++ new/breeze-icons-6.16.0/icons/apps/48/virtualbox.svg 1970-01-01
01:00:00.000000000 +0100
@@ -1,219 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<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:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="48"
- height="48"
- id="svg2"
- version="1.1"
- inkscape:version="0.91 r13725"
- sodipodi:docname="virtualbox.svg">
- <metadata
- id="metadata62">
- <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>
- <sodipodi:namedview
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1"
- objecttolerance="10"
- gridtolerance="10"
- guidetolerance="10"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:window-width="2560"
- inkscape:window-height="1375"
- id="namedview60"
- showgrid="true"
- inkscape:snap-bbox="true"
- inkscape:bbox-nodes="true"
- inkscape:object-paths="true"
- inkscape:snap-intersection-paths="true"
- inkscape:object-nodes="true"
- inkscape:snap-smooth-nodes="true"
- inkscape:snap-midpoints="true"
- inkscape:snap-bbox-midpoints="true"
- inkscape:snap-grids="true"
- inkscape:zoom="11.313708"
- inkscape:cx="12.238204"
- inkscape:cy="29.312843"
- inkscape:window-x="0"
- inkscape:window-y="36"
- inkscape:window-maximized="1"
- inkscape:current-layer="svg2">
- <inkscape:grid
- type="xygrid"
- id="grid4192"
- enabled="true" />
- </sodipodi:namedview>
- <defs
- id="defs4">
- <linearGradient
- gradientTransform="translate(-384.57-499.8)"
- gradientUnits="userSpaceOnUse"
- x2="411.57"
- y2="537.8"
- x1="392.57"
- y1="518.8"
- id="linearGradient4199">
- <stop
- id="stop4201"
- stop-color="#292c2f"
- style="stop-color:#00267a;stop-opacity:1" />
- <stop
- id="stop4203"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="c"
- y1="518.8"
- x1="392.57"
- y2="537.8"
- x2="411.57"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-384.57-499.8)">
- <stop
- stop-color="#292c2f"
- id="stop17" />
- <stop
- offset="1"
- stop-opacity="0"
- id="stop19" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4219"
- id="linearGradient4243"
- x1="10"
- y1="24"
- x2="38"
- y2="24"
- gradientUnits="userSpaceOnUse"
-
gradientTransform="matrix(1.1428571,0,0,1.1428565,-3.428571,-3.4285469)" />
- <linearGradient
- inkscape:collect="always"
- id="linearGradient4219">
- <stop
- style="stop-color:#eff0f1;stop-opacity:1"
- offset="0"
- id="stop4221" />
- <stop
- style="stop-color:#fcfcfc;stop-opacity:1"
- offset="1"
- id="stop4223" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#c"
- id="linearGradient5926"
- x1="15.866084"
- y1="23.893206"
- x2="23.068089"
- y2="23.893206"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.1764708,0,0,1.1764702,-4.2353,-4.2352912)"
/>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4199"
- id="linearGradient4471"
- x1="10"
- y1="10"
- x2="41.703552"
- y2="41.703552"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.1764708,0,0,1.1764702,-4.2353,-4.2352912)"
/>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4199"
- id="linearGradient4461"
- x1="10"
- y1="10"
- x2="44"
- y2="44"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.1764708,0,0,1.1764702,-4.2353,-4.2352912)"
/>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#c"
- id="linearGradient4451"
- x1="23.906326"
- y1="22.994661"
- x2="42"
- y2="42"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.1764708,0,0,1.1764702,-4.2353,-4.2352912)"
/>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4211"
- id="linearGradient4217"
- x1="408.57001"
- y1="540.79999"
- x2="408.57001"
- y2="506.79999"
- gradientUnits="userSpaceOnUse"
-
gradientTransform="matrix(1.1764708,0,0,1.1764702,-456.67066,-592.23508)" />
- <linearGradient
- inkscape:collect="always"
- id="linearGradient4211">
- <stop
- style="stop-color:#2980b9;stop-opacity:1"
- offset="0"
- id="stop4213" />
- <stop
- style="stop-color:#3498db;stop-opacity:1"
- offset="1"
- id="stop4215" />
- </linearGradient>
- </defs>
- <rect
- ry="0"
- y="4"
- x="4"
- height="40"
- width="40"
- id="rect4194-3"
-
style="opacity:1;fill:url(#linearGradient4217);fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
/>
- <path
- inkscape:connector-curvature="0"
-
style="opacity:0.2;fill:url(#linearGradient4451);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="M 40,8 38,10 39.293236,39.293221 10,38 l -2,2 2.002837,2.943178
33.996165,0 L 44,12 Z"
- />
- <path
-
style="opacity:0.2;fill:url(#linearGradient4461);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="M 8.8345552,15.773892 10,17 l 5.472885,5.591445 3.414522,7.681523
0.445772,0 0.11325,6.271676 L 21,38 l 0.693017,1.294104 17.601106,0 0,-9.372699
-7.068016,0 L 28.696695,16.881428 26.00368,26.302381 23.432447,16.941171
19.81342,29.56295 18.168201,28.607069 15.027115,15.773892 Z"
- />
- <path
-
style="opacity:0.2;fill:url(#linearGradient4471);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 23.508961,12.58487 5.214877,4.893559 -0.152409,-4.906985
10.722691,10.301133 0,7.049646 -7.068796,0 -3.14806,-11.748715
-2.885453,4.997749 -2.708651,-4.69152 z"
- />
- <path
-
style="opacity:0.2;fill:url(#linearGradient5926);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 16,15 6.247541,6.071064 -2.88692,10.774122 -4.298595,-16.042572 z"
- />
- <rect
-
style="opacity:0.50400002;fill:#1f3c64;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.73929958"
- id="rect4175"
- width="40"
- height="1.0558066"
- x="4.0000005"
- y="42.944195" />
- <path
-
style="opacity:1;fill:url(#linearGradient4243);fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 8,8.0000185 8,40 40,40 40,8.0000185 Z M 10,10 l 28,0 0,19 -5,0
-3.245537,-12.013381 -1.183034,-4.415175 -0.0022,0 -1.183034,4.417407
-1.348216,5.035711 -1.149552,-4.290174 -0.200894,-0.745537 0,-0.0022 L
23.508961,12.58487 19.45098,27.730003 16,15 10,15 Z m 0,7 4,0 4.263393,15.1317
1.183036,4.412944 1.183035,-4.41071 0,-0.0022 2.875,-10.729905
1.350447,5.037945 1.183035,4.417461 1.183036,-4.417408 1.348215,-5.035711 L
31,31 l 3,0 3,0 1,0 0,7 -28,0 z"
- />
-</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/devices/64/audio-input-microphone.svg
new/breeze-icons-6.16.0/icons/devices/64/audio-input-microphone.svg
--- old/breeze-icons-6.15.0/icons/devices/64/audio-input-microphone.svg
1970-01-01 01:00:00.000000000 +0100
+++ new/breeze-icons-6.16.0/icons/devices/64/audio-input-microphone.svg
2025-07-04 17:09:08.000000000 +0200
@@ -0,0 +1,43 @@
+<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 64 64">
+ <path fill="url(#a)" d="M42 30.972C42 37.5 37.523 41 32
41s-10-3.5-10-10.028V13.028C22 6.5 26.477 3 32 3s10 3.5 10 10.028z"/>
+ <path fill="#778485" d="M42 30.972C42 37.5 37.523 41 32
41s-10-3.5-10-10.028V30c0 6.528 4.477 10.028 10 10.028S42 36.528 42 30z"
opacity=".8"/>
+ <path fill="#FCFCFC" d="M42 13.028C42 6.5 37.523 3 32 3S22 6.5 22
13.028V14c0-6.528 4.477-10.028 10-10.028S42 7.472 42 14z" opacity=".4"/>
+ <path fill="#292C2E" d="M30 29a1 1 0 1 1 0 2h-7.999L22 30.972V29zm12
1.972-.001.028H34a1 1 0 1 1 0-2h8zM29.65 25a1 1 0 0 1 0 2H22v-2zM42 27h-7.65a1
1 0 0 1 0-2H42zm-10-7a2 2 0 1 1 0 4 2 2 0 0 1 0-4m-4.25 1a1 1 0 1 1 0
2H22v-2zM42 23h-5.75a1 1 0 1 1 0-2H42zm-12.35-6a1 1 0 0 1 0 2H22v-2zM42
19h-7.65a1 1 0 0 1 0-2H42zm-12-6a1 1 0 1 1 0 2h-8v-1.972l.001-.028zm12
.02V15h-8a1 1 0 1 1 0-2h7.999z"/>
+ <path fill="#FCFCFC" d="M33 22a1 1 0 1 1-2 0 1 1 0 0 1 2 0"/>
+ <path fill="url(#b)" d="M29 45h6v14h-6z"/>
+ <path fill="url(#c)" d="M21 59a1 1 0 0 1 1-1h20a1 1 0 0 1 1 1v2H21z"/>
+ <path fill="#000" fill-opacity=".1" d="M43 60v1H21v-1z"/>
+ <path fill="url(#d)" d="M21 23h-1c-.6 0-1 .4-1 1v7.25c0 7 5 12.75 13
12.75s13-5.75 13-12.75V24c0-.6-.4-1-1-1h-1v-2h1c1.657 0 3 1 3 3.25V31c0 9.5-7
15-15 15s-15-5.5-15-15v-6.75C17 22 18.343 21 20 21h1z"/>
+ <path fill="url(#e)" d="M22 20c-1.105 0-2 0-2 2s.895 2 2 2z"/>
+ <path fill="url(#f)" d="M42 20c1.105 0 2 0 2 2s-.895 2-2 2z"/>
+ <path fill="#FCFCFC" d="M22 21c-1.003 0-1.832 0-1.976 1.5A5.231 5.231 0 0 1
20 22c0-2 .895-2 2-2z" opacity=".4"/>
+ <path fill="#000" d="m32.478 45.991-2.07-2.071c.516.052 1.047.08 1.592.08 8
0 13-5.75 13-12.75V24c0-.6-.4-1-1-1h-.111c-.27 1-1.013 1-1.889 1v-4c.877 0
1.618 0 1.889 1H44c1.657 0 3 1 3 3.25V31c0 8.288-5.328 13.53-12
14.733v9.001l-6-6v-3a16.907 16.907 0 0 0 3.478.257" opacity=".1"/>
+ <defs>
+ <linearGradient id="a" x1="37.556" x2="24.242" y1="46.971" y2="2.826"
gradientUnits="userSpaceOnUse">
+ <stop stop-color="#7F8C8D"/>
+ <stop offset=".7" stop-color="#AFB0B3"/>
+ <stop offset="1" stop-color="#EFF0F1"/>
+ </linearGradient>
+ <linearGradient id="b" x1="32" x2="32" y1="25.182" y2="58.364"
gradientUnits="userSpaceOnUse">
+ <stop stop-color="#34495E"/>
+ <stop offset="1" stop-color="#979C9F"/>
+ </linearGradient>
+ <linearGradient id="c" x1="19.35" x2="43" y1="59.5" y2="59.5"
gradientUnits="userSpaceOnUse">
+ <stop stop-color="#979C9F"/>
+ <stop offset=".251" stop-color="#BDC3C7"/>
+ <stop offset="1" stop-color="#979C9F"/>
+ </linearGradient>
+ <linearGradient id="d" x1="46" x2="15.257" y1="36.866" y2="50.933"
gradientUnits="userSpaceOnUse">
+ <stop stop-color="#778485"/>
+ <stop offset="1" stop-color="#BDC3C7"/>
+ </linearGradient>
+ <linearGradient id="e" x1="20.5" x2="22" y1="22" y2="23.5"
gradientUnits="userSpaceOnUse">
+ <stop stop-color="#BDC3C7"/>
+ <stop offset="1" stop-color="#979C9F"/>
+ </linearGradient>
+ <linearGradient id="f" x1="42" x2="47.5" y1="22" y2="22"
gradientUnits="userSpaceOnUse">
+ <stop stop-color="#7F8C8D"/>
+ <stop offset="1" stop-color="#BFC0C1"/>
+ </linearGradient>
+ </defs>
+</svg>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/devices/64/audio-speakers.svg
new/breeze-icons-6.16.0/icons/devices/64/audio-speakers.svg
--- old/breeze-icons-6.15.0/icons/devices/64/audio-speakers.svg 1970-01-01
01:00:00.000000000 +0100
+++ new/breeze-icons-6.16.0/icons/devices/64/audio-speakers.svg 2025-07-04
17:09:08.000000000 +0200
@@ -0,0 +1,67 @@
+<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 64 64">
+ <path fill="url(#a)" d="M44 5a5 5 0 0 1 5 5.001V54a5 5 0 0 1-5 5H20a5 5 0 0
1-5-5V10.001A5 5 0 0 1 20 5z"/>
+ <path fill="url(#b)" fill-rule="evenodd" d="M24.39
26.942c.122.013.15.284.033.32C19.364 28.797 15 34.525 15 42V8.5c0 10.44 2.703
17.728 9.39 18.442" clip-rule="evenodd"/>
+ <path fill="#3DAEE9" d="M18.5 28c.5 0 1.5 0 1.5-1s-1-1-1.5-1-1.5 0-1.5 1 1 1
1.5 1"/>
+ <path fill="url(#c)" d="M41 17a9 9 0 1 1-18 0 9 9 0 0 1 18 0"/>
+ <path fill="url(#d)" d="M32 8a9 9 0 1 1 0 18 9 9 0 0 1 0-18m0 1a8 8 0 1 0 0
16 8 8 0 0 0 0-16"/>
+ <path fill="url(#e)" d="M45 42c0 7.18-5.82 13-13 13s-13-5.82-13-13 5.82-13
13-13 13 5.82 13 13"/>
+ <path fill="url(#f)" d="M32 29c7.18 0 13 5.82 13 13s-5.82 13-13
13-13-5.82-13-13 5.82-13 13-13m0 1c-6.627 0-12 5.373-12 12s5.373 12 12 12
12-5.373 12-12-5.373-12-12-12"/>
+ <path fill="url(#g)" d="M38 42a6 6 0 1 1-12 0 6 6 0 0 1 12 0"/>
+ <path fill="url(#h)" d="M44.4 45.914a13.029 13.029 0 0 1-8.486
8.485l-8.157-8.157a6 6 0 0 0 8.485-8.485z" opacity=".2"/>
+ <path fill="url(#i)" d="M36 17a4 4 0 1 1-8 0 4 4 0 0 1 8 0"/>
+ <path fill="url(#j)" d="M40.754 19.086a9.012 9.012 0 0 1-5.882
6.443l-5.701-5.7a4 4 0 0 0 5.657-5.658z" opacity=".2"/>
+ <path fill="url(#k)" d="M48.99 9.704c.006.098.01.197.01.297V54a5 5 0 0 1-5
5H20a5 5 0 0 1-5-5V41.866C15 50.234 19.38 57.994 32.005 58 44.63 58.006 48.5
50.364 48.5 42c0-7.794-2.847-11.79-7.617-14.766-.147-.091-.118-.317.046-.373
5.925-2.029 7.918-7.193 8.061-17.157"/>
+ <path fill="#485767" d="M44 5a5 5 0 0 1 5 5.001v1A5 5 0 0 0 44 6H20a5 5 0 0
0-5 5.001v-1A5 5 0 0 1 20 5z"/>
+ <path fill="#121920" d="M44 59.001A5 5 0 0 0 49 54v-1a5 5 0 0 1-5 5.001H20A5
5 0 0 1 15 53v1a5 5 0 0 0 5 5.001z"/>
+ <defs>
+ <radialGradient id="b" cx="0" cy="0" r="1" gradientTransform="matrix(-3.5
-.99997 .99997 -3.5 18.5 27)" gradientUnits="userSpaceOnUse">
+ <stop stop-color="#3498DB"/>
+ <stop offset=".8" stop-color="#3A4852" stop-opacity=".3"/>
+ </radialGradient>
+ <radialGradient id="c" cx="0" cy="0" r="1" gradientTransform="rotate(90
7.5 24.5)scale(8.65385)" gradientUnits="userSpaceOnUse">
+ <stop offset=".527" stop-color="#121920"/>
+ <stop offset=".81" stop-color="#1E252C"/>
+ <stop offset="1" stop-color="#121920"/>
+ </radialGradient>
+ <radialGradient id="e" cx="0" cy="0" r="1" gradientTransform="rotate(90 -5
37)scale(12.5)" gradientUnits="userSpaceOnUse">
+ <stop offset=".527" stop-color="#121920"/>
+ <stop offset=".81" stop-color="#1E252C"/>
+ <stop offset="1" stop-color="#121920"/>
+ </radialGradient>
+ <radialGradient id="g" cx="0" cy="0" r="1" gradientTransform="matrix(7 7
-7 7 29 39)" gradientUnits="userSpaceOnUse">
+ <stop stop-color="#2C3E50"/>
+ <stop offset="1" stop-color="#1D2329"/>
+ </radialGradient>
+ <radialGradient id="i" cx="0" cy="0" r="1" gradientTransform="rotate(45
-3.107 43.713)scale(6.59966)" gradientUnits="userSpaceOnUse">
+ <stop stop-color="#384858"/>
+ <stop offset="1" stop-color="#1D2329"/>
+ </radialGradient>
+ <radialGradient id="k" cx="0" cy="0" r="1" gradientTransform="rotate(90 8
24)scale(43)" gradientUnits="userSpaceOnUse">
+ <stop stop-color="#121920" stop-opacity="0"/>
+ <stop offset=".25" stop-color="#121920" stop-opacity=".102"/>
+ <stop offset=".5" stop-color="#121920" stop-opacity=".25"/>
+ <stop offset=".75" stop-color="#121920" stop-opacity=".3"/>
+ <stop offset="1" stop-color="#121920" stop-opacity=".5"/>
+ </radialGradient>
+ <linearGradient id="a" x1="31.5" x2="31.5" y1="-1" y2="59"
gradientUnits="userSpaceOnUse">
+ <stop stop-color="#3D4752"/>
+ <stop offset="1" stop-color="#21272D"/>
+ </linearGradient>
+ <linearGradient id="d" x1="23" x2="41" y1="8" y2="26"
gradientUnits="userSpaceOnUse">
+ <stop stop-color="#1A1E22"/>
+ <stop offset="1" stop-color="#404F5B"/>
+ </linearGradient>
+ <linearGradient id="f" x1="19" x2="45" y1="29" y2="55"
gradientUnits="userSpaceOnUse">
+ <stop stop-color="#1A1E22"/>
+ <stop offset="1" stop-color="#404F5B"/>
+ </linearGradient>
+ <linearGradient id="h" x1="32" x2="41" y1="42" y2="51"
gradientUnits="userSpaceOnUse">
+ <stop/>
+ <stop offset="1" stop-opacity="0"/>
+ </linearGradient>
+ <linearGradient id="j" x1="32.124" x2="38.265" y1="17.067" y2="23.329"
gradientUnits="userSpaceOnUse">
+ <stop/>
+ <stop offset="1" stop-opacity="0"/>
+ </linearGradient>
+ </defs>
+</svg>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/mimetypes/16/application-toml.svg
new/breeze-icons-6.16.0/icons/mimetypes/16/application-toml.svg
--- old/breeze-icons-6.15.0/icons/mimetypes/16/application-toml.svg
1970-01-01 01:00:00.000000000 +0100
+++ new/breeze-icons-6.16.0/icons/mimetypes/16/application-toml.svg
2025-07-04 17:09:08.000000000 +0200
@@ -0,0 +1,7 @@
+<svg version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
+ <g transform="matrix(.03559775 0 0 .03555556 .98190448 .91555555)"
fill="#6c7a89">
+ <path d="m28.6 30.5 84.27499-0.0031v28.126543l-56.183331
0.0031v281.25292l56.183331-9e-3v28.12054l-84.27499 9e-3z"/>
+ <path d="m281.42496
114.87499v28.12499h-70.22915v168.74998h-28.09167v-168.74998h-70.22915v-28.12499z"/>
+ <path d="m365.7
368h-84.27504v-28.12504h56.18333v-281.24997h-56.18333v-28.124993h84.27504z"/>
+ </g>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/mimetypes/22/application-toml.svg
new/breeze-icons-6.16.0/icons/mimetypes/22/application-toml.svg
--- old/breeze-icons-6.15.0/icons/mimetypes/22/application-toml.svg
1970-01-01 01:00:00.000000000 +0100
+++ new/breeze-icons-6.16.0/icons/mimetypes/22/application-toml.svg
2025-07-04 17:09:08.000000000 +0200
@@ -0,0 +1,7 @@
+<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
+ <g transform="matrix(.04746366 0 0 .04740741 1.6425393 1.5540741)"
fill="#6c7a89">
+ <path d="m28.6
30.5h84.275v42.187495h-42.137499v253.12498h42.137499v42.18752h-84.275z"/>
+ <path d="m281.425
93.781244v42.187496h-63.20625v189.84374h-42.1375v-189.84374h-63.20192l-9e-3
-42.187496z"/>
+ <path d="m365.7
368h-84.275v-42.18752h43.875v-253.12498h-43.875v-42.187495h84.275z"/>
+ </g>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/mimetypes/32/application-toml.svg
new/breeze-icons-6.16.0/icons/mimetypes/32/application-toml.svg
--- old/breeze-icons-6.15.0/icons/mimetypes/32/application-toml.svg
1970-01-01 01:00:00.000000000 +0100
+++ new/breeze-icons-6.16.0/icons/mimetypes/32/application-toml.svg
2025-07-04 17:09:08.000000000 +0200
@@ -0,0 +1,32 @@
+<svg version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
+ <defs>
+ <linearGradient id="a" x2="0" y1="518.04" y2="524.8"
gradientUnits="userSpaceOnUse">
+ <stop stop-color="#566472" offset="0"/>
+ <stop stop-color="#5e6b78" offset="1"/>
+ </linearGradient>
+ <linearGradient id="b" x1="404.57" x2="411.57" y1="524.8" y2="531.8"
gradientUnits="userSpaceOnUse">
+ <stop stop-color="#383e51" offset="0"/>
+ <stop stop-color="#655c6f" stop-opacity="0" offset="1"/>
+ </linearGradient>
+ <linearGradient id="c" x1="7.729" x2="8.271" y1="2.719" y2="61"
gradientTransform="matrix(.5 0 0-.48276 384.57 547.25)"
gradientUnits="userSpaceOnUse">
+ <stop stop-color="#bdc3c7" offset="0"/>
+ <stop stop-color="#dadfe1" offset="1"/>
+ </linearGradient>
+ </defs>
+ <g transform="translate(-384.57-515.8)">
+ <path d="m389.57 545.8v-28h15l7 7v21h-7z" fill="url(#c)"/>
+ <g transform="scale(1-1)">
+ <rect x="389.57" y="-518.8" width="15" height="1" fill="#fff"
fill-opacity=".412"/>
+ <rect x="389.57" y="-545.8" width="22" height="1" fill="#2e3132"
fill-opacity=".294"/>
+ </g>
+ </g>
+ <g transform="translate(-384.57,-515.8)" fill-rule="evenodd">
+ <path d="m411.57 524.8-7-7v7z" fill="url(#a)"/>
+ <path d="m411.57 531.8-7-7h7z" fill="url(#b)" opacity=".2"/>
+ </g>
+ <g transform="matrix(.03559775 0 0 .03555556 8.9819044 10.915556)"
fill="#5e6b78">
+ <path d="m28.6 30.5 84.27499-8e-6v28.12498l-56.183328
8e-6v281.24997h56.183328v28.12499l-84.27499 6e-5z"/>
+ <path d="m281.42497
114.87497v28.125h-70.22916v168.74998h-28.09166v-168.74998h-70.22916l0.72501-28.125z"/>
+ <path d="m365.7
368h-84.27503v-28.12505h56.18332v-281.24997h-56.18332v-28.12498h84.27503z"/>
+ </g>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/mimetypes/32/preferences-desktop-cryptography.svg
new/breeze-icons-6.16.0/icons/mimetypes/32/preferences-desktop-cryptography.svg
---
old/breeze-icons-6.15.0/icons/mimetypes/32/preferences-desktop-cryptography.svg
2025-06-06 15:28:31.000000000 +0200
+++
new/breeze-icons-6.16.0/icons/mimetypes/32/preferences-desktop-cryptography.svg
1970-01-01 01:00:00.000000000 +0100
@@ -1 +0,0 @@
-<svg height="32" width="32" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a"
gradientTransform="matrix(.54545384 0 0 .53846154 177.71482 249.75292)"
gradientUnits="userSpaceOnUse" x1="386.57101" x2="386.57101" y1="549.79797"
y2="497.798"><stop offset="0" stop-color="#7f8c8d"/><stop offset="1"
stop-color="#afb0b3"/></linearGradient><linearGradient id="b"
gradientUnits="userSpaceOnUse" x1="400.57144" x2="400.57144" y1="522.79797"
y2="535.79797"><stop offset="0" stop-color="#da4453"/><stop offset="1"
stop-color="#c72737"/></linearGradient><linearGradient id="c"
gradientUnits="userSpaceOnUse" x1="12" x2="26" y1="11" y2="25"><stop offset="0"
stop-color="#292c2f"/><stop offset="1" stop-color="#292c2f"
stop-opacity=".137755"/></linearGradient><linearGradient id="d"
gradientTransform="matrix(.55555494 0 0 .54843315 382.79368 514.4732)"
gradientUnits="userSpaceOnUse" x1="12" x2="12" y1="48" y2="10"><stop offset="0"
stop-color="#eef1f2"/><st
op offset="1" stop-color="#f9fafb"/></linearGradient><g
transform="translate(-384.57143 -515.798)"><path d="m388.57146
517.798h23.99996v28h-23.99996z" fill="url(#a)" stroke-width=".541946"/><path
d="m409.57143 542.798h2.99999v3h-2.99999zm-20.99997 0h2.99997v3h-2.99997z"
fill="#292c2f" opacity=".3" stroke-width=".522233"/><path d="m391.57145
542.798h17.99998v3h-17.99998z" fill="#292c2e" stroke-width=".984823"/><path
d="m393.57143 543.798h9v1h-9zm10 0h4v1h-4z" fill="#f6b44d"
stroke-width="1.006395"/><path d="m395.57143 518.798c-2.76142 0-5 2.20953-5
4.93555v6.06445c.70597.62334 1.1102 1.56499 1.11133 2.5-.001.93463-.40565
1.87691-1.11133 2.5v3l3
3h14l3-3v-3c-.70568-.62309-1.11033-1.56537-1.11133-2.5.001-.93501.40536-1.87666
1.11133-2.5v-6.06445c0-2.72602-2.23858-4.93555-5-4.93555z" fill="url(#d)"
stroke-width=".551983"/><path d="m16
7v.00195c-.79532-.0004-1.558264.3150332-2.121094.8769531-.55223.5519532-.867526
1.2974382-.878906 2.0781281.00055.0143.000953.028569.002.042969h-.002v3h-2
v7l7 7h10v-9.2421302l-9.878906-9.8789638z" fill="url(#c)" opacity=".2"
transform="translate(384.57143 515.798)"/><path d="m388.57143
544.798h24v1h-24z" fill="#292c2f" opacity=".4" stroke-width=".738551"/><path
d="m400.57143 522.798c-1.662 0-3 1.338-3
3v3h-2v7h10v-7h-2v-3c0-1.662-1.338-3-3-3zm0 1c1.2465 0 2 .5458 2
2v3h-4v-3c0-1.4542.75351-2 2-2z" fill="url(#b)"/><path d="m388.57143
542.798h3v3zm21 0h3v3h-3z" fill="#292c2f" opacity=".2"/></g></svg>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/mimetypes/64/application-toml.svg
new/breeze-icons-6.16.0/icons/mimetypes/64/application-toml.svg
--- old/breeze-icons-6.15.0/icons/mimetypes/64/application-toml.svg
1970-01-01 01:00:00.000000000 +0100
+++ new/breeze-icons-6.16.0/icons/mimetypes/64/application-toml.svg
2025-07-04 17:09:08.000000000 +0200
@@ -0,0 +1,30 @@
+<svg version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
+ <defs>
+ <linearGradient id="a" x2="0" y1="3" y2="61"
gradientTransform="matrix(1 0 0-1 0 64)" gradientUnits="userSpaceOnUse">
+ <stop stop-color="#bdc3c7" offset="0"/>
+ <stop stop-color="#dadfe1" offset="1"/>
+ </linearGradient>
+ <linearGradient id="b" x2="0" y1="61" y2="47"
gradientTransform="matrix(1 0 0-1 0 64)" gradientUnits="userSpaceOnUse">
+ <stop stop-color="#566472" offset="0"/>
+ <stop stop-color="#5e6b78" offset="1"/>
+ </linearGradient>
+ <linearGradient id="c" x1="40" x2="54" y1="17" y2="31"
gradientUnits="userSpaceOnUse">
+ <stop stop-color="#383e51" offset="0"/>
+ <stop stop-color="#655c6f" stop-opacity="0" offset="1"/>
+ </linearGradient>
+ </defs>
+ <path d="m10 61v-58h30l14 14v44h-14z" fill="url(#a)"/>
+ <g transform="scale(1-1)">
+ <rect x="10" y="-4" width="30" height="1" fill="#fff"
fill-opacity=".412"/>
+ <rect x="10" y="-61" width="44" height="1" fill="#2e3132"
fill-opacity=".294"/>
+ </g>
+ <g fill-rule="evenodd">
+ <path d="m54 17-14-14v14z" fill="url(#b)"/>
+ <path d="m40 17 14 14v-14z" fill="url(#c)" opacity=".2"/>
+ </g>
+ <g transform="matrix(.06526253 0 0 .06518519 19.133492 22.011852)"
fill="#5e6b78">
+ <path d="m28.6 30.5 76.61363
0.0045v30.677311h-45.968179v276.13634h45.968179v30.68185h-76.61363z"/>
+ <path d="m273.76364
91.863627v30.681813h-61.29091v184.0909h-30.64545v-184.0909h-61.29128v-30.681813z"/>
+ <path d="m365.7
368h-76.61363v-30.68185h45.96819v-276.13634h-45.96819v-30.681811h76.61363z"/>
+ </g>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/preferences/22/drive-removable-media.svg
new/breeze-icons-6.16.0/icons/preferences/22/drive-removable-media.svg
--- old/breeze-icons-6.15.0/icons/preferences/22/drive-removable-media.svg
2025-06-06 15:28:31.000000000 +0200
+++ new/breeze-icons-6.16.0/icons/preferences/22/drive-removable-media.svg
1970-01-01 01:00:00.000000000 +0100
@@ -1 +0,0 @@
-<svg height="22" width="22" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a"><stop
offset="0" stop-color="#faae2a"/><stop offset="1"
stop-color="#ffc35a"/></linearGradient><linearGradient id="b"
gradientTransform="matrix(.70588236 0 0 .70588341 -273.52104 -365.26974)"
gradientUnits="userSpaceOnUse" x2="0" y1="545.79797" y2="528.79797"><stop
offset="0" stop-color="#197cf1"/><stop offset="1"
stop-color="#20bcfa"/></linearGradient><linearGradient id="c"
gradientTransform="matrix(.76923079 0 0 .59999821 -299.05497 -308.67785)"
gradientUnits="userSpaceOnUse" x2="0" y1="527.79797" y2="517.79797"><stop
offset="0" stop-color="#c6cdd1"/><stop offset="1"
stop-color="#e0e5e7"/></linearGradient><linearGradient id="d"
gradientTransform="matrix(.49999737 0 0 .75000007 -191.28468 -386.84852)"
gradientUnits="userSpaceOnUse" x1="398.57144" x2="400.57144"
xlink:href="#a"/><linearGradient id="e" gradientTransform="matrix(.49999731 0 0
.75000007 -186.
28465 -386.84852)" gradientUnits="userSpaceOnUse" x1="398.57144"
x2="400.57144" xlink:href="#a"/><linearGradient id="f"
gradientUnits="userSpaceOnUse" x1="8" x2="17" y1="11" y2="20"><stop offset="0"
stop-color="#292c2f"/><stop offset="1"
stop-opacity="0"/></linearGradient><linearGradient id="g"
gradientUnits="userSpaceOnUse" x1="11" x2="11" y1="17" y2="11"><stop offset="0"
stop-color="#7cbaf8"/><stop offset="1"
stop-color="#f4fcff"/></linearGradient><path d="m5 8v12h12v-12z" fill="url(#b)"
stroke-width=".666667"/><path d="m6 2h10v6h-10z" fill="url(#c)"
stroke-width=".654653"/><path d="m7 3h3.035741v3h-3.035741z" fill="#23262c"
stroke-width=".754449"/><path d="m11.964319 3h3.035681v3h-3.035681z"
fill="#23262c" stroke-width=".754441"/><path d="m8 3h1v3h-1z" fill="url(#d)"
stroke-width=".612371"/><path d="m13 3h1v3h-1z" fill="url(#e)"
stroke-width=".612371"/><path d="m5 19h12v.999855h-12z" fill="#0c69cf"
stroke-width=".816449"/><g stroke-width=".5"><path d="m9.8535156
11.146484-.707031
2.707032 2.8535156 2.853515v.292969l5 5v-4l-3-3-1.292969 1zm-.7871094
2.28711-.8828124.882812 1.4765624
1.476563c-.1011012.130673-.1601562.290046-.1601562.457031 0
.1989.0781.3906.21875.53125l3.21875 3.21875h.220703 2.476563z" fill="url(#f)"
opacity=".2"/><path d="m9.5 11.001953a.5.5 0 0 0 -.5.5.5.5 0 0 0 .5.5.5.5 0 0 0
.5-.5.5.5 0 0 0 -.5-.5zm2.5 0-.75.75 1.25 1.25-1.25 1.25.75.75 2-2zm-3.375
2.25a.625.625 0 0 0 -.625.625.625.625 0 0 0 .625.625.625.625 0 0 0
.625-.625.625.625 0 0 0 -.625-.625zm1.625 2.25a.75.75 0 0 0 -.75.75.75.75 0 0 0
.75.75.75.75 0 0 0 .75-.75.75.75 0 0 0 -.75-.75z" fill="url(#g)"/></g></svg>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/preferences/22/podcast-amarok.svg
new/breeze-icons-6.16.0/icons/preferences/22/podcast-amarok.svg
--- old/breeze-icons-6.15.0/icons/preferences/22/podcast-amarok.svg
2025-06-06 15:28:31.000000000 +0200
+++ new/breeze-icons-6.16.0/icons/preferences/22/podcast-amarok.svg
1970-01-01 01:00:00.000000000 +0100
@@ -1 +0,0 @@
-<svg height="22" viewBox="0 0 22 22" width="22"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a"
gradientTransform="matrix(.57142824 0 0 .57142824 -222.46924 732.04922)"
gradientUnits="userSpaceOnUse" x2="0" xlink:href="#b" y1="543.79797"
y2="503.798"/><linearGradient id="b"><stop offset="0"
stop-color="#2f3943"/><stop offset="1"
stop-color="#808c9b"/></linearGradient><linearGradient id="c"
gradientTransform="matrix(.63636312 0 0 .63636312 -248.99977 698.03648)"
gradientUnits="userSpaceOnUse" x2="0" xlink:href="#b" y1="499.798"
y2="547.79797"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="11"
x2="11" y1="17" y2="6"><stop offset="0" stop-color="#ffd42a"/><stop offset="1"
stop-color="#ffdf62"/></linearGradient><linearGradient id="e"
gradientUnits="userSpaceOnUse" x1="8" x2="20" y1="6" y2="20"><stop
offset="0"/><stop offset="1" stop-opacity="0"/></linearGradient><g
transform="translate(0 -1020.3622)"><rect fill="#26333a" h
eight="18" rx="9" stroke-width=".060268" width="18" x="1.999995"
y="1022.3622"/><path d="m11 1023.3622c4.432 0 8 3.568 8 8s-3.568 8-8
8-8-3.568-8-8 3.568-8 8-8z" fill="url(#a)" stroke-width=".057143"/><path d="m11
1024.3622c3.878 0 7 3.122 7 7s-3.122 7-7 7-7-3.122-7-7 3.122-7 7-7z"
fill="url(#c)" stroke-width=".057692"/><path d="m12.414062
6.5859375-3.1464839.4140625.7324219.7324219v.2675781l-1 1 1 1-1 1 1
1-.4140625.414062 1.5859375 1.585938h-.996094l-1.9999998-2-.1757812 1 2
1.869141v1.130859l-1 1 3 3h8v-5.8281z" fill="url(#e)" opacity=".2"
transform="translate(0 1020.3622)"/><path d="m11 6a2 2 0 0 0 -1.7324219
1h.7324219v1h-1v1h1v1h-1v1h1v1h-.7324219a2 2 0 0 0 1.7324219 1 2 2 0 0 0
1.732422-1h-.732422v-1h1v-1h-1v-1h1v-1h-1v-1h.732422a2 2 0 0 0
-1.732422-1zm-3.8652344 6a4 4 0 0 0 2.8652344 2.869141v1.130859l-1
1h4l-1-1v-1.130859a4 4 0 0 0 2.865234-2.869141h-1.041015a3 3 0 0 1 -2.824219 2
3 3 0 0 1 -2.8242188-2z" fill="url(#d)" stroke-width="2" transform="translate(0
1020.3622)"/><
/g></svg>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/preferences/22/system-users.svg
new/breeze-icons-6.16.0/icons/preferences/22/system-users.svg
--- old/breeze-icons-6.15.0/icons/preferences/22/system-users.svg
2025-06-06 15:28:31.000000000 +0200
+++ new/breeze-icons-6.16.0/icons/preferences/22/system-users.svg
1970-01-01 01:00:00.000000000 +0100
@@ -1 +0,0 @@
-<svg height="22" width="22" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a"
gradientTransform="matrix(.64285673 0 0 .64285673 -246.51005 -330.8699)"
gradientUnits="userSpaceOnUse" x2="0" y1="545.79797" y2="517.79797"><stop
offset="0" stop-color="#197cf1"/><stop offset="1"
stop-color="#20bcfa"/></linearGradient><linearGradient id="b"
gradientUnits="userSpaceOnUse" x1="11" x2="11" y1="20" y2="2"><stop offset="0"
stop-color="#7cbaf8"/><stop offset="1"
stop-color="#f4fcff"/></linearGradient><linearGradient id="c"
gradientUnits="userSpaceOnUse" x1="19.999999" x2="6.000001" y1="20"
y2="6"><stop offset="0" stop-color="#292c2f"/><stop offset="1"
stop-opacity="0"/></linearGradient><path d="m9.0000003
14c-.84582.0015-1.598919.40191-1.880859
1h3.7656247c-.28242-.5991-1.0375157-.99973-1.8847657-1z" fill="#292c2f"/><rect
fill="url(#a)" height="18.000008" rx="9" stroke-width=".642857"
width="17.999994" x="2.000006" y="1.999992"/><path d="m13 6c
-.5304
0-1.038964.2108575-1.414062.5859375-.066141.06614-.125975.1371015-.181641.2109375l.595703
2.203125 1 1-2.585938-1.4140625-1.414062-.5859375c-1.1046 0-2 .89543-2 2 0
.530433.2108375 1.038992.5859375 1.414062l1.5976563
1.591797-.1835938-.005859c-1.6568 0-3 1.11929-3
2.5.002.16816.0253594.33567.0683594.5l3.9277344 3.927734a9 9 0 0 0
1.0039062.072266 9 9 0 0 0 1.28125-.091797 9 9 0 0 0 1.253906-.273437 9 9 0 0 0
1.203125-.447266 9 9 0 0 0 1.126953-.617188 9 9 0 0 0 1.029297-.769531 9 9 0 0
0 .90625-.90625 9 9 0 0 0 .769531-1.029297 9 9 0 0 0 .617188-1.126953 9 9 0 0 0
.447266-1.203125 9 9 0 0 0 .273437-1.253906 9 9 0 0 0
.013672-.1875l-5.507813-5.5078125c-.375097-.37508-.883662-.5859375-1.414062-.5859375z"
fill="url(#c)" opacity=".2"/><path d="m13 6.0000004a2 2 0 0 0 -2 2 2 2 0 0 0 2
1.9999996 2 2 0 0 0 2-1.9999996 2 2 0 0 0 -2-2zm0 1a1 1 0 0 1 1 1 1 1 0 0 1 -1
1 1 1 0 0 1 -1-1 1 1 0 0 1 1-1zm-3.9999997 1a2 2 0 0 0 -2 1.9999996 2 2 0 0 0 2
2 2 2 0 0 0 1.9999997-2 2 2 0 0 0 -1.999
9997-1.9999996zm0 1a1 1 0 0 1 .9999997.9999996 1 1 0 0 1 -.9999997 1 1 1 0 0 1
-1-1 1 1 0 0 1 1-.9999996zm3.9999997 1.9999996c-.73233
0-1.40297.21877-1.92383.58203a4 4 0 0 1 .82617.66797c.31863-.15804.69741-.24929
1.09766-.25.84725.00027 1.60235.4009 1.88477 1h-2.42188a4 4 0 0 1 .41016
1h3.05859c.0429-.16433.0658-.33184.0684-.5
0-1.38071-1.34315-2.5-3-2.5zm-3.9999997 2c-1.65685 0-3 1.11929-3
2.5.002.16816.0254.33567.0684.5h5.8632797c.0429-.16433.0658-.33184.0684-.5
0-1.38071-1.34315-2.5-2.9999997-2.5zm0 1c.84725.00027 1.6023497.4009 1.8847697
1h-3.7656297c.28194-.59809 1.03504-.99849 1.88086-1z" fill="url(#b)"/></svg>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/preferences/22/window-duplicate.svg
new/breeze-icons-6.16.0/icons/preferences/22/window-duplicate.svg
--- old/breeze-icons-6.15.0/icons/preferences/22/window-duplicate.svg
2025-06-06 15:28:31.000000000 +0200
+++ new/breeze-icons-6.16.0/icons/preferences/22/window-duplicate.svg
1970-01-01 01:00:00.000000000 +0100
@@ -1 +0,0 @@
-<svg height="22" viewBox="0 0 22 22" width="22"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a"><stop
offset="0" stop-color="#c6cdd1"/><stop offset="1"
stop-color="#e0e5e7"/></linearGradient><linearGradient id="b"><stop
offset="0"/><stop offset="1" stop-opacity="0"/></linearGradient><linearGradient
id="c" gradientTransform="matrix(.41666692 0 0 .40833269 -159.23827
-203.25094)" gradientUnits="userSpaceOnUse" x2="0" xlink:href="#a"
y1="543.79797" y2="502.65509"/><linearGradient id="d"
gradientUnits="userSpaceOnUse" x1="5.375003" x2="14.75002" xlink:href="#b"
y1="7.000012" y2="16.375009"/><linearGradient id="e"
gradientTransform="matrix(.27083358 0 0 .29490694 -96.15491 -146.23679)"
gradientUnits="userSpaceOnUse" x2="0" xlink:href="#a" y1="543.79797"
y2="502.65509"/><linearGradient id="f" gradientUnits="userSpaceOnUse"
x1="393.57144" x2="404.57144" xlink:href="#b" y1="522.79797" y2="533.79797"/><g
transform="translate(-384.57143 -51
5.798)"><g transform="translate(384.57143 515.798)"><path d="m1.000006
2h19.999994v18h-19.999994z" fill="url(#c)" stroke-width=".633866"/><path d="m2
18 18-11 1 1v12h-17z" fill="url(#d)" fill-rule="evenodd" opacity=".2"
stroke-width=".625"/><path d="m1 2h20.000002v3h-20.000002z" fill="#566069"
stroke-width=".684653"/><path d="m1.000027 5h19.999973v1h-19.999973z"
fill="#3daee9" stroke-width=".790569"/><path d="m2 7h18v10.999999h-18z"
fill="#fff" stroke-width=".574456"/><rect fill="#eff0f1" height="1.5" rx=".75"
stroke-width=".75" width="1.5" x="18.75" y="2.75"/></g><g
transform="translate(381.57143 520.798)"><path d="m8 2h13v13h-13z"
fill="url(#e)" stroke-width=".4343"/><path d="m9 13 11-6 1 1v7h-10z"
fill="url(#d)" fill-rule="evenodd" opacity=".2" stroke-width=".625"/><path
d="m8 2h13.000002v3h-13.000002z" fill="#566069" stroke-width=".551985"/><path
d="m8 5h13v1h-13z" fill="#3daee9" stroke-width=".637378"/><path d="m9
7h11v6h-11z" fill="#fff" stroke-width=".331662"/><rect fill="#ef
f0f1" height="1.5" rx=".75" stroke-width=".75" width="1.5" x="18.75"
y="2.75"/></g><path d="m402.57143 522.798 3 3v10h-3z" fill="none"/><path
d="m402.57143 522.798 2 2v9h-2z" fill="none"/><path d="m402.57143 522.798 3
3v10h-3z" fill="url(#f)" opacity=".2"/></g></svg>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/preferences/32/system-users.svg
new/breeze-icons-6.16.0/icons/preferences/32/system-users.svg
--- old/breeze-icons-6.15.0/icons/preferences/32/system-users.svg
2025-06-06 15:28:31.000000000 +0200
+++ new/breeze-icons-6.16.0/icons/preferences/32/system-users.svg
1970-01-01 01:00:00.000000000 +0100
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg width="32" version="1.1" xmlns="http://www.w3.org/2000/svg" height="32"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
- <defs id="defs5455">
- <linearGradient inkscape:collect="always" id="linearGradient3028"
xlink:href="#linearGradient4143" y1="545.79797" y2="517.79797" x2="0"
gradientUnits="userSpaceOnUse" gradientTransform="matrix(1 0 0 1 -0.00001
0.00003)"/>
- <linearGradient inkscape:collect="always" xlink:href="#linearGradient4290"
id="linearGradient4211" y1="537.79797" y2="523.79797"
gradientUnits="userSpaceOnUse" x2="0" gradientTransform="matrix(1 0 0 1
-385.57143 -514.798)"/>
- <linearGradient inkscape:collect="always" id="linearGradient4143">
- <stop style="stop-color:#197cf1" id="stop4145"/>
- <stop offset="1" style="stop-color:#20bcfa" id="stop4147"/>
- </linearGradient>
- <linearGradient inkscape:collect="always" id="linearGradient4290">
- <stop style="stop-color:#7cbaf8" id="stop4292"/>
- <stop offset="1" style="stop-color:#f4fcff" id="stop4294"/>
- </linearGradient>
- <linearGradient inkscape:collect="always" xlink:href="#linearGradient4227"
id="linearGradient4309" y1="9" x1="9.00001" y2="22.999973" x2="22.999985"
gradientUnits="userSpaceOnUse"/>
- <linearGradient inkscape:collect="always" id="linearGradient4227">
- <stop style="stop-color:#292c2f" id="stop4229"/>
- <stop offset="1" style="stop-opacity:0" id="stop4231"/>
- </linearGradient>
- </defs>
- <metadata id="metadata5458"/>
- <g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1"
transform="matrix(1 0 0 1 -384.57143 -515.798)">
- <rect width="28.00001" x="386.57144" y="517.79797" rx="14.00001"
height="28.00003" style="fill:url(#linearGradient3028)" id="rect4130"/>
- <path style="fill:url(#linearGradient4309);opacity:0.2;fill-rule:evenodd"
id="path4297" d="M 18 10 L 17 11 L 17 13 L 18 14 L 19 15 L 19 16 L 15 12 L 14
12 L 12 12 L 11 13 L 11 15 L 12 16 L 13 17 L 13 18 L 11 18 L 10 19 L 9 21 L 8
23 L 14.947266 29.947266 C 15.295937 29.973043 15.644521 30 16 30 C 22.820439
30 28.466359 25.169592 29.730469 18.730469 L 21 10 L 20 10 L 18 10 z "
transform="matrix(1 0 0 1 384.57143 515.798)"/>
- <path style="fill:url(#linearGradient4211)" id="path4202" d="M 19 9.0996094
C 17.338 9.0996094 16 10.437609 16 12.099609 C 16 13.553859 17.02502 14.760238
18.394531 15.039062 C 17.230356 15.179342 16.192931 15.715879 15.417969
16.511719 A 6 6 0 0 1 16.347656 17.023438 C 17.05393 16.394217 17.975308 16 19
16 C 21.21602 16 23 17.78398 23 20 L 18.650391 20 A 6 6 0 0 1 18.914062 21 L 24
21 L 24 20 C 24 17.43566 22.08694 15.337009 19.605469 15.039062 C 20.97498
14.760238 22 13.553859 22 12.099609 C 22 10.437609 20.662 9.0996094 19
9.0996094 z M 19 10.099609 C 20.108 10.099609 21 10.991609 21 12.099609 C 21
13.207609 20.108 14.099609 19 14.099609 C 17.892 14.099609 17 13.207609 17
12.099609 C 17 10.991609 17.892 10.099609 19 10.099609 z M 13 11 C 11.338 11 10
12.338 10 14 C 10 15.662 11.338 17 13 17 C 14.662 17 16 15.662 16 14 C 16
12.338 14.662 11 13 11 z M 13 17 C 10.22998 17 8 19.22998 8 22 L 8 23 L 18 23 L
18 22 C 18 19.22998 15.77002 17 13 17 z M 13 12 C 14.108 12 15 12.892 15 14 C
15 15.108 14.108 16 13 16 C 11.892 16 11 15.108 11 14 C 11 12.892 11.892 12
13 12 z M 13 18 C 15.21602 18 17 19.78398 17 22 L 9 22 C 9 19.78398 10.78398 18
13 18 z " transform="matrix(1 0 0 1 384.57143 515.798)"/>
- </g>
-</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/preferences/32/yast-users.svg
new/breeze-icons-6.16.0/icons/preferences/32/yast-users.svg
--- old/breeze-icons-6.15.0/icons/preferences/32/yast-users.svg 2025-07-14
10:48:51.649614749 +0200
+++ new/breeze-icons-6.16.0/icons/preferences/32/yast-users.svg 2025-07-04
17:09:08.000000000 +0200
@@ -1 +1,28 @@
-symbolic link to ../../preferences/32/system-users.svg
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg width="32" version="1.1" xmlns="http://www.w3.org/2000/svg" height="32"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
+ <defs id="defs5455">
+ <linearGradient inkscape:collect="always" id="linearGradient3028"
xlink:href="#linearGradient4143" y1="545.79797" y2="517.79797" x2="0"
gradientUnits="userSpaceOnUse" gradientTransform="matrix(1 0 0 1 -0.00001
0.00003)"/>
+ <linearGradient inkscape:collect="always" xlink:href="#linearGradient4290"
id="linearGradient4211" y1="537.79797" y2="523.79797"
gradientUnits="userSpaceOnUse" x2="0" gradientTransform="matrix(1 0 0 1
-385.57143 -514.798)"/>
+ <linearGradient inkscape:collect="always" id="linearGradient4143">
+ <stop style="stop-color:#197cf1" id="stop4145"/>
+ <stop offset="1" style="stop-color:#20bcfa" id="stop4147"/>
+ </linearGradient>
+ <linearGradient inkscape:collect="always" id="linearGradient4290">
+ <stop style="stop-color:#7cbaf8" id="stop4292"/>
+ <stop offset="1" style="stop-color:#f4fcff" id="stop4294"/>
+ </linearGradient>
+ <linearGradient inkscape:collect="always" xlink:href="#linearGradient4227"
id="linearGradient4309" y1="9" x1="9.00001" y2="22.999973" x2="22.999985"
gradientUnits="userSpaceOnUse"/>
+ <linearGradient inkscape:collect="always" id="linearGradient4227">
+ <stop style="stop-color:#292c2f" id="stop4229"/>
+ <stop offset="1" style="stop-opacity:0" id="stop4231"/>
+ </linearGradient>
+ </defs>
+ <metadata id="metadata5458"/>
+ <g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1"
transform="matrix(1 0 0 1 -384.57143 -515.798)">
+ <rect width="28.00001" x="386.57144" y="517.79797" rx="14.00001"
height="28.00003" style="fill:url(#linearGradient3028)" id="rect4130"/>
+ <path style="fill:url(#linearGradient4309);opacity:0.2;fill-rule:evenodd"
id="path4297" d="M 18 10 L 17 11 L 17 13 L 18 14 L 19 15 L 19 16 L 15 12 L 14
12 L 12 12 L 11 13 L 11 15 L 12 16 L 13 17 L 13 18 L 11 18 L 10 19 L 9 21 L 8
23 L 14.947266 29.947266 C 15.295937 29.973043 15.644521 30 16 30 C 22.820439
30 28.466359 25.169592 29.730469 18.730469 L 21 10 L 20 10 L 18 10 z "
transform="matrix(1 0 0 1 384.57143 515.798)"/>
+ <path style="fill:url(#linearGradient4211)" id="path4202" d="M 19 9.0996094
C 17.338 9.0996094 16 10.437609 16 12.099609 C 16 13.553859 17.02502 14.760238
18.394531 15.039062 C 17.230356 15.179342 16.192931 15.715879 15.417969
16.511719 A 6 6 0 0 1 16.347656 17.023438 C 17.05393 16.394217 17.975308 16 19
16 C 21.21602 16 23 17.78398 23 20 L 18.650391 20 A 6 6 0 0 1 18.914062 21 L 24
21 L 24 20 C 24 17.43566 22.08694 15.337009 19.605469 15.039062 C 20.97498
14.760238 22 13.553859 22 12.099609 C 22 10.437609 20.662 9.0996094 19
9.0996094 z M 19 10.099609 C 20.108 10.099609 21 10.991609 21 12.099609 C 21
13.207609 20.108 14.099609 19 14.099609 C 17.892 14.099609 17 13.207609 17
12.099609 C 17 10.991609 17.892 10.099609 19 10.099609 z M 13 11 C 11.338 11 10
12.338 10 14 C 10 15.662 11.338 17 13 17 C 14.662 17 16 15.662 16 14 C 16
12.338 14.662 11 13 11 z M 13 17 C 10.22998 17 8 19.22998 8 22 L 8 23 L 18 23 L
18 22 C 18 19.22998 15.77002 17 13 17 z M 13 12 C 14.108 12 15 12.892 15 14 C
15 15.108 14.108 16 13 16 C 11.892 16 11 15.108 11 14 C 11 12.892 11.892 12
13 12 z M 13 18 C 15.21602 18 17 19.78398 17 22 L 9 22 C 9 19.78398 10.78398 18
13 18 z " transform="matrix(1 0 0 1 384.57143 515.798)"/>
+ </g>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/status/22/network-bluetooth-symbolic.svg
new/breeze-icons-6.16.0/icons/status/22/network-bluetooth-symbolic.svg
--- old/breeze-icons-6.15.0/icons/status/22/network-bluetooth-symbolic.svg
2025-07-14 10:48:53.033672285 +0200
+++ new/breeze-icons-6.16.0/icons/status/22/network-bluetooth-symbolic.svg
2025-07-04 17:09:08.000000000 +0200
@@ -1 +1,11 @@
-symbolic link to network-bluetooth.svg
+<svg height="22" width="22"
+ xmlns="http://www.w3.org/2000/svg">
+ <defs id="defs4157">
+ <style id="current-color-scheme" type="text/css">
+ .ColorScheme-Text {
+ color:#31363b;
+ }
+ </style>
+ </defs>
+ <path class="ColorScheme-Text"
style="text-decoration:none;text-decoration-line:none;text-decoration-style:solid;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:currentColor;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 10.998047,3 v 0.00195 7.039063 l -3.292969,-3.2929692 -0.002,0.00195 C
7.347329,6.39404 6.707031,5.7539062 6.707031,5.7539062 L 6,6.4609375
10.544922,11.001953 6,15.542969 6.707031,16.25 c 0,0 0.640351,-0.640094
0.996094,-0.996094 h 0.002 L 11,11.960938 V 19 h 1 L 16,15 12,11 16,7 12,3 Z M
12,4.4160156 14.585938,7.0019531 12,9.5878906 Z m 0,8.0000004 2.585938,2.585937
L 12,17.587891 Z" id="rect4163-9" />
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/status/22/network-bluetooth.svg
new/breeze-icons-6.16.0/icons/status/22/network-bluetooth.svg
--- old/breeze-icons-6.15.0/icons/status/22/network-bluetooth.svg
2025-06-06 15:28:31.000000000 +0200
+++ new/breeze-icons-6.16.0/icons/status/22/network-bluetooth.svg
1970-01-01 01:00:00.000000000 +0100
@@ -1,11 +0,0 @@
-<svg height="22" width="22"
- xmlns="http://www.w3.org/2000/svg">
- <defs id="defs4157">
- <style id="current-color-scheme" type="text/css">
- .ColorScheme-Text {
- color:#31363b;
- }
- </style>
- </defs>
- <path class="ColorScheme-Text"
style="text-decoration:none;text-decoration-line:none;text-decoration-style:solid;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:currentColor;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 10.998047,3 v 0.00195 7.039063 l -3.292969,-3.2929692 -0.002,0.00195 C
7.347329,6.39404 6.707031,5.7539062 6.707031,5.7539062 L 6,6.4609375
10.544922,11.001953 6,15.542969 6.707031,16.25 c 0,0 0.640351,-0.640094
0.996094,-0.996094 h 0.002 L 11,11.960938 V 19 h 1 L 16,15 12,11 16,7 12,3 Z M
12,4.4160156 14.585938,7.0019531 12,9.5878906 Z m 0,8.0000004 2.585938,2.585937
L 12,17.587891 Z" id="rect4163-9" />
-</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/breeze-icons-6.15.0/icons/status/22/network-vpn.svg
new/breeze-icons-6.16.0/icons/status/22/network-vpn.svg
--- old/breeze-icons-6.15.0/icons/status/22/network-vpn.svg 2025-06-06
15:28:31.000000000 +0200
+++ new/breeze-icons-6.16.0/icons/status/22/network-vpn.svg 1970-01-01
01:00:00.000000000 +0100
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" width="22"
height="22">
- <style type="text/css" id="current-color-scheme">
- .ColorScheme-Text {
- color:#31363b;
- }
- .ColorScheme-Background {
- color:#eff0f1;
- }
- .ColorScheme-Accent {
- color:#3498db;
- }
- .ColorScheme-ButtonText {
- color:#31363b;
- }
- .ColorScheme-NegativeText{
- color:#e74c3c;
- }
- </style>
- <g id="network-vpn" transform="translate(-22,-128)">
- <rect style="opacity:1;fill:none;fill-opacity:1;stroke:none" id="rect6813"
width="22.000004" height="22.000004" x="22.000002" y="127.99998"/>
- <path class="ColorScheme-Text"
style="fill:currentColor;fill-opacity:1;stroke:none" d="m 33.000002,130.99999 c
0,0 -2,2.65752 -8,3.32422 0,0 0,9.33388 8,12.67578 8,-3.3419 8,-12.67578
8,-12.67578 -6,-0.6667 -8,-3.32422 -8,-3.32422 z m 0,1.37695 c 1.587,1.3447
3.87716,2.24176 6.8457,2.69336 -0.16126,1.4452 -0.31587,2.53279
-0.68945,3.58399 -0.78509,2.2091 -1.70047,3.55303 -2.52148,4.51953
-1.27223,1.4977 -2.42758,2.10383 -3.63477,2.70703 -1.20719,-0.6032
-2.36254,-1.20933 -3.63477,-2.70703 -0.821,-0.9665 -1.73639,-2.31043
-2.52148,-4.51953 -0.37358,-1.0512 -0.52819,-2.13879 -0.68945,-3.58399
2.96854,-0.5516 5.2587,-1.34866 6.8457,-2.69336 z m 0,1.19922 c -1.74349,1.2103
-3.70215,1.82324 -5.66797,2.24024 0.93085,5.282 2.93609,7.54067 5.66797,8.95507
2.73189,-1.4144 4.73712,-3.67307 5.66797,-8.95507 -1.96582,-0.417
-3.92448,-1.02994 -5.66797,-2.24024 z" id="path4943-9-4-1-2"/>
- </g>
-</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/status/22/wallet-closed.svg
new/breeze-icons-6.16.0/icons/status/22/wallet-closed.svg
--- old/breeze-icons-6.15.0/icons/status/22/wallet-closed.svg 2025-06-06
15:28:31.000000000 +0200
+++ new/breeze-icons-6.16.0/icons/status/22/wallet-closed.svg 1970-01-01
01:00:00.000000000 +0100
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" width="22"
height="22">
- <style type="text/css" id="current-color-scheme">
- .ColorScheme-Text {
- color:#31363b;
- }
- .ColorScheme-Background {
- color:#eff0f1;
- }
- .ColorScheme-Accent {
- color:#3daee9;
- }
- .ColorScheme-ButtonText {
- color:#31363b;
- }
- </style>
- <g id="wallet-closed" transform="translate(-22,0)">
- <path inkscape:connector-curvature="0"
style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none" d="m 24,7 0,1
0,10 c 0,0.554 0.446,1 1,1 l 16,0 1,0 0,-1 0,-10 C 42,7.446 41.554,7 41,7 L
25,7 Z m 1,1 16,0 0,3 -2,0 -5,0 c -1.108,0 -2,0.892 -2,2 0,1.108 0.892,2 2,2 l
5,0 2,0 0,3 -16,0 z m 10,4 c 0.552285,0 1,0.447715 1,1 0,0.552285 -0.447715,1
-1,1 -0.552285,0 -1,-0.447715 -1,-1 0,-0.552285 0.447715,-1 1,-1 z"
id="path4200" sodipodi:nodetypes="ccsscccssccccccssscccccsssss"
class="ColorScheme-Text"/>
- <rect y="0" x="22" height="22" width="22" id="rect4222"
style="opacity:1;fill:none;fill-opacity:1;stroke:none"/>
- </g>
-</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/breeze-icons-6.15.0/icons/status/22/wallet-open.svg
new/breeze-icons-6.16.0/icons/status/22/wallet-open.svg
--- old/breeze-icons-6.15.0/icons/status/22/wallet-open.svg 2025-06-06
15:28:31.000000000 +0200
+++ new/breeze-icons-6.16.0/icons/status/22/wallet-open.svg 1970-01-01
01:00:00.000000000 +0100
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" width="22"
height="22">
- <style type="text/css" id="current-color-scheme">
- .ColorScheme-Text {
- color:#31363b;
- }
- .ColorScheme-Background {
- color:#eff0f1;
- }
- .ColorScheme-Accent {
- color:#3daee9;
- }
- .ColorScheme-ButtonText {
- color:#31363b;
- }
- </style>
- <g id="wallet-open">
- <path id="rect4188" d="M 3,3 3,7 2,7 2,8 2,18 c 0,0.554 0.446,1 1,1 l 16,0
1,0 0,-1 0,-10 C 20,7.446 19.554,7 19,7 l -5,0 0,-4 z m 1,1 9,0 0,3 -2.507812,0
C 10.021704,6.3726797 9.284143,6.0024532 8.5,6 7.7137941,6.0006144
6.9736765,6.3710349 6.5019531,7 L 4,7 Z M 3,8 4,8 6.0507812,8 10.945312,8 13,8
l 1,0 5,0 0,3 -2,0 -5,0 c -1.108,0 -2,0.892 -2,2 0,1.108 0.892,2 2,2 l 5,0 2,0
0,3 -16,0 z m 10,4 c 0.552285,0 1,0.447715 1,1 0,0.552285 -0.447715,1 -1,1
-0.552285,0 -1,-0.447715 -1,-1 0,-0.552285 0.447715,-1 1,-1 z"
style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccsscccssccccccccccccccccccccssscccccsssss"
class="ColorScheme-Text"/>
- <rect y="0" x="0" height="22" width="22" id="rect4216"
style="opacity:1;fill:none;fill-opacity:1;stroke:none"/>
- </g>
-</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/breeze-icons-6.15.0/icons/status/64/printer-error.svg
new/breeze-icons-6.16.0/icons/status/64/printer-error.svg
--- old/breeze-icons-6.15.0/icons/status/64/printer-error.svg 1970-01-01
01:00:00.000000000 +0100
+++ new/breeze-icons-6.16.0/icons/status/64/printer-error.svg 2025-07-04
17:09:08.000000000 +0200
@@ -0,0 +1,90 @@
+<svg version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs>
+ <linearGradient id="linearGradient4903">
+ <stop stop-color="#eef1f2" offset="0"/>
+ <stop stop-color="#f9fafb" offset="1"/>
+ </linearGradient>
+ <linearGradient id="linearGradient4770">
+ <stop offset="0"/>
+ <stop stop-opacity="0" offset="1"/>
+ </linearGradient>
+ <linearGradient id="linearGradient4191">
+ <stop stop-color="#18222a" offset="0"/>
+ <stop stop-color="#566069" offset="1"/>
+ </linearGradient>
+ <linearGradient id="linearGradient4617" x2="0" y1="531.79797"
y2="501.69922" gradientTransform="matrix(1.0833316 0 0 1.1666676 -34.04692
-84.63341)" gradientUnits="userSpaceOnUse">
+ <stop stop-color="#c6cdd1" offset="0"/>
+ <stop stop-color="#e0e5e7" offset="1"/>
+ </linearGradient>
+ <linearGradient id="linearGradient4930" x2="0" y1="533.79797"
y2="537.79797" gradientTransform="matrix(1.1111099 0 0 1 -45.39633 0)"
gradientUnits="userSpaceOnUse" xlink:href="#linearGradient4191"/>
+ <linearGradient id="linearGradient4938" x2="0" y1="514.79797"
y2="511.798" gradientTransform="matrix(1 0 0 2.2857186 0 -664.88526)"
gradientUnits="userSpaceOnUse" xlink:href="#linearGradient4191"/>
+ <linearGradient id="linearGradient4950" x1="391.57144" x2="404.57147"
y1="533.79797" y2="546.79797" gradientTransform="translate(-2)"
gradientUnits="userSpaceOnUse" xlink:href="#linearGradient4770"/>
+ <linearGradient id="linearGradient4950-6" x1="391.57144"
x2="404.57147" y1="533.79797" y2="546.79797" gradientTransform="translate(0
-22)" gradientUnits="userSpaceOnUse" xlink:href="#linearGradient4770"/>
+ <linearGradient id="linearGradient4982" x1="394.57144" x2="422.57142"
gradientTransform="matrix(1.1428557 0 0 1 -58.36675 0)"
gradientUnits="userSpaceOnUse">
+ <stop stop-color="#e74c3c" offset="0"/>
+ <stop stop-color="#f39c1f" offset=".25"/>
+ <stop stop-color="#11d116" offset=".5"/>
+ <stop stop-color="#3498db" offset=".75"/>
+ <stop stop-color="#9b59b6" offset="1"/>
+ </linearGradient>
+ <linearGradient id="linearGradient4386" x2="0" y1="505.798"
y2="503.798" gradientTransform="translate(0 -12)"
gradientUnits="userSpaceOnUse" xlink:href="#linearGradient4903"/>
+ <linearGradient id="linearGradient4394" x2="0" y1="519.79797"
y2="507.798" gradientTransform="matrix(1 0 0 1.3333333 0 -181.26599)"
gradientUnits="userSpaceOnUse" xlink:href="#linearGradient4903"/>
+ <linearGradient id="linearGradient4402" x2="0" y1="507.798"
y2="505.798" gradientTransform="translate(0 -12)"
gradientUnits="userSpaceOnUse" xlink:href="#linearGradient4903"/>
+ <linearGradient id="linearGradient4199">
+ <stop stop-color="#2f3943" offset="0"/>
+ <stop stop-color="#4d5662" offset="1"/>
+ </linearGradient>
+ <linearGradient id="linearGradient4545" x2="0" y1="28" y2="12"
gradientTransform="translate(382.57145 501.79803)"
gradientUnits="userSpaceOnUse" xlink:href="#linearGradient4199"/>
+ <linearGradient id="linearGradient4545-5" x2="0" y1="28" y2="12"
gradientTransform="matrix(-1 0 0 1 434.57145 501.79803)"
gradientUnits="userSpaceOnUse" xlink:href="#linearGradient4199"/>
+ <linearGradient id="linearGradient4852" x1="425.57144" x2="390.57144"
y1="524.79797" y2="511.798" gradientUnits="userSpaceOnUse"
xlink:href="#linearGradient4199"/>
+ <mask id="mask-powermask-path-effect1919" maskUnits="userSpaceOnUse">
+ <path id="mask-powermask-path-effect1919_box" d="m381.57144
490.798h54.00001v54h-54.00001z" fill="#fff"/>
+ <g transform="matrix(1.125,0,0,1.125,414.19647,523.42298)">
+ <rect class="ColorScheme-NegativeText" x="3" y="3" width="16"
height="16" rx="2" color="currentColor"/>
+ </g>
+ </mask>
+ </defs>
+ <g transform="translate(-376.57147 -485.79798)"
mask="url(#mask-powermask-path-effect1919)">
+ <g stroke-linejoin="round">
+ <path d="m382.57147 507.798h51.99998v28h-51.99998z"
fill="url(#linearGradient4617)" stroke-linecap="round" stroke-width="2"/>
+ <path d="m382.57144 535.79803h52.00001v1.99998h-52.00001z"
fill="#737b81" stroke-linecap="round" stroke-width="2"/>
+ <g stroke-width=".5">
+ <path d="m388.57144 533.79797h39.99996v7h-39.99996z"
fill="url(#linearGradient4930)"/>
+ <path d="m390.57144 533.79797h35.99996v9.99995h-35.99996z"
fill="#eff0f1"/>
+ <path d="m390.57144 495.79797h36v16.00003h-36z"
fill="url(#linearGradient4938)"/>
+ <path d="m392.57144 491.798h32v16h-32z"
fill="url(#linearGradient4386)"/>
+ <path d="m392.57144 533.79797h31.99993v8.00003h-31.99993z"
fill="url(#linearGradient4982)"/>
+ </g>
+ </g>
+ <path d="m388.57143 533.798 10 10h24v-3h2v-7z"
fill="url(#linearGradient4950)" fill-rule="evenodd" opacity=".2"/>
+ <path d="m392.57144 493.798h32v12h-32z"
fill="url(#linearGradient4402)" stroke-linejoin="round" stroke-width=".5"/>
+ <path d="m392.57144 495.798h32v16h-32z"
fill="url(#linearGradient4394)" stroke-linejoin="round" stroke-width=".5"/>
+ <g stroke-linecap="round" stroke-width="2">
+ <g stroke-linejoin="round">
+ <path d="m382.57145 509.79803v22h2c1.10802 0 2-0.89198
2-2v-18c0-1.10802-1-2-2-2z" fill="url(#linearGradient4545)"/>
+ <path d="m434.57145 509.79803v22h-2c-1.10802
0-2-0.89198-2-2v-18c0-1.10802 1-2 2-2z" fill="url(#linearGradient4545-5)"/>
+ <path d="m433.57144 529.79797a1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1
0 0 1 1-1 1 1 0 0 1 1 1z" fill="#11d116"/>
+ </g>
+ <path d="m386.57144 527.79797h44v1h-44z" fill="#99a1a7"
stroke-linejoin="bevel"/>
+ <path d="m390.57147 511.79798v10c0 1.108 0.892 2 2 2h32c1.108 0
2-0.892 2-2v-10z" fill="url(#linearGradient4852)" stroke-linejoin="bevel"/>
+ </g>
+ <path d="m390.57143 511.798 14 14h22v-14z"
fill="url(#linearGradient4950-6)" fill-rule="evenodd" opacity=".2"/>
+ <path d="m407.57147 515.79791c-0.1385 0-0.25 0.1115-0.25 0.25s0.1115
0.25 0.25 0.25 0.25-0.1115 0.25-0.25-0.1115-0.25-0.25-0.25zm1.75 0-0.5 0.5 0.75
0.75-0.75 0.75 0.5 0.5 1.25-1.25zm-2.375 1.5c-0.20775 0-0.375 0.16725-0.375
0.375s0.16725 0.375 0.375 0.375 0.375-0.16725
0.375-0.375-0.16725-0.375-0.375-0.375zm1.125 1.5c-0.277 0-0.5 0.223-0.5
0.5s0.223 0.5 0.5 0.5 0.5-0.223 0.5-0.5-0.223-0.5-0.5-0.5z" fill="#d9d9d9"/>
+ </g>
+ <style id="current-color-scheme" type="text/css">.ColorScheme-NeutralText {
+ color:#f67400;
+ }
+ .ColorScheme-Text {
+ color:#232629;
+ }</style>
+ <style type="text/css">.ColorScheme-NegativeText {
+ color:#da4453;
+ }</style>
+ <style type="text/css">.ColorScheme-NegativeText {
+ color:#da4453;
+ }</style>
+ <g transform="translate(39,39)">
+ <rect class="ColorScheme-NegativeText" x="3" y="3" width="16"
height="16" rx="2" fill="currentColor"/>
+ <path d="M 6.414,5 5,6.414 9.586,11 5,15.586 6.414,17 11,12.414
15.586,17 17,15.586 12.414,11 17,6.414 15.586,5 11,9.586 Z" fill="#fff"/>
+ </g>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/breeze-icons-6.15.0/src/lib/CMakeLists.txt
new/breeze-icons-6.16.0/src/lib/CMakeLists.txt
--- old/breeze-icons-6.15.0/src/lib/CMakeLists.txt 2025-06-06
15:28:31.000000000 +0200
+++ new/breeze-icons-6.16.0/src/lib/CMakeLists.txt 2025-07-04
17:09:08.000000000 +0200
@@ -24,8 +24,9 @@
install(FILES ${RESOURCE_FILE_BINARY} DESTINATION
${KDE_INSTALL_FULL_ICONDIR}/breeze)
endif()
-# use normal resource adding, big resource variant has issue with LTO
-qt_add_resources(kbreezeicons_resource_SRCS
+# use big resource variant, else we OOM on 32 bit machines
+# this has issues with LTO, we have a unit test that tells if stuff got lost
in the DLL
+qt_add_big_resources(kbreezeicons_resource_SRCS
${RESOURCE_FILE}
OPTIONS --root /icons/breeze
)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/breeze-icons-6.15.0/src/lib/breezeicons.cpp
new/breeze-icons-6.16.0/src/lib/breezeicons.cpp
--- old/breeze-icons-6.15.0/src/lib/breezeicons.cpp 2025-06-06
15:28:31.000000000 +0200
+++ new/breeze-icons-6.16.0/src/lib/breezeicons.cpp 2025-07-04
17:09:08.000000000 +0200
@@ -10,11 +10,20 @@
#include <QIcon>
+static void resourceInit()
+{
+ // needs to be called outside of namespace
+ Q_INIT_RESOURCE(breeze_icons);
+}
+
namespace BreezeIcons
{
void initIcons()
{
+ // ensure the resource is there and loaded for static libs
+ resourceInit();
+
// ensure we fallback to breeze, if no user fallback is set
const QString fallbackTheme = QIcon::fallbackThemeName();
if (fallbackTheme.isEmpty() || fallbackTheme == QLatin1String("hicolor")) {