diff -Nru kdesignerplugin-5.85.0/CMakeLists.txt kdesignerplugin-5.86.0/CMakeLists.txt --- kdesignerplugin-5.85.0/CMakeLists.txt 2021-08-06 09:03:17.000000000 +0000 +++ kdesignerplugin-5.86.0/CMakeLists.txt 2021-09-04 16:59:20.000000000 +0000 @@ -1,11 +1,11 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "5.85.0") # handled by release scripts -set(KF_DEP_VERSION "5.85.0") # handled by release scripts +set(KF_VERSION "5.86.0") # handled by release scripts +set(KF_DEP_VERSION "5.86.0") # handled by release scripts project(KDesignerPlugin VERSION ${KF_VERSION}) include(FeatureSummary) -find_package(ECM 5.85.0 NO_MODULE) +find_package(ECM 5.86.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) @@ -17,7 +17,7 @@ include(KDECMakeSettings) -set(REQUIRED_QT_VERSION 5.15.0) +set(REQUIRED_QT_VERSION 5.15.2) find_package(Qt5Core ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) find_package(Qt5Designer ${REQUIRED_QT_VERSION} NO_MODULE) set_package_properties(Qt5Designer PROPERTIES diff -Nru kdesignerplugin-5.85.0/debian/changelog kdesignerplugin-5.86.0/debian/changelog --- kdesignerplugin-5.85.0/debian/changelog 2021-08-06 18:07:56.000000000 +0000 +++ kdesignerplugin-5.86.0/debian/changelog 2021-09-13 11:47:21.000000000 +0000 @@ -1,8 +1,14 @@ -kdesignerplugin (5.85.0-0ubuntu1~ubuntu21.04~ppa1) hirsute; urgency=high +kdesignerplugin (5.86.0-0ubuntu1~ubuntu21.04~ppa1) hirsute; urgency=medium + + * New upstream release (5.86.0) + + -- Rik Mills Mon, 13 Sep 2021 12:47:21 +0100 + +kdesignerplugin (5.85.0-0ubuntu1) impish; urgency=medium * New upstream release (5.85.0) - -- Rik Mills Fri, 06 Aug 2021 18:07:56 +0000 + -- Rik Mills Fri, 13 Aug 2021 11:26:14 +0100 kdesignerplugin (5.84.0-0ubuntu1) impish; urgency=medium diff -Nru kdesignerplugin-5.85.0/debian/control kdesignerplugin-5.86.0/debian/control --- kdesignerplugin-5.85.0/debian/control 2021-08-06 18:07:56.000000000 +0000 +++ kdesignerplugin-5.86.0/debian/control 2021-09-13 11:47:21.000000000 +0000 @@ -6,11 +6,11 @@ Norbert Preining Build-Depends: cmake (>= 3.5~), debhelper-compat (= 13), - extra-cmake-modules (>= 5.85.0~), + extra-cmake-modules (>= 5.86.0~), kgendesignerplugin-bin , - libkf5config-dev (>= 5.85.0~), - libkf5coreaddons-dev (>= 5.85.0~), - libkf5doctools-dev (>= 5.85.0~), + libkf5config-dev (>= 5.86.0~), + libkf5coreaddons-dev (>= 5.86.0~), + libkf5doctools-dev (>= 5.86.0~), libqt5webkit5-dev, pkg-kde-tools (>= 0.15.15ubuntu1~), qtbase5-dev (>= 5.14.0~), diff -Nru kdesignerplugin-5.85.0/metainfo.yaml kdesignerplugin-5.86.0/metainfo.yaml --- kdesignerplugin-5.85.0/metainfo.yaml 2021-08-06 09:03:17.000000000 +0000 +++ kdesignerplugin-5.86.0/metainfo.yaml 2021-09-04 16:59:20.000000000 +0000 @@ -6,7 +6,7 @@ - name: Linux - name: FreeBSD - name: Windows - - name: MacOSX + - name: macOS portingAid: true deprecated: true release: true diff -Nru kdesignerplugin-5.85.0/po/zh_CN/kdesignerplugin5_qt.po kdesignerplugin-5.86.0/po/zh_CN/kdesignerplugin5_qt.po --- kdesignerplugin-5.85.0/po/zh_CN/kdesignerplugin5_qt.po 2021-08-06 09:03:17.000000000 +0000 +++ kdesignerplugin-5.86.0/po/zh_CN/kdesignerplugin5_qt.po 2021-09-04 16:59:20.000000000 +0000 @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" -"PO-Revision-Date: 2021-07-26 13:47\n" +"PO-Revision-Date: 2021-08-30 11:43\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" diff -Nru kdesignerplugin-5.85.0/src/kgendesignerplugin.cpp kdesignerplugin-5.86.0/src/kgendesignerplugin.cpp --- kdesignerplugin-5.85.0/src/kgendesignerplugin.cpp 2021-08-06 09:03:17.000000000 +0000 +++ kdesignerplugin-5.86.0/src/kgendesignerplugin.cpp 2021-09-04 16:59:20.000000000 +0000 @@ -151,18 +151,18 @@ QStringList classes = input.groupList(); classes.removeAll(QStringLiteral("Global")); - for (const QString &myInclude : qAsConst(classes)) { + for (const QString &myInclude : std::as_const(classes)) { includes += buildWidgetInclude(myInclude, input); } - for (const QString &myInclude : qAsConst(includes)) { + for (const QString &myInclude : std::as_const(includes)) { ts << "#include <" << myInclude << ">\n"; } ts << QLatin1String("\n\n"); // Autogenerate widget defs here - for (const QString &myClass : qAsConst(classes)) { + for (const QString &myClass : std::as_const(classes)) { ts << buildWidgetClass(myClass, input, defaultGroup) << "\n"; }