Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package applet-window-appmenu for openSUSE:Factory checked in at 2021-07-25 20:09:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/applet-window-appmenu (Old) and /work/SRC/openSUSE:Factory/.applet-window-appmenu.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "applet-window-appmenu" Sun Jul 25 20:09:16 2021 rev:9 rq:908092 version:0.7.1 Changes: -------- --- /work/SRC/openSUSE:Factory/applet-window-appmenu/applet-window-appmenu.changes 2021-07-22 22:43:56.719154067 +0200 +++ /work/SRC/openSUSE:Factory/.applet-window-appmenu.new.1899/applet-window-appmenu.changes 2021-07-25 20:09:24.595433883 +0200 @@ -1,0 +2,8 @@ +Sat Jul 24 18:23:30 UTC 2021 - Cor Blom <corne...@solcon.nl> + +- update to 0.7.1: + * do not show any appmenu on empty and inactive screens + * improve compact button spacing + * show proper popup menu for vertical panels + +------------------------------------------------------------------- Old: ---- applet-window-appmenu-0.7.0.tar.gz New: ---- applet-window-appmenu-0.7.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ applet-window-appmenu.spec ++++++ --- /var/tmp/diff_new_pack.NnptbJ/_old 2021-07-25 20:09:25.035433393 +0200 +++ /var/tmp/diff_new_pack.NnptbJ/_new 2021-07-25 20:09:25.039433388 +0200 @@ -20,7 +20,7 @@ %define qt5_version 5.9 Name: applet-window-appmenu -Version: 0.7.0 +Version: 0.7.1 Release: 0 Summary: Plasma 5 applet to show the window appmenu License: GPL-2.0-or-later ++++++ applet-window-appmenu-0.7.0.tar.gz -> applet-window-appmenu-0.7.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/applet-window-appmenu-0.7.0/CHANGELOG.md new/applet-window-appmenu-0.7.1/CHANGELOG.md --- old/applet-window-appmenu-0.7.0/CHANGELOG.md 2021-06-13 11:50:45.000000000 +0200 +++ new/applet-window-appmenu-0.7.1/CHANGELOG.md 2021-07-21 07:09:04.000000000 +0200 @@ -1,5 +1,11 @@ ### CHANGELOG +#### Version 0.7.1 + +* do not show any appmenu on empty and inactive screens +* improve compact button spacing +* show proper popup menu for vertical panels + #### Version 0.7.0 * fix occasional crash when menu is hiding diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/applet-window-appmenu-0.7.0/CMakeLists.txt new/applet-window-appmenu-0.7.1/CMakeLists.txt --- old/applet-window-appmenu-0.7.0/CMakeLists.txt 2021-06-13 11:50:45.000000000 +0200 +++ new/applet-window-appmenu-0.7.1/CMakeLists.txt 2021-07-21 07:09:04.000000000 +0200 @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.0 FATAL_ERROR) set(CMAKE_CXX_STANDARD 14) -set(VERSION 0.7.0) +set(VERSION 0.7.1) set(AUTHOR "Michail Vourlakos") set(EMAIL "mvourla...@gmail.com") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/applet-window-appmenu-0.7.0/package/contents/ui/PaintedToolButton.qml new/applet-window-appmenu-0.7.1/package/contents/ui/PaintedToolButton.qml --- old/applet-window-appmenu-0.7.0/package/contents/ui/PaintedToolButton.qml 2021-06-13 11:50:45.000000000 +0200 +++ new/applet-window-appmenu-0.7.1/package/contents/ui/PaintedToolButton.qml 2021-07-21 07:09:04.000000000 +0200 @@ -56,7 +56,7 @@ if (buttonItem.text !== "") { return itemLoader.item.implicitWidth + plasmoid.configuration.spacing * 2 + 2*shadow; } else { - return itemLoader.item.implicitWidth + 2*shadow; + return itemLoader.item.implicitWidth + units.smallspacing * 2 + 2*shadow; } } @@ -68,7 +68,7 @@ if (buttonItem.text !== "") { return itemLoader.item.implicitHeight + units.smallspacing * 2 + 2*shadow; } else { - return itemLoader.item.implicitHeight + 2*shadow; + return itemLoader.item.implicitHeight + units.smallspacing * 2 + 2*shadow; } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/applet-window-appmenu-0.7.0/package/contents/ui/main.qml new/applet-window-appmenu-0.7.1/package/contents/ui/main.qml --- old/applet-window-appmenu-0.7.0/package/contents/ui/main.qml 2021-06-13 11:50:45.000000000 +0200 +++ new/applet-window-appmenu-0.7.1/package/contents/ui/main.qml 2021-07-21 07:09:04.000000000 +0200 @@ -35,7 +35,7 @@ readonly property int containmentType: plasmoid.configuration.containmentType readonly property bool vertical: plasmoid.formFactor === PlasmaCore.Types.Vertical - readonly property bool view: plasmoid.configuration.compactView + readonly property bool view: inCompactView readonly property bool inEditMode: plasmoid.userConfiguring || latteInEditMode readonly property bool menuAvailable: appMenuModel.menuAvailable readonly property bool kcmAuthorized: KCMShell.authorize(["style.desktop"]).length > 0 @@ -473,10 +473,11 @@ winId: latteBridge && existsWindowShown && lastActiveTaskItem ? lastActiveTaskItem.winId : -1 readonly property bool ignoreWindow: { - var activeFilter = plasmoid.configuration.filterByActive ? !existsWindowActive || !existsWindowShown : false; - var maximizedFilter = plasmoid.configuration.filterByMaximized ? !isLastActiveWindowMaximized : false; + var shownFilter = !existsWindowShown; + var activeFilter = plasmoid.configuration.filterByActive ? !existsWindowActive : false; + var maximizedFilter = plasmoid.configuration.filterByMaximized ? !isLastActiveWindowMaximized : false; - return (activeFilter || maximizedFilter); + return (shownFilter || activeFilter || maximizedFilter); } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/applet-window-appmenu-0.7.0/package/metadata.desktop new/applet-window-appmenu-0.7.1/package/metadata.desktop --- old/applet-window-appmenu-0.7.0/package/metadata.desktop 2021-06-13 11:50:45.000000000 +0200 +++ new/applet-window-appmenu-0.7.1/package/metadata.desktop 2021-07-21 07:09:04.000000000 +0200 @@ -7,7 +7,7 @@ X-KDE-PluginInfo-Email=mvourla...@gmail.com X-KDE-PluginInfo-License=GPL-2.0+ X-KDE-PluginInfo-Name=org.kde.windowappmenu -X-KDE-PluginInfo-Version=0.7.0 +X-KDE-PluginInfo-Version=0.7.1 X-KDE-PluginInfo-Website=https://github.com/psifidotos/applet-window-appmenu X-KDE-ServiceTypes=Plasma/Applet X-Plasma-API=declarativeappletscript