Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package libkdecoration2 for openSUSE:Factory
checked in at 2023-02-13 16:39:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libkdecoration2 (Old)
and /work/SRC/openSUSE:Factory/.libkdecoration2.new.1848 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libkdecoration2"
Mon Feb 13 16:39:54 2023 rev:139 rq:1064520 version:5.27.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/libkdecoration2/libkdecoration2.changes
2023-01-06 17:04:14.779740169 +0100
+++
/work/SRC/openSUSE:Factory/.libkdecoration2.new.1848/libkdecoration2.changes
2023-02-13 16:41:55.139728809 +0100
@@ -1,0 +2,21 @@
+Thu Feb 9 14:19:42 UTC 2023 - Fabian Vogt <[email protected]>
+
+- Update to 5.27.0
+ * New bugfix release
+ * For more details please see:
+ * https://kde.org/announcements/plasma/5/5.27.0
+- No code changes since 5.26.90
+
+-------------------------------------------------------------------
+Thu Jan 19 14:43:00 UTC 2023 - Fabian Vogt <[email protected]>
+
+- Update to 5.26.90
+ * New feature release
+ * For more details please see:
+ * https://kde.org/announcements/plasma/5/5.26.90
+- Changes since 5.26.5:
+ * port all headers to pragma once
+ * Add DecoratedClient::windowClass()
+ * Floor mouse positions rather than rounding
+
+-------------------------------------------------------------------
Old:
----
kdecoration-5.26.5.tar.xz
kdecoration-5.26.5.tar.xz.sig
New:
----
kdecoration-5.27.0.tar.xz
kdecoration-5.27.0.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ libkdecoration2.spec ++++++
--- /var/tmp/diff_new_pack.NlKePJ/_old 2023-02-13 16:41:55.559731284 +0100
+++ /var/tmp/diff_new_pack.NlKePJ/_new 2023-02-13 16:41:55.563731307 +0100
@@ -17,20 +17,20 @@
%global sover 5
-%global private_sover 9
+%global private_sover 10
%define lname libkdecorations2-%{sover}
%define lname_private libkdecorations2private%{private_sover}
%bcond_without released
Name: libkdecoration2
-Version: 5.26.5
+Version: 5.27.0
Release: 0
Summary: KDE's window decorations library
License: GPL-2.0-or-later
Group: System/GUI/KDE
URL: http://www.kde.org
-Source:
https://download.kde.org/stable/plasma/%{version}/kdecoration-%{version}.tar.xz
+Source: kdecoration-%{version}.tar.xz
%if %{with released}
-Source1:
https://download.kde.org/stable/plasma/%{version}/kdecoration-%{version}.tar.xz.sig
+Source1: kdecoration-%{version}.tar.xz.sig
Source2: plasma.keyring
%endif
BuildRequires: cmake >= 3.16
@@ -76,17 +76,16 @@
%lang_package -n %{lname}
%prep
-%setup -q -n kdecoration-%{version}
+%autosetup -p1 -n kdecoration-%{version}
%build
- %cmake_kf5 -d build
- %cmake_build
+%cmake_kf5 -d build
+%cmake_build
%install
- %kf5_makeinstall -C build
- %if %{with released}
- %find_lang %{name} --all-name
- %endif
+%kf5_makeinstall -C build
+
+%find_lang %{name} --all-name
%post -n %{lname} -p /sbin/ldconfig
%postun -n %{lname} -p /sbin/ldconfig
@@ -111,9 +110,7 @@
%{_kf5_prefix}/include/KDecoration2/
%{_kf5_includedir}/
-%if %{with released}
%files -n %{lname}-lang -f %{name}.lang
%license LICENSES/*
-%endif
%changelog
++++++ kdecoration-5.26.5.tar.xz -> kdecoration-5.27.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/CMakeLists.txt
new/kdecoration-5.27.0/CMakeLists.txt
--- old/kdecoration-5.26.5/CMakeLists.txt 2023-01-03 19:01:20.000000000
+0100
+++ new/kdecoration-5.27.0/CMakeLists.txt 2023-02-09 12:59:32.000000000
+0100
@@ -1,10 +1,10 @@
cmake_minimum_required(VERSION 3.16)
project(decoration-api)
-set(PROJECT_VERSION "5.26.5")
+set(PROJECT_VERSION "5.27.0")
set(QT_MIN_VERSION "5.15.2")
-set(KF5_MIN_VERSION "5.98.0")
+set(KF5_MIN_VERSION "5.102.0")
set(KDE_COMPILERSETTINGS_LEVEL "5.82")
find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/autotests/mockbridge.h
new/kdecoration-5.27.0/autotests/mockbridge.h
--- old/kdecoration-5.26.5/autotests/mockbridge.h 2023-01-03
19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/autotests/mockbridge.h 2023-02-09
12:59:32.000000000 +0100
@@ -3,8 +3,7 @@
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR
LicenseRef-KDE-Accepted-LGPL
*/
-#ifndef MOCK_BRIDGE_H
-#define MOCK_BRIDGE_H
+#pragma once
#include "../src/private/decorationbridge.h"
#include <QObject>
@@ -32,5 +31,3 @@
MockClient *m_lastCreatedClient = nullptr;
MockSettings *m_lastCreatedSettings = nullptr;
};
-
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/autotests/mockbutton.h
new/kdecoration-5.27.0/autotests/mockbutton.h
--- old/kdecoration-5.26.5/autotests/mockbutton.h 2023-01-03
19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/autotests/mockbutton.h 2023-02-09
12:59:32.000000000 +0100
@@ -3,8 +3,7 @@
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR
LicenseRef-KDE-Accepted-LGPL
*/
-#ifndef MOCK_BUTTON_H
-#define MOCK_BUTTON_H
+#pragma once
#include "../src/decorationbutton.h"
@@ -15,5 +14,3 @@
MockButton(KDecoration2::DecorationButtonType type, const
QPointer<KDecoration2::Decoration> &decoration, QObject *parent = nullptr);
void paint(QPainter *painter, const QRect &repaintRegion) override;
};
-
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/autotests/mockclient.cpp
new/kdecoration-5.27.0/autotests/mockclient.cpp
--- old/kdecoration-5.26.5/autotests/mockclient.cpp 2023-01-03
19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/autotests/mockclient.cpp 2023-02-09
12:59:32.000000000 +0100
@@ -237,6 +237,11 @@
return m_width;
}
+QString MockClient::windowClass() const
+{
+ return QString();
+}
+
WId MockClient::windowId() const
{
return 0;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/autotests/mockclient.h
new/kdecoration-5.27.0/autotests/mockclient.h
--- old/kdecoration-5.26.5/autotests/mockclient.h 2023-01-03
19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/autotests/mockclient.h 2023-02-09
12:59:32.000000000 +0100
@@ -3,8 +3,7 @@
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR
LicenseRef-KDE-Accepted-LGPL
*/
-#ifndef MOCK_CLIENT_H
-#define MOCK_CLIENT_H
+#pragma once
#include "../src/private/decoratedclientprivate.h"
@@ -56,6 +55,7 @@
QSize size() const override;
int width() const override;
WId windowId() const override;
+ QString windowClass() const override;
void showApplicationMenu(int actionId) override;
@@ -90,5 +90,3 @@
int m_width = 0;
int m_height = 0;
};
-
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/autotests/mockdecoration.h
new/kdecoration-5.27.0/autotests/mockdecoration.h
--- old/kdecoration-5.26.5/autotests/mockdecoration.h 2023-01-03
19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/autotests/mockdecoration.h 2023-02-09
12:59:32.000000000 +0100
@@ -3,8 +3,7 @@
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR
LicenseRef-KDE-Accepted-LGPL
*/
-#ifndef MOCK_DECORATION_H
-#define MOCK_DECORATION_H
+#pragma once
#include "../src/decoration.h"
@@ -23,5 +22,3 @@
using Decoration::setTitleBar;
void setTitleBar(const QRect &rect);
};
-
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/autotests/mocksettings.h
new/kdecoration-5.27.0/autotests/mocksettings.h
--- old/kdecoration-5.26.5/autotests/mocksettings.h 2023-01-03
19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/autotests/mocksettings.h 2023-02-09
12:59:32.000000000 +0100
@@ -3,8 +3,7 @@
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR
LicenseRef-KDE-Accepted-LGPL
*/
-#ifndef MOCK_SETTINGS_H
-#define MOCK_SETTINGS_H
+#pragma once
#include "../src/private/decorationsettingsprivate.h"
@@ -27,5 +26,3 @@
bool m_onAllDesktopsAvailable = false;
bool m_closeDoubleClickOnMenu = false;
};
-
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/az/kdecoration.po
new/kdecoration-5.27.0/po/az/kdecoration.po
--- old/kdecoration-5.26.5/po/az/kdecoration.po 2023-01-03 19:01:21.000000000
+0100
+++ new/kdecoration-5.27.0/po/az/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2022-07-03 13:56+0400\n"
"Last-Translator: Kheyyam <[email protected]>\n"
"Language-Team: Azerbaijani <[email protected]>\n"
@@ -90,4 +90,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "DigÉr pÉncÉrÉlÉrin üzÉrindÉ tutmaq"
\ No newline at end of file
+msgstr "DigÉr pÉncÉrÉlÉrin üzÉrindÉ tutmaq"
+
+#~ msgid "Menu"
+#~ msgstr "Menyu"
+
+#~ msgid "Keep below"
+#~ msgstr "AÅaÄıda tutmaq"
+
+#~ msgid "Keep above"
+#~ msgstr "Yuxarıda tutmaq"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/bg/kdecoration.po
new/kdecoration-5.27.0/po/bg/kdecoration.po
--- old/kdecoration-5.26.5/po/bg/kdecoration.po 2023-01-03 19:01:22.000000000
+0100
+++ new/kdecoration-5.27.0/po/bg/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2022-05-20 19:35+0200\n"
"Last-Translator: Mincho Kondarev <[email protected]>\n"
"Language-Team: Bulgarian <[email protected]>\n"
@@ -90,4 +90,4 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "ÐадÑÑжане над дÑÑгиÑе пÑозоÑÑи"
\ No newline at end of file
+msgstr "ÐадÑÑжане над дÑÑгиÑе пÑозоÑÑи"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/ca/kdecoration.po
new/kdecoration-5.27.0/po/ca/kdecoration.po
--- old/kdecoration-5.26.5/po/ca/kdecoration.po 2023-01-03 19:01:23.000000000
+0100
+++ new/kdecoration-5.27.0/po/ca/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-05-05 16:55+0200\n"
"Last-Translator: Antoni Bella Pérez <[email protected]>\n"
"Language-Team: Catalan <[email protected]>\n"
@@ -95,4 +95,4 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Mantén al damunt de les altres finestres"
\ No newline at end of file
+msgstr "Mantén al damunt de les altres finestres"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/ca@valencia/kdecoration.po
new/kdecoration-5.27.0/po/ca@valencia/kdecoration.po
--- old/kdecoration-5.26.5/po/ca@valencia/kdecoration.po 2023-01-03
19:01:23.000000000 +0100
+++ new/kdecoration-5.27.0/po/ca@valencia/kdecoration.po 2023-02-09
12:59:32.000000000 +0100
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-05-05 16:55+0200\n"
"Last-Translator: Antoni Bella Pérez <[email protected]>\n"
"Language-Team: Catalan <[email protected]>\n"
@@ -95,4 +95,4 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "MantÃn al damunt de les altres finestres"
\ No newline at end of file
+msgstr "MantÃn al damunt de les altres finestres"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/cs/kdecoration.po
new/kdecoration-5.27.0/po/cs/kdecoration.po
--- old/kdecoration-5.26.5/po/cs/kdecoration.po 2023-01-03 19:01:24.000000000
+0100
+++ new/kdecoration-5.27.0/po/cs/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-05-13 13:38+0200\n"
"Last-Translator: Vit Pelcak <[email protected]>\n"
"Language-Team: Czech <[email protected]>\n"
@@ -90,4 +90,4 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Podržet nad jinými okny"
\ No newline at end of file
+msgstr "Podržet nad jinými okny"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/da/kdecoration.po
new/kdecoration-5.27.0/po/da/kdecoration.po
--- old/kdecoration-5.26.5/po/da/kdecoration.po 2023-01-03 19:01:24.000000000
+0100
+++ new/kdecoration-5.27.0/po/da/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2019-05-07 13:23+0100\n"
"Last-Translator: Martin Schlander <[email protected]>\n"
"Language-Team: Danish <[email protected]>\n"
@@ -92,4 +92,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr ""
\ No newline at end of file
+msgstr ""
+
+#~ msgid "Menu"
+#~ msgstr "Menu"
+
+#~ msgid "Keep below"
+#~ msgstr "Hold under"
+
+#~ msgid "Keep above"
+#~ msgstr "Hold over"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/de/kdecoration.po
new/kdecoration-5.27.0/po/de/kdecoration.po
--- old/kdecoration-5.26.5/po/de/kdecoration.po 2023-01-03 19:01:24.000000000
+0100
+++ new/kdecoration-5.27.0/po/de/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-05-05 05:59+0200\n"
"Last-Translator: Burkhard Lück <[email protected]>\n"
"Language-Team: German <[email protected]>\n"
@@ -90,4 +90,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Fenster im Vordergrund halten"
\ No newline at end of file
+msgstr "Fenster im Vordergrund halten"
+
+#~ msgid "Menu"
+#~ msgstr "Menü"
+
+#~ msgid "Keep below"
+#~ msgstr "Im Hintergrund halten"
+
+#~ msgid "Keep above"
+#~ msgstr "Im Vordergrund halten"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/el/kdecoration.po
new/kdecoration-5.27.0/po/el/kdecoration.po
--- old/kdecoration-5.26.5/po/el/kdecoration.po 2023-01-03 19:01:25.000000000
+0100
+++ new/kdecoration-5.27.0/po/el/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-06-14 16:27+0300\n"
"Last-Translator: Stelios <[email protected]>\n"
"Language-Team: Greek <[email protected]>\n"
@@ -90,4 +90,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Îα μείνει ÏÎ¬Î½Ï Î±ÏÏ Î¬Î»Î»Î± ÏαÏάθÏ
Ïα"
\ No newline at end of file
+msgstr "Îα μείνει ÏÎ¬Î½Ï Î±ÏÏ Î¬Î»Î»Î± ÏαÏάθÏ
Ïα"
+
+#~ msgid "Menu"
+#~ msgstr "ÎενοÏ"
+
+#~ msgid "Keep below"
+#~ msgstr "Îα μείνει αÏÏ ÎºÎ¬ÏÏ"
+
+#~ msgid "Keep above"
+#~ msgstr "Îα μείνει αÏÏ ÏάνÏ"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/en_GB/kdecoration.po
new/kdecoration-5.27.0/po/en_GB/kdecoration.po
--- old/kdecoration-5.26.5/po/en_GB/kdecoration.po 2023-01-03
19:01:25.000000000 +0100
+++ new/kdecoration-5.27.0/po/en_GB/kdecoration.po 2023-02-09
12:59:32.000000000 +0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-06-12 14:20+0100\n"
"Last-Translator: Steve Allewell <[email protected]>\n"
"Language-Team: British English <[email protected]>\n"
@@ -90,4 +90,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Keep above other windows"
\ No newline at end of file
+msgstr "Keep above other windows"
+
+#~ msgid "Menu"
+#~ msgstr "Menu"
+
+#~ msgid "Keep below"
+#~ msgstr "Keep below"
+
+#~ msgid "Keep above"
+#~ msgstr "Keep above"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/es/kdecoration.po
new/kdecoration-5.27.0/po/es/kdecoration.po
--- old/kdecoration-5.26.5/po/es/kdecoration.po 2023-01-03 19:01:26.000000000
+0100
+++ new/kdecoration-5.27.0/po/es/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-05-05 12:13+0200\n"
"Last-Translator: Eloy Cuadra <[email protected]>\n"
"Language-Team: Spanish <[email protected]>\n"
@@ -92,4 +92,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Mantener por encima de otras ventanas"
\ No newline at end of file
+msgstr "Mantener por encima de otras ventanas"
+
+#~ msgid "Menu"
+#~ msgstr "Menú"
+
+#~ msgid "Keep below"
+#~ msgstr "Mantener por debajo"
+
+#~ msgid "Keep above"
+#~ msgstr "Mantener por encima"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/et/kdecoration.po
new/kdecoration-5.27.0/po/et/kdecoration.po
--- old/kdecoration-5.26.5/po/et/kdecoration.po 2023-01-03 19:01:26.000000000
+0100
+++ new/kdecoration-5.27.0/po/et/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2019-11-08 21:30+0200\n"
"Last-Translator: Marek Laane <[email protected]>\n"
"Language-Team: Estonian <[email protected]>\n"
@@ -92,4 +92,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr ""
\ No newline at end of file
+msgstr ""
+
+#~ msgid "Menu"
+#~ msgstr "Menüü"
+
+#~ msgid "Keep below"
+#~ msgstr "Hoia teiste all"
+
+#~ msgid "Keep above"
+#~ msgstr "Hoia teiste peal"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/eu/kdecoration.po
new/kdecoration-5.27.0/po/eu/kdecoration.po
--- old/kdecoration-5.26.5/po/eu/kdecoration.po 2023-01-03 19:01:26.000000000
+0100
+++ new/kdecoration-5.27.0/po/eu/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-07-26 19:57+0200\n"
"Last-Translator: Iñigo Salvador Azurmendi <[email protected]>\n"
"Language-Team: Basque <[email protected]>\n"
@@ -94,4 +94,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Eutsi beste leiho batzuen gainean"
\ No newline at end of file
+msgstr "Eutsi beste leiho batzuen gainean"
+
+#~ msgid "Menu"
+#~ msgstr "Menua"
+
+#~ msgid "Keep below"
+#~ msgstr "Egon azpian"
+
+#~ msgid "Keep above"
+#~ msgstr "Egon gainean"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/fi/kdecoration.po
new/kdecoration-5.27.0/po/fi/kdecoration.po
--- old/kdecoration-5.26.5/po/fi/kdecoration.po 2023-01-03 19:01:26.000000000
+0100
+++ new/kdecoration-5.27.0/po/fi/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-05-07 11:01+0300\n"
"Last-Translator: Tommi Nieminen <[email protected]>\n"
"Language-Team: Finnish <[email protected]>\n"
@@ -90,4 +90,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Pidä muiden ikkunoiden yllä"
\ No newline at end of file
+msgstr "Pidä muiden ikkunoiden yllä"
+
+#~ msgid "Menu"
+#~ msgstr "Valikko"
+
+#~ msgid "Keep below"
+#~ msgstr "Pidä alinna"
+
+#~ msgid "Keep above"
+#~ msgstr "Pidä ylinnä"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/fr/kdecoration.po
new/kdecoration-5.27.0/po/fr/kdecoration.po
--- old/kdecoration-5.26.5/po/fr/kdecoration.po 2023-01-03 19:01:27.000000000
+0100
+++ new/kdecoration-5.27.0/po/fr/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-05-05 13:56+0200\n"
"Last-Translator: Xavier Besnard <[email protected]>\n"
"Language-Team: French <[email protected]>\n"
@@ -91,4 +91,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Conserver en dessus des autres fenêtres"
\ No newline at end of file
+msgstr "Conserver en dessus des autres fenêtres"
+
+#~ msgid "Menu"
+#~ msgstr "Menu"
+
+#~ msgid "Keep below"
+#~ msgstr "Conserver au-dessous "
+
+#~ msgid "Keep above"
+#~ msgstr "Conserver au-dessus "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/gl/kdecoration.po
new/kdecoration-5.27.0/po/gl/kdecoration.po
--- old/kdecoration-5.26.5/po/gl/kdecoration.po 2023-01-03 19:01:27.000000000
+0100
+++ new/kdecoration-5.27.0/po/gl/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2019-10-19 22:00+0200\n"
"Last-Translator: Adrián Chaves (Gallaecio) <[email protected]>\n"
"Language-Team: Galician <[email protected]>\n"
@@ -92,4 +92,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr ""
\ No newline at end of file
+msgstr ""
+
+#~ msgid "Menu"
+#~ msgstr "Menú"
+
+#~ msgid "Keep below"
+#~ msgstr "Manter debaixo"
+
+#~ msgid "Keep above"
+#~ msgstr "Manter enriba"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/hi/kdecoration.po
new/kdecoration-5.27.0/po/hi/kdecoration.po
--- old/kdecoration-5.26.5/po/hi/kdecoration.po 2023-01-03 19:01:28.000000000
+0100
+++ new/kdecoration-5.27.0/po/hi/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-06-29 17:56+0530\n"
"Last-Translator: Raghavendra Kamath <[email protected]>\n"
"Language-Team: kde-hindi\n"
@@ -91,4 +91,7 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "à¤
नà¥à¤¯ विà¤à¤¡à¥ à¤à¥ à¤à¤ªà¤° रà¤à¥à¤"
\ No newline at end of file
+msgstr "à¤
नà¥à¤¯ विà¤à¤¡à¥ à¤à¥ à¤à¤ªà¤° रà¤à¥à¤"
+
+#~ msgid "Menu"
+#~ msgstr "मà¥à¤¨à¥à¤¯à¥"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/hu/kdecoration.po
new/kdecoration-5.27.0/po/hu/kdecoration.po
--- old/kdecoration-5.26.5/po/hu/kdecoration.po 2023-01-03 19:01:29.000000000
+0100
+++ new/kdecoration-5.27.0/po/hu/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-11-24 13:23+0100\n"
"Last-Translator: Kristof Kiszel <[email protected]>\n"
"Language-Team: Hungarian <[email protected]>\n"
@@ -91,4 +91,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Maradjon más ablakok fölött"
\ No newline at end of file
+msgstr "Maradjon más ablakok fölött"
+
+#~ msgid "Menu"
+#~ msgstr "Menü"
+
+#~ msgid "Keep below"
+#~ msgstr "Mindig alul"
+
+#~ msgid "Keep above"
+#~ msgstr "Mindig felül"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/ia/kdecoration.po
new/kdecoration-5.27.0/po/ia/kdecoration.po
--- old/kdecoration-5.26.5/po/ia/kdecoration.po 2023-01-03 19:01:29.000000000
+0100
+++ new/kdecoration-5.27.0/po/ia/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-05-11 23:13+0100\n"
"Last-Translator: Giovanni Sora <[email protected]>\n"
"Language-Team: Interlingua <[email protected]>\n"
@@ -90,4 +90,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Mantene supra altere fenestras"
\ No newline at end of file
+msgstr "Mantene supra altere fenestras"
+
+#~ msgid "Menu"
+#~ msgstr "Menu"
+
+#~ msgid "Keep below"
+#~ msgstr "Mantene infra"
+
+#~ msgid "Keep above"
+#~ msgstr "Mantene supra"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/id/kdecoration.po
new/kdecoration-5.27.0/po/id/kdecoration.po
--- old/kdecoration-5.26.5/po/id/kdecoration.po 2023-01-03 19:01:29.000000000
+0100
+++ new/kdecoration-5.27.0/po/id/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2022-09-27 17:54+0700\n"
"Last-Translator: Wantoyèk <[email protected]>\n"
"Language-Team: Indonesian <[email protected]>\n"
@@ -91,4 +91,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Tetap di atas jendela lainnya"
\ No newline at end of file
+msgstr "Tetap di atas jendela lainnya"
+
+#~ msgid "Menu"
+#~ msgstr "Menu"
+
+#~ msgid "Keep below"
+#~ msgstr "Tetap di bawah"
+
+#~ msgid "Keep above"
+#~ msgstr "Tetap di atas"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/it/kdecoration.po
new/kdecoration-5.27.0/po/it/kdecoration.po
--- old/kdecoration-5.26.5/po/it/kdecoration.po 2023-01-03 19:01:30.000000000
+0100
+++ new/kdecoration-5.27.0/po/it/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-05-12 08:49+0200\n"
"Last-Translator: Paolo Zamponi <[email protected]>\n"
"Language-Team: Italian <[email protected]>\n"
@@ -90,4 +90,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Tieni sopra le altre finestre"
\ No newline at end of file
+msgstr "Tieni sopra le altre finestre"
+
+#~ msgid "Menu"
+#~ msgstr "Menu"
+
+#~ msgid "Keep below"
+#~ msgstr "Tieni sotto"
+
+#~ msgid "Keep above"
+#~ msgstr "Tieni sopra"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/ja/kdecoration.po
new/kdecoration-5.27.0/po/ja/kdecoration.po
--- old/kdecoration-5.26.5/po/ja/kdecoration.po 2023-01-03 19:01:30.000000000
+0100
+++ new/kdecoration-5.27.0/po/ja/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -3,7 +3,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2019-05-22 14:12+0900\n"
"Last-Translator: Tomohiro Hyakutake <[email protected]>\n"
"Language-Team: Japanese <[email protected]>\n"
@@ -91,4 +91,4 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr ""
\ No newline at end of file
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/ka/kdecoration.po
new/kdecoration-5.27.0/po/ka/kdecoration.po
--- old/kdecoration-5.26.5/po/ka/kdecoration.po 2023-01-03 19:01:30.000000000
+0100
+++ new/kdecoration-5.27.0/po/ka/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2022-05-21 14:43+0200\n"
"Last-Translator: Temuri Doghonadze <[email protected]>\n"
"Language-Team: Georgian <[email protected]>\n"
@@ -91,4 +91,4 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "ááááá á©ááá á¤ááá¯á áááá¡
ááááá á¥ááá"
\ No newline at end of file
+msgstr "ááááá á©ááá á¤ááá¯á áááá¡
ááááá á¥ááá"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/ko/kdecoration.po
new/kdecoration-5.27.0/po/ko/kdecoration.po
--- old/kdecoration-5.26.5/po/ko/kdecoration.po 2023-01-03 19:01:32.000000000
+0100
+++ new/kdecoration-5.27.0/po/ko/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-05-16 21:48+0200\n"
"Last-Translator: Shinjo Park <[email protected]>\n"
"Language-Team: Korean <[email protected]>\n"
@@ -90,4 +90,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "ë¤ë¥¸ ì°½ ìì ë기"
\ No newline at end of file
+msgstr "ë¤ë¥¸ ì°½ ìì ë기"
+
+#~ msgid "Menu"
+#~ msgstr "ë©ë´"
+
+#~ msgid "Keep below"
+#~ msgstr "íì ìëì ë기"
+
+#~ msgid "Keep above"
+#~ msgstr "íì ìì ë기"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/lt/kdecoration.po
new/kdecoration-5.27.0/po/lt/kdecoration.po
--- old/kdecoration-5.26.5/po/lt/kdecoration.po 2023-01-03 19:01:32.000000000
+0100
+++ new/kdecoration-5.27.0/po/lt/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-06-15 22:43+0300\n"
"Last-Translator: Moo\n"
"Language-Team: lt\n"
@@ -92,4 +92,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Laikyti virš kitų langų"
\ No newline at end of file
+msgstr "Laikyti virš kitų langų"
+
+#~ msgid "Menu"
+#~ msgstr "Meniu"
+
+#~ msgid "Keep below"
+#~ msgstr "Laikyti apaÄioje"
+
+#~ msgid "Keep above"
+#~ msgstr "Laikyti viršuje"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/nl/kdecoration.po
new/kdecoration-5.27.0/po/nl/kdecoration.po
--- old/kdecoration-5.26.5/po/nl/kdecoration.po 2023-01-03 19:01:34.000000000
+0100
+++ new/kdecoration-5.27.0/po/nl/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-05-05 09:39+0200\n"
"Last-Translator: Freek de Kruijf <[email protected]>\n"
"Language-Team: Dutch <[email protected]>\n"
@@ -90,4 +90,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Boven andere vensters houden"
\ No newline at end of file
+msgstr "Boven andere vensters houden"
+
+#~ msgid "Menu"
+#~ msgstr "Menu"
+
+#~ msgid "Keep below"
+#~ msgstr "Altijd op achtergrond"
+
+#~ msgid "Keep above"
+#~ msgstr "Altijd op voorgrond"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/nn/kdecoration.po
new/kdecoration-5.27.0/po/nn/kdecoration.po
--- old/kdecoration-5.26.5/po/nn/kdecoration.po 2023-01-03 19:01:34.000000000
+0100
+++ new/kdecoration-5.27.0/po/nn/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2022-06-19 13:54+0200\n"
"Last-Translator: Karl Ove Hufthammer <[email protected]>\n"
"Language-Team: Norwegian Nynorsk <[email protected]>\n"
@@ -93,4 +93,4 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Hald over andre vindauge"
\ No newline at end of file
+msgstr "Hald over andre vindauge"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/pl/kdecoration.po
new/kdecoration-5.27.0/po/pl/kdecoration.po
--- old/kdecoration-5.26.5/po/pl/kdecoration.po 2023-01-03 19:01:35.000000000
+0100
+++ new/kdecoration-5.27.0/po/pl/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-12-30 13:22+0100\n"
"Last-Translator: Åukasz WojniÅowicz <[email protected]>\n"
"Language-Team: Polish <[email protected]>\n"
@@ -91,4 +91,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Utrzymuj nad innymi oknami"
\ No newline at end of file
+msgstr "Utrzymuj nad innymi oknami"
+
+#~ msgid "Menu"
+#~ msgstr "Menu"
+
+#~ msgid "Keep below"
+#~ msgstr "Zawsze pod spodem"
+
+#~ msgid "Keep above"
+#~ msgstr "Zawsze na wierzchu"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/pt/kdecoration.po
new/kdecoration-5.27.0/po/pt/kdecoration.po
--- old/kdecoration-5.26.5/po/pt/kdecoration.po 2023-01-03 19:01:36.000000000
+0100
+++ new/kdecoration-5.27.0/po/pt/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-05-06 16:43+0100\n"
"Last-Translator: José Nuno Coelho Pires <[email protected]>\n"
"Language-Team: Portuguese <[email protected]>\n"
@@ -85,4 +85,4 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Manter acima das outras janelas"
\ No newline at end of file
+msgstr "Manter acima das outras janelas"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/pt_BR/kdecoration.po
new/kdecoration-5.27.0/po/pt_BR/kdecoration.po
--- old/kdecoration-5.26.5/po/pt_BR/kdecoration.po 2023-01-03
19:01:36.000000000 +0100
+++ new/kdecoration-5.27.0/po/pt_BR/kdecoration.po 2023-02-09
12:59:32.000000000 +0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-05-06 14:05-0300\n"
"Last-Translator: Luiz Fernando Ranghetti <[email protected]>\n"
"Language-Team: Brazilian Portuguese <[email protected]>\n"
@@ -90,4 +90,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Manter acima de outras janelas"
\ No newline at end of file
+msgstr "Manter acima de outras janelas"
+
+#~ msgid "Menu"
+#~ msgstr "Menu"
+
+#~ msgid "Keep below"
+#~ msgstr "Manter abaixo"
+
+#~ msgid "Keep above"
+#~ msgstr "Manter acima"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/ro/kdecoration.po
new/kdecoration-5.27.0/po/ro/kdecoration.po
--- old/kdecoration-5.26.5/po/ro/kdecoration.po 2023-01-03 19:01:36.000000000
+0100
+++ new/kdecoration-5.27.0/po/ro/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-06-02 20:19+0100\n"
"Last-Translator: Sergiu Bivol <[email protected]>\n"
"Language-Team: Romanian\n"
@@ -91,4 +91,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Èine deasupra altor ferestre"
\ No newline at end of file
+msgstr "Èine deasupra altor ferestre"
+
+#~ msgid "Menu"
+#~ msgstr "Meniu"
+
+#~ msgid "Keep below"
+#~ msgstr "Èine dedesubt"
+
+#~ msgid "Keep above"
+#~ msgstr "Èine deasupra"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/ru/kdecoration.po
new/kdecoration-5.27.0/po/ru/kdecoration.po
--- old/kdecoration-5.26.5/po/ru/kdecoration.po 2023-01-03 19:01:36.000000000
+0100
+++ new/kdecoration-5.27.0/po/ru/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-06-08 16:54+0300\n"
"Last-Translator: Alexander Yavorsky <[email protected]>\n"
"Language-Team: Russian <[email protected]>\n"
@@ -92,4 +92,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "УдеÑживаÑÑ Ð¿Ð¾Ð²ÐµÑÑ
дÑÑгиÑ
окон"
\ No newline at end of file
+msgstr "УдеÑживаÑÑ Ð¿Ð¾Ð²ÐµÑÑ
дÑÑгиÑ
окон"
+
+#~ msgid "Menu"
+#~ msgstr "ÐенÑ"
+
+#~ msgid "Keep below"
+#~ msgstr "ÐоддеÑживаÑÑ Ð½Ð° заднем плане"
+
+#~ msgid "Keep above"
+#~ msgstr "ÐоддеÑживаÑÑ Ð¿Ð¾Ð²ÐµÑÑ
дÑÑгиÑ
"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/sk/kdecoration.po
new/kdecoration-5.27.0/po/sk/kdecoration.po
--- old/kdecoration-5.26.5/po/sk/kdecoration.po 2023-01-03 19:01:37.000000000
+0100
+++ new/kdecoration-5.27.0/po/sk/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-07-20 17:50+0200\n"
"Last-Translator: Matej Mrenica <[email protected]>\n"
"Language-Team: Slovak <[email protected]>\n"
@@ -89,4 +89,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Držať nad ostatnými oknami"
\ No newline at end of file
+msgstr "Držať nad ostatnými oknami"
+
+#~ msgid "Menu"
+#~ msgstr "Ponuka"
+
+#~ msgid "Keep below"
+#~ msgstr "Držať pod"
+
+#~ msgid "Keep above"
+#~ msgstr "Držať nad"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/sl/kdecoration.po
new/kdecoration-5.27.0/po/sl/kdecoration.po
--- old/kdecoration-5.26.5/po/sl/kdecoration.po 2023-01-03 19:01:37.000000000
+0100
+++ new/kdecoration-5.27.0/po/sl/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-05-08 08:39+0200\n"
"Last-Translator: Matjaž Jeran <[email protected]>\n"
"Language-Team: Slovenian <[email protected]>\n"
@@ -91,4 +91,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Zadržuj nad drugimi okni"
\ No newline at end of file
+msgstr "Zadržuj nad drugimi okni"
+
+#~ msgid "Menu"
+#~ msgstr "Meni"
+
+#~ msgid "Keep below"
+#~ msgstr "Zadržuj spodaj"
+
+#~ msgid "Keep above"
+#~ msgstr "Zadržuj na vrhu"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/sv/kdecoration.po
new/kdecoration-5.27.0/po/sv/kdecoration.po
--- old/kdecoration-5.26.5/po/sv/kdecoration.po 2023-01-03 19:01:38.000000000
+0100
+++ new/kdecoration-5.27.0/po/sv/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-05-05 08:09+0200\n"
"Last-Translator: Stefan Asserhäll <[email protected]>\n"
"Language-Team: Swedish <[email protected]>\n"
@@ -90,4 +90,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "Behåll över andra fönster"
\ No newline at end of file
+msgstr "Behåll över andra fönster"
+
+#~ msgid "Menu"
+#~ msgstr "Meny"
+
+#~ msgid "Keep below"
+#~ msgstr "Behåll under"
+
+#~ msgid "Keep above"
+#~ msgstr "Behåll över"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/tr/kdecoration.po
new/kdecoration-5.27.0/po/tr/kdecoration.po
--- old/kdecoration-5.26.5/po/tr/kdecoration.po 2023-01-03 19:01:39.000000000
+0100
+++ new/kdecoration-5.27.0/po/tr/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2022-03-20 11:56+0300\n"
"Last-Translator: Emir SARI <[email protected]>\n"
"Language-Team: Turkish <[email protected]>\n"
@@ -90,4 +90,4 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "DiÄer pencerelerin üstünde tut"
\ No newline at end of file
+msgstr "DiÄer pencerelerin üstünde tut"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/uk/kdecoration.po
new/kdecoration-5.27.0/po/uk/kdecoration.po
--- old/kdecoration-5.26.5/po/uk/kdecoration.po 2023-01-03 19:01:40.000000000
+0100
+++ new/kdecoration-5.27.0/po/uk/kdecoration.po 2023-02-09 12:59:32.000000000
+0100
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
"PO-Revision-Date: 2021-05-05 08:29+0300\n"
"Last-Translator: Yuri Chornoivan <[email protected]>\n"
"Language-Team: Ukrainian <[email protected]>\n"
@@ -93,4 +93,13 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "УÑÑимÑваÑи над ÑнÑими вÑкнами"
\ No newline at end of file
+msgstr "УÑÑимÑваÑи над ÑнÑими вÑкнами"
+
+#~ msgid "Menu"
+#~ msgstr "ÐенÑ"
+
+#~ msgid "Keep below"
+#~ msgstr "ТÑимаÑи знизÑ"
+
+#~ msgid "Keep above"
+#~ msgstr "ТÑимаÑи звеÑÑ
Ñ"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/zh_CN/kdecoration.po
new/kdecoration-5.27.0/po/zh_CN/kdecoration.po
--- old/kdecoration-5.26.5/po/zh_CN/kdecoration.po 2023-01-03
19:01:41.000000000 +0100
+++ new/kdecoration-5.27.0/po/zh_CN/kdecoration.po 2023-02-09
12:59:32.000000000 +0100
@@ -2,8 +2,8 @@
msgstr ""
"Project-Id-Version: kdeorg\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
-"PO-Revision-Date: 2023-01-02 07:16\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
+"PO-Revision-Date: 2023-02-07 11:05\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"Language: zh_CN\n"
@@ -90,4 +90,4 @@
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr "ä¿æå¨å
¶ä»çªå£ä¹ä¸"
\ No newline at end of file
+msgstr "ä¿æå¨å
¶ä»çªå£ä¹ä¸"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/po/zh_TW/kdecoration.po
new/kdecoration-5.27.0/po/zh_TW/kdecoration.po
--- old/kdecoration-5.26.5/po/zh_TW/kdecoration.po 2023-01-03
19:01:42.000000000 +0100
+++ new/kdecoration-5.27.0/po/zh_TW/kdecoration.po 2023-02-09
12:59:32.000000000 +0100
@@ -2,30 +2,31 @@
# This file is distributed under the same license as the kdecoration package.
#
# pan93412 <[email protected]>, 2019.
+# Kisaragi Hiu <[email protected]>, 2023.
msgid ""
msgstr ""
"Project-Id-Version: kdecoration\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2022-10-26 02:34+0000\n"
-"PO-Revision-Date: 2019-01-04 21:04+0800\n"
-"Last-Translator: pan93412 <[email protected]>\n"
-"Language-Team: Chinese <[email protected]>\n"
+"POT-Creation-Date: 2022-10-26 00:47+0000\n"
+"PO-Revision-Date: 2023-02-02 23:03+0900\n"
+"Last-Translator: Kisaragi Hiu <[email protected]>\n"
+"Language-Team: Traditional Chinese <[email protected]>\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Lokalize 18.12.0\n"
+"X-Generator: Lokalize 23.03.70\n"
#: decorationbutton.cpp:301
#, kde-format
msgid "More actions for this window"
-msgstr ""
+msgstr "éåè¦çªçæ´å¤åä½"
#: decorationbutton.cpp:303
#, kde-format
msgid "Application menu"
-msgstr "æç¨ç¨å¼ç®é"
+msgstr "æç¨ç¨å¼é¸å®"
#: decorationbutton.cpp:306
#, kde-format
@@ -65,31 +66,38 @@
#: decorationbutton.cpp:322
#, kde-format
msgid "Unshade"
-msgstr "ééé°å½±"
+msgstr "åæ¶æ¶èµ·"
#: decorationbutton.cpp:324
#, kde-format
msgid "Shade"
-msgstr "é°å½±"
+msgstr "æ¶èµ·"
#: decorationbutton.cpp:327
-#, fuzzy, kde-format
-#| msgid "Don't keep below"
+#, kde-format
msgid "Don't keep below other windows"
-msgstr "ä¸ä¿ææ¼åºé¨é¡¯ç¤º"
+msgstr "ä¸è¦ç¶æå¨å
¶ä»è¦çªä¹ä¸"
#: decorationbutton.cpp:329
#, kde-format
msgid "Keep below other windows"
-msgstr ""
+msgstr "ç¶æå¨å
¶ä»è¦çªä¹ä¸"
#: decorationbutton.cpp:332
-#, fuzzy, kde-format
-#| msgid "Don't keep above"
+#, kde-format
msgid "Don't keep above other windows"
-msgstr "ä¸ä¿ææ¼é é¨é¡¯ç¤º"
+msgstr "ä¸è¦ç¶æå¨å
¶ä»è¦çªä¹ä¸"
#: decorationbutton.cpp:334
#, kde-format
msgid "Keep above other windows"
-msgstr ""
\ No newline at end of file
+msgstr "ç¶æå¨å
¶ä»è¦çªä¹ä¸"
+
+#~ msgid "Menu"
+#~ msgstr "é¸å®"
+
+#~ msgid "Keep below"
+#~ msgstr "ä¿ææ¼åºé¨é¡¯ç¤º"
+
+#~ msgid "Keep above"
+#~ msgstr "ä¿ææ¼é é¨é¡¯ç¤º"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/src/decoratedclient.cpp
new/kdecoration-5.27.0/src/decoratedclient.cpp
--- old/kdecoration-5.26.5/src/decoratedclient.cpp 2023-01-03
19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/src/decoratedclient.cpp 2023-02-09
12:59:32.000000000 +0100
@@ -51,6 +51,7 @@
DELEGATE(QSize, size)
DELEGATE(QPalette, palette)
DELEGATE(Qt::Edges, adjacentScreenEdges)
+DELEGATE(QString, windowClass)
#undef DELEGATE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/src/decoratedclient.h
new/kdecoration-5.27.0/src/decoratedclient.h
--- old/kdecoration-5.26.5/src/decoratedclient.h 2023-01-03
19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/src/decoratedclient.h 2023-02-09
12:59:32.000000000 +0100
@@ -3,8 +3,7 @@
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR
LicenseRef-KDE-Accepted-LGPL
*/
-#ifndef KDECORATION2_DECORATED_CLIENT_H
-#define KDECORATION2_DECORATED_CLIENT_H
+#pragma once
#include "decoration.h"
#include "decorationdefines.h"
@@ -199,6 +198,8 @@
WId windowId() const;
WId decorationId() const;
+ QString windowClass() const;
+
int width() const;
int height() const;
QSize size() const;
@@ -277,5 +278,3 @@
};
} // namespace
-
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/src/decoration.h
new/kdecoration-5.27.0/src/decoration.h
--- old/kdecoration-5.26.5/src/decoration.h 2023-01-03 19:01:20.000000000
+0100
+++ new/kdecoration-5.27.0/src/decoration.h 2023-02-09 12:59:32.000000000
+0100
@@ -3,8 +3,7 @@
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR
LicenseRef-KDE-Accepted-LGPL
*/
-#ifndef KDECORATION2_DECORATION_H
-#define KDECORATION2_DECORATION_H
+#pragma once
#include "decorationshadow.h"
#include <kdecoration2/kdecoration2_export.h>
@@ -248,5 +247,3 @@
} // namespace
Q_DECLARE_METATYPE(KDecoration2::Decoration *)
-
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/src/decoration_p.h
new/kdecoration-5.27.0/src/decoration_p.h
--- old/kdecoration-5.26.5/src/decoration_p.h 2023-01-03 19:01:20.000000000
+0100
+++ new/kdecoration-5.27.0/src/decoration_p.h 2023-02-09 12:59:32.000000000
+0100
@@ -3,8 +3,7 @@
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR
LicenseRef-KDE-Accepted-LGPL
*/
-#ifndef KDECORATION2_DECORATION_P_H
-#define KDECORATION2_DECORATION_P_H
+#pragma once
#include "decoration.h"
//
@@ -56,5 +55,3 @@
};
} // namespace
-
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/src/decorationbutton.h
new/kdecoration-5.27.0/src/decorationbutton.h
--- old/kdecoration-5.26.5/src/decorationbutton.h 2023-01-03
19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/src/decorationbutton.h 2023-02-09
12:59:32.000000000 +0100
@@ -3,8 +3,7 @@
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR
LicenseRef-KDE-Accepted-LGPL
*/
-#ifndef KDECORATION2_DECORATIONBUTTON_H
-#define KDECORATION2_DECORATIONBUTTON_H
+#pragma once
#include "decorationdefines.h"
#include <kdecoration2/kdecoration2_export.h>
@@ -177,5 +176,3 @@
} // namespace
Q_DECLARE_METATYPE(KDecoration2::DecorationButtonType)
-
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/src/decorationbutton_p.h
new/kdecoration-5.27.0/src/decorationbutton_p.h
--- old/kdecoration-5.26.5/src/decorationbutton_p.h 2023-01-03
19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/src/decorationbutton_p.h 2023-02-09
12:59:32.000000000 +0100
@@ -3,8 +3,7 @@
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR
LicenseRef-KDE-Accepted-LGPL
*/
-#ifndef KDECORATION2_DECORATIONBUTTON_P_H
-#define KDECORATION2_DECORATIONBUTTON_P_H
+#pragma once
#include "decorationbutton.h"
@@ -76,5 +75,3 @@
};
}
-
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/src/decorationbuttongroup.h
new/kdecoration-5.27.0/src/decorationbuttongroup.h
--- old/kdecoration-5.26.5/src/decorationbuttongroup.h 2023-01-03
19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/src/decorationbuttongroup.h 2023-02-09
12:59:32.000000000 +0100
@@ -3,8 +3,7 @@
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR
LicenseRef-KDE-Accepted-LGPL
*/
-#ifndef KDECORATION2_DECORATIONBUTTONGROUP_H
-#define KDECORATION2_DECORATIONBUTTONGROUP_H
+#pragma once
#include "decorationbutton.h"
#include <functional>
#include <kdecoration2/kdecoration2_export.h>
@@ -114,5 +113,3 @@
};
} // namespace
-
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/src/decorationbuttongroup_p.h
new/kdecoration-5.27.0/src/decorationbuttongroup_p.h
--- old/kdecoration-5.26.5/src/decorationbuttongroup_p.h 2023-01-03
19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/src/decorationbuttongroup_p.h 2023-02-09
12:59:32.000000000 +0100
@@ -3,8 +3,7 @@
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR
LicenseRef-KDE-Accepted-LGPL
*/
-#ifndef KDECORATION2_DECORATIONBUTTONGROUP_P_H
-#define KDECORATION2_DECORATIONBUTTONGROUP_P_H
+#pragma once
#include "decorationbuttongroup.h"
#include <QRectF>
@@ -44,5 +43,3 @@
};
} // namespace
-
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/src/decorationdefines.h
new/kdecoration-5.27.0/src/decorationdefines.h
--- old/kdecoration-5.26.5/src/decorationdefines.h 2023-01-03
19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/src/decorationdefines.h 2023-02-09
12:59:32.000000000 +0100
@@ -3,8 +3,7 @@
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR
LicenseRef-KDE-Accepted-LGPL
*/
-#ifndef KDECORATION2_DECORATION_DEFINES_H
-#define KDECORATION2_DECORATION_DEFINES_H
+#pragma once
namespace KDecoration2
{
@@ -158,5 +157,3 @@
};
}
-
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/src/decorationsettings.h
new/kdecoration-5.27.0/src/decorationsettings.h
--- old/kdecoration-5.26.5/src/decorationsettings.h 2023-01-03
19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/src/decorationsettings.h 2023-02-09
12:59:32.000000000 +0100
@@ -3,8 +3,7 @@
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR
LicenseRef-KDE-Accepted-LGPL
*/
-#ifndef KDECORATION2_DECORATION_SETTINGS_H
-#define KDECORATION2_DECORATION_SETTINGS_H
+#pragma once
#include "decorationbutton.h"
#include <kdecoration2/kdecoration2_export.h>
@@ -131,5 +130,3 @@
}
Q_DECLARE_METATYPE(KDecoration2::BorderSize)
-
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/src/decorationshadow.h
new/kdecoration-5.27.0/src/decorationshadow.h
--- old/kdecoration-5.26.5/src/decorationshadow.h 2023-01-03
19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/src/decorationshadow.h 2023-02-09
12:59:32.000000000 +0100
@@ -3,8 +3,7 @@
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR
LicenseRef-KDE-Accepted-LGPL
*/
-#ifndef KDECORATION2_DECORATION_SHADOW_H
-#define KDECORATION2_DECORATION_SHADOW_H
+#pragma once
#include <kdecoration2/kdecoration2_export.h>
@@ -127,5 +126,3 @@
}
Q_DECLARE_METATYPE(KDecoration2::DecorationShadow *)
-
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/src/decorationshadow_p.h
new/kdecoration-5.27.0/src/decorationshadow_p.h
--- old/kdecoration-5.26.5/src/decorationshadow_p.h 2023-01-03
19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/src/decorationshadow_p.h 2023-02-09
12:59:32.000000000 +0100
@@ -3,8 +3,7 @@
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR
LicenseRef-KDE-Accepted-LGPL
*/
-#ifndef KDECORATION2_DECORATION_SHADOW_P_H
-#define KDECORATION2_DECORATION_SHADOW_P_H
+#pragma once
//
// W A R N I N G
@@ -37,5 +36,3 @@
};
}
-
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/src/decorationthemeprovider.h
new/kdecoration-5.27.0/src/decorationthemeprovider.h
--- old/kdecoration-5.26.5/src/decorationthemeprovider.h 2023-01-03
19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/src/decorationthemeprovider.h 2023-02-09
12:59:32.000000000 +0100
@@ -4,8 +4,7 @@
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR
LicenseRef-KDE-Accepted-LGPL
*/
-#ifndef KDECORATION2_DECORATION_THEME_PROVIDER
-#define KDECORATION2_DECORATION_THEME_PROVIDER
+#pragma once
#include "decorationdefines.h"
#include <QObject>
@@ -75,4 +74,3 @@
virtual QList<DecorationThemeMetaData> themes() const = 0;
};
}
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/src/private/CMakeLists.txt
new/kdecoration-5.27.0/src/private/CMakeLists.txt
--- old/kdecoration-5.26.5/src/private/CMakeLists.txt 2023-01-03
19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/src/private/CMakeLists.txt 2023-02-09
12:59:32.000000000 +0100
@@ -28,7 +28,7 @@
target_include_directories(kdecorations2private INTERFACE
"$<INSTALL_INTERFACE:${KDECORATION2_INCLUDEDIR}>" )
set_target_properties(kdecorations2private PROPERTIES VERSION
${KDECORATION2_VERSION}
- SOVERSION 9
+ SOVERSION 10
EXPORT_NAME
KDecoration2Private
)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kdecoration-5.26.5/src/private/decoratedclientprivate.h
new/kdecoration-5.27.0/src/private/decoratedclientprivate.h
--- old/kdecoration-5.26.5/src/private/decoratedclientprivate.h 2023-01-03
19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/src/private/decoratedclientprivate.h 2023-02-09
12:59:32.000000000 +0100
@@ -3,8 +3,7 @@
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR
LicenseRef-KDE-Accepted-LGPL
*/
-#ifndef KDECORATION2_DECORATED_CLIENT_PRIVATE_H
-#define KDECORATION2_DECORATED_CLIENT_PRIVATE_H
+#pragma once
#include "../decorationdefines.h"
#include <kdecoration2/private/kdecoration2_private_export.h>
@@ -78,6 +77,7 @@
Decoration *decoration() const;
virtual QColor color(ColorGroup group, ColorRole role) const;
+ virtual QString windowClass() const = 0;
protected:
explicit DecoratedClientPrivate(DecoratedClient *client, Decoration
*decoration);
@@ -104,5 +104,3 @@
};
} // namespace
-
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdecoration-5.26.5/src/private/decorationbridge.h
new/kdecoration-5.27.0/src/private/decorationbridge.h
--- old/kdecoration-5.26.5/src/private/decorationbridge.h 2023-01-03
19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/src/private/decorationbridge.h 2023-02-09
12:59:32.000000000 +0100
@@ -3,8 +3,7 @@
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR
LicenseRef-KDE-Accepted-LGPL
*/
-#ifndef KDECORATION2_DECORATION_BRIDGE_H
-#define KDECORATION2_DECORATION_BRIDGE_H
+#pragma once
#include <QObject>
@@ -49,5 +48,3 @@
} // namespace
Q_DECLARE_METATYPE(KDecoration2::DecorationBridge *)
-
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kdecoration-5.26.5/src/private/decorationsettingsprivate.h
new/kdecoration-5.27.0/src/private/decorationsettingsprivate.h
--- old/kdecoration-5.26.5/src/private/decorationsettingsprivate.h
2023-01-03 19:01:20.000000000 +0100
+++ new/kdecoration-5.27.0/src/private/decorationsettingsprivate.h
2023-02-09 12:59:32.000000000 +0100
@@ -3,8 +3,7 @@
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR
LicenseRef-KDE-Accepted-LGPL
*/
-#ifndef KDECORATION2_DECORATION_SETTINGS_PRIVATE_H
-#define KDECORATION2_DECORATION_SETTINGS_PRIVATE_H
+#pragma once
#include "../decorationdefines.h"
#include <QFont>
@@ -58,5 +57,3 @@
const QScopedPointer<Private> d;
};
}
-
-#endif