Skip to content

Commit de9d90d

Browse files
committed
Release 3.4.3
compilation fixes for old ubuntu and provide patch for old qt versions
1 parent 8836592 commit de9d90d

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

packages/PKGBUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
pkgname=plasma5-applet-awesome-widgets
44
_pkgname=awesome-widgets
5-
pkgver=3.4.2
5+
pkgver=3.4.3
66
pkgrel=1
77
pkgdesc="Collection of minimalistic Plasmoids which look like Awesome WM widgets (ex-PyTextMonitor)"
88
arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@ optdepends=("catalyst: for GPU monitor"
1717
makedepends=('cmake' 'extra-cmake-modules' 'python')
1818
source=(https://github.com/arcan1s/awesome-widgets/releases/download/V.${pkgver}/${_pkgname}-${pkgver}-src.tar.xz)
1919
install=${pkgname}.install
20-
md5sums=('df3ad1c626fdc1893f0f6e0b0fe636c2')
20+
md5sums=('5953ba518191bb6fff83cdb8633c735c')
2121
backup=('etc/xdg/plasma-dataengine-extsysmon.conf')
2222

2323
prepare() {

patches/qt5.14-splitbehavior-and-qset.patch

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,3 @@
1-
diff --git a/.docker/build-ubuntu.sh b/.docker/build-ubuntu.sh
2-
index 9b5e97a..b953425 100755
3-
--- a/.docker/build-ubuntu.sh
4-
+++ b/.docker/build-ubuntu.sh
5-
@@ -6,7 +6,7 @@ rm -rf build-ubuntu
6-
mkdir build-ubuntu
7-
8-
# patches
9-
-git apply patches/qt5.14-splitbehavior-and-qset.patch
10-
+#git apply patches/qt5.14-splitbehavior-and-qset.patch
11-
12-
# build
13-
cd build-ubuntu
141
diff --git a/sources/awdebug.cpp b/sources/awdebug.cpp
152
index 7135db6..a2870ec 100644
163
--- a/sources/awdebug.cpp
@@ -253,3 +240,16 @@ index aaca22f..e127a05 100644
253240
// there are one more time...
254241
if ((metadata == "time") && (data.contains(':'))) {
255242
QStringList times = data.split(':');
243+
diff --git a/sources/test/testawtelemetryhandler.cpp b/sources/test/testawtelemetryhandler.cpp
244+
index ffb0e79..b4181e0 100644
245+
--- a/sources/test/testawtelemetryhandler.cpp
246+
+++ b/sources/test/testawtelemetryhandler.cpp
247+
@@ -51,7 +51,7 @@ void TestAWTelemetryHandler::test_get()
248+
QStringList output = plugin->get(telemetryGroup);
249+
250+
QVERIFY(!output.isEmpty());
251+
- QCOMPARE(QSet<QString>(output.cbegin(), output.cend()).count(), output.count());
252+
+ QCOMPARE(QSet<QString>::fromList(output).count(), output.count());
253+
QVERIFY(output.contains(telemetryData));
254+
}
255+

sources/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ set(PROJECT_CONTACT "esalexeev@gmail.com")
1616
set(PROJECT_LICENSE "GPL3")
1717
set(PROJECT_VERSION_MAJOR "3")
1818
set(PROJECT_VERSION_MINOR "4")
19-
set(PROJECT_VERSION_PATCH "2")
19+
set(PROJECT_VERSION_PATCH "3")
2020
set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
2121
# append git version if any
2222
set(PROJECT_COMMIT_SHA "Commit hash" CACHE INTERNAL "")

sources/awesome-widget/package/metadata.desktop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ X-Plasma-MainScript=ui/main.qml
1919
X-KDE-PluginInfo-Author=Evgeniy Alekseev aka arcanis
2020
X-KDE-PluginInfo-Email=esalexeev@gmail.com
2121
X-KDE-PluginInfo-Name=org.kde.plasma.awesomewidget
22-
X-KDE-PluginInfo-Version=3.4.2
22+
X-KDE-PluginInfo-Version=3.4.3
2323
X-KDE-PluginInfo-Website=https://arcanis.me/projects/awesome-widgets/
2424
X-KDE-PluginInfo-Category=System Information
2525
X-KDE-PluginInfo-Depends=

sources/desktop-panel/package/metadata.desktop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ X-Plasma-MainScript=ui/main.qml
1919
X-KDE-PluginInfo-Author=Evgeniy Alekseev aka arcanis
2020
X-KDE-PluginInfo-Email=esalexeev@gmail.com
2121
X-KDE-PluginInfo-Name=org.kde.plasma.desktoppanel
22-
X-KDE-PluginInfo-Version=3.4.2
22+
X-KDE-PluginInfo-Version=3.4.3
2323
X-KDE-PluginInfo-Website=https://arcanis.me/projects/awesome-widgets/
2424
X-KDE-PluginInfo-Category=System Information
2525
X-KDE-PluginInfo-Depends=

0 commit comments

Comments
 (0)