From 38bd67adb9cf463fa90d49da5aa99870ba7e7ca1a40fe7a573c484af156b0fa7 Mon Sep 17 00:00:00 2001 From: Christophe Giboudeaux Date: Tue, 19 May 2020 13:35:02 +0000 Subject: [PATCH 1/2] Plasma 5.19 Beta. Did I forget to submit the fixes? Untested - please publish disable before accepting. OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/breeze?expand=0&rev=292 --- ...ort-for-Q3ListView-to-the-KDE4-style.patch | 92 -- breeze-5.18.5.tar.xz | 3 - breeze-5.18.5.tar.xz.sig | 11 - breeze-5.18.90.tar.xz | 3 + breeze-5.18.90.tar.xz.sig | 11 + breeze.changes | 36 + breeze.spec | 6 +- breeze4-style.changes | 1318 ----------------- breeze4-style.spec | 80 - 9 files changed, 53 insertions(+), 1507 deletions(-) delete mode 100644 add-support-for-Q3ListView-to-the-KDE4-style.patch delete mode 100644 breeze-5.18.5.tar.xz delete mode 100644 breeze-5.18.5.tar.xz.sig create mode 100644 breeze-5.18.90.tar.xz create mode 100644 breeze-5.18.90.tar.xz.sig delete mode 100644 breeze4-style.changes delete mode 100644 breeze4-style.spec diff --git a/add-support-for-Q3ListView-to-the-KDE4-style.patch b/add-support-for-Q3ListView-to-the-KDE4-style.patch deleted file mode 100644 index 4717f29..0000000 --- a/add-support-for-Q3ListView-to-the-KDE4-style.patch +++ /dev/null @@ -1,92 +0,0 @@ -diff --git a/kstyle/breezestyle.cpp b/kstyle/breezestyle.cpp -index 8a02d75..c1b9670 100644 ---- a/kstyle/breezestyle.cpp -+++ b/kstyle/breezestyle.cpp -@@ -929,6 +929,7 @@ namespace Breeze - case CC_ToolButton: fcn = &Style::drawToolButtonComplexControl; break; - case CC_ComboBox: fcn = &Style::drawComboBoxComplexControl; break; - case CC_SpinBox: fcn = &Style::drawSpinBoxComplexControl; break; -+ case CC_Q3ListView: fcn = &Style::drawQ3ListViewComplexControl; break; - case CC_Slider: fcn = &Style::drawSliderComplexControl; break; - case CC_Dial: fcn = &Style::drawDialComplexControl; break; - case CC_ScrollBar: fcn = &Style::drawScrollBarComplexControl; break; -@@ -6122,6 +6216,67 @@ namespace Breeze - } - - //______________________________________________________________ -+ bool Style::drawQ3ListViewComplexControl( const QStyleOptionComplex* option, QPainter* painter, const QWidget* widget ) const -+ { -+ -+ const QStyleOptionQ3ListView* optListView( qstyleoption_cast( option ) ); -+ if( !optListView ) return true; -+ -+ // this is copied from skulpture code -+ // Copyright ( c ) 2007-2010 Christoph Feck -+ if( optListView->subControls & QStyle::SC_Q3ListView ) -+ { -+ painter->fillRect( -+ optListView->rect, -+ optListView->viewportPalette.brush( optListView->viewportBGRole ) ); -+ } -+ -+ if( optListView->subControls & QStyle::SC_Q3ListViewBranch ) -+ { -+ -+ QStyleOption opt = *static_cast( option ); -+ int y = optListView->rect.y(); -+ -+ for ( int i = 1; i < optListView->items.size(); ++i ) -+ { -+ QStyleOptionQ3ListViewItem item = optListView->items.at( i ); -+ if( y + item.totalHeight > 0 && y < optListView->rect.height() ) -+ { -+ opt.state = QStyle::State_Item; -+ if ( i + 1 < optListView->items.size() ) -+ { opt.state |= QStyle::State_Sibling; } -+ -+ if( -+ item.features & QStyleOptionQ3ListViewItem::Expandable -+ || ( item.childCount > 0 && item.height > 0 ) ) -+ { opt.state |= QStyle::State_Children | ( item.state & QStyle::State_Open ); } -+ -+ opt.rect = QRect( optListView->rect.left(), y, optListView->rect.width(), item.height ); -+ painter->save(); -+ drawIndicatorBranchPrimitive( &opt, painter, widget ); -+ painter->restore(); -+ -+ if( ( opt.state & QStyle::State_Sibling ) && item.height < item.totalHeight ) -+ { -+ opt.state = QStyle::State_Sibling; -+ opt.rect = QRect( -+ optListView->rect.left(), y + item.height, -+ optListView->rect.width(), item.totalHeight - item.height ); -+ painter->save(); -+ drawIndicatorBranchPrimitive( &opt, painter, widget ); -+ painter->restore(); -+ } -+ } -+ -+ y += item.totalHeight; -+ } -+ } -+ -+ return true; -+ -+ } -+ -+ //______________________________________________________________ - bool Style::drawSliderComplexControl( const QStyleOptionComplex* option, QPainter* painter, const QWidget* widget ) const - { - -diff --git a/kstyle/breezestyle.h b/kstyle/breezestyle.h -index a627252..dcbfe4a 100644 ---- a/kstyle/breezestyle.h -+++ b/kstyle/breezestyle.h -@@ -320,6 +320,7 @@ namespace Breeze - bool drawToolButtonComplexControl( const QStyleOptionComplex*, QPainter*, const QWidget* ) const; - bool drawComboBoxComplexControl( const QStyleOptionComplex*, QPainter*, const QWidget* ) const; - bool drawSpinBoxComplexControl( const QStyleOptionComplex*, QPainter*, const QWidget* ) const; -+ bool drawQ3ListViewComplexControl( const QStyleOptionComplex*, QPainter*, const QWidget* ) const; - bool drawSliderComplexControl( const QStyleOptionComplex*, QPainter*, const QWidget* ) const; - bool drawDialComplexControl( const QStyleOptionComplex*, QPainter*, const QWidget* ) const; - bool drawScrollBarComplexControl( const QStyleOptionComplex*, QPainter*, const QWidget* ) const; diff --git a/breeze-5.18.5.tar.xz b/breeze-5.18.5.tar.xz deleted file mode 100644 index 2030f2b..0000000 --- a/breeze-5.18.5.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1d08dfd24df4a4fcacad1e3759e559e82f6014ba63dc75dc32a24de6cd133563 -size 21583276 diff --git a/breeze-5.18.5.tar.xz.sig b/breeze-5.18.5.tar.xz.sig deleted file mode 100644 index bd5e08b..0000000 --- a/breeze-5.18.5.tar.xz.sig +++ /dev/null @@ -1,11 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQEzBAABCgAdFiEELR1bBYg1d4fenuIl7JTRj38FmX4FAl6xeMMACgkQ7JTRj38F -mX7JUAf9G5icQic7JM28txw+ZhgdASv2xgX7NTl5M4oBa1E01QihmewfyeXBd2pK -N67WX+e/g79EJpi6KuM0gGckiax4KCPA3VzeGjel5rY0S6UMNTLOH+HBzVuHzqyF -8ySxKKnNDJBrG2xecVCQgtrejRIcqJjPdJyUb4v8kNqDFMFwC1SOmylIbKhzOKDo -rtYP3y55L90Tdzxeb8bPpZ9mCNDTzlhWJ2zaUvVawRKy5bZTRZ1/QMFBoTT4p0BC -ITQ73h+Pkl2Awu9hLMkySKIlsyXFUm4z7O2r3fLynC5NjtKd8R9ngcjZINKVObxR -9gCXXiBBGMSsQyAVoGJuFsE+4U9+5w== -=VNts ------END PGP SIGNATURE----- diff --git a/breeze-5.18.90.tar.xz b/breeze-5.18.90.tar.xz new file mode 100644 index 0000000..1fc4bf5 --- /dev/null +++ b/breeze-5.18.90.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35ce9ce202be6f735e2689eac6d444dc337b40e0d201941e0aec2fa859a7f99f +size 22759904 diff --git a/breeze-5.18.90.tar.xz.sig b/breeze-5.18.90.tar.xz.sig new file mode 100644 index 0000000..a6d0375 --- /dev/null +++ b/breeze-5.18.90.tar.xz.sig @@ -0,0 +1,11 @@ +-----BEGIN PGP SIGNATURE----- + +iQEzBAABCgAdFiEELR1bBYg1d4fenuIl7JTRj38FmX4FAl69HXUACgkQ7JTRj38F +mX6C0Qf/bSKW9hPyuEDm3wtHTDMg+uuKFHMVyMzKqzhCU3N2rO43/QPwkETkzGy1 +sd0f6z83VrBf6M2qlqhVMlsoAZ9IZBCXYcc6VM1/6S9daTfd1CuLt4JdZ5a0Mex6 +cqB7I/nsm7H6SXWVSsAIDXIuLVh6bLuunJbhJNq3KFOP+fO3ZUGd4ahjQdnAUbwx +6PWsJR42mWaGlon8uGgoZcWd/E+SymiYwbjMFI/ABJcVFVdQTqvZ8ZIDG6uTCbeR +LRAgALADZTbO3KpB8kmg+9rypnsg3nZHQzL7JjPyOlsyVQhHd4SVEWmVxWkB+vSg +vHJ2334RpGrjqk2WlE+9UV/bsZMoYw== +=s6Ii +-----END PGP SIGNATURE----- diff --git a/breeze.changes b/breeze.changes index 9db63d2..0916a7e 100644 --- a/breeze.changes +++ b/breeze.changes @@ -1,3 +1,39 @@ +------------------------------------------------------------------- +Thu May 14 14:33:01 UTC 2020 - Fabian Vogt + +- Update to 5.18.90 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/plasma-5.18.90.php +- Changes since 5.18.5: + * Add mobile-friendly versions + * Revert unnecessary wallpaper plugin name change + * Use "Flow" wallpaper for Plasma 5.19 + * Phrase active window titlebar separator option more accurately (kde#420753) + * Use the same icon mode calculation for comboboxes as for buttons + * Fix variable mixup + * Don't set a custom palette if we have the same palette as the currently active one + * Drop QWindow and explicit devicePixelRatio usage for ComboBox + * Color icons in titlebar if possible + * Apply the correct palette to icons + * Remove unused methods + * Add missing includes + * [kstyle] Properly unregister widgets in ShadowHelper + * [kstyle] Use QX11Info::isCompositingManagerRunning() + * [kstyle] Drop Helper::connection() + * [kstyle] Unregister a shadow when it's destroyed (kde#416854) + * Update my last name + * Delete unused property name + * Port connections to new syntax + * now that qt4 was dropped we can use specific ECM/Qt/KF5 version + * [kstyle] Port to KWindowSystem shadows API + * [kstyle] Drop Qt 4 style plugin + * Center only during drawing, not the hit rects (kde#416348) +- Drop Qt4 support: + * breeze4-style.spec + * breeze4-style.changes + * add-support-for-Q3ListView-to-the-KDE4-style.patch + ------------------------------------------------------------------- Tue May 5 13:01:51 UTC 2020 - Fabian Vogt diff --git a/breeze.spec b/breeze.spec index 42aca18..0e0a64b 100644 --- a/breeze.spec +++ b/breeze.spec @@ -22,15 +22,15 @@ %{!?_plasma5_version: %define _plasma5_version %(echo %{_plasma5_bugfix} | awk -F. '{print $1"."$2}')} %bcond_without lang Name: breeze -Version: 5.18.5 +Version: 5.18.90 Release: 0 Summary: Plasma Desktop artwork, styles and assets License: GPL-2.0-or-later Group: System/GUI/KDE URL: http://www.kde.org -Source: https://download.kde.org/stable/plasma/%{version}/breeze-%{version}.tar.xz +Source: https://download.kde.org/unstable/plasma/%{version}/breeze-%{version}.tar.xz %if %{with lang} -Source1: https://download.kde.org/stable/plasma/%{version}/breeze-%{version}.tar.xz.sig +Source1: https://download.kde.org/unstable/plasma/%{version}/breeze-%{version}.tar.xz.sig Source2: plasma.keyring %endif BuildRequires: cmake >= 2.8.12 diff --git a/breeze4-style.changes b/breeze4-style.changes deleted file mode 100644 index 8fe1f35..0000000 --- a/breeze4-style.changes +++ /dev/null @@ -1,1318 +0,0 @@ -------------------------------------------------------------------- -Tue May 5 13:01:51 UTC 2020 - Fabian Vogt - -- Update to 5.18.5 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.18.5.php -- No code changes since 5.18.4.1 - -------------------------------------------------------------------- -Tue Mar 31 15:17:03 UTC 2020 - Fabian Vogt - -- Update to 5.18.4.1: - * Version fixed - -------------------------------------------------------------------- -Tue Mar 31 14:47:39 UTC 2020 - Fabian Vogt - -- Update to 5.18.4 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.18.4.php -- Changes since 5.18.3: - * Fix build with Qt 5.15 - * Fix Defaults not being set properly in Breeze window decoration settings for 'Draw a circle around close button' - -------------------------------------------------------------------- -Tue Mar 10 14:55:30 UTC 2020 - Fabian Vogt - -- Update to 5.18.3 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.18.3.php -- No code changes since 5.18.2 - -------------------------------------------------------------------- -Tue Feb 25 14:07:16 UTC 2020 - Fabian Vogt - -- Update to 5.18.2 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.18.2.php -- No code changes since 5.18.1 - -------------------------------------------------------------------- -Tue Feb 18 14:05:54 UTC 2020 - Fabian Vogt - -- Update to 5.18.1 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.18.1.php -- Changes since 5.18.0: - * Add missing cursors for Chromium-based apps - -------------------------------------------------------------------- -Tue Feb 11 10:33:55 UTC 2020 - Fabian Vogt - -- Update tarball - -------------------------------------------------------------------- -Thu Feb 6 15:10:03 UTC 2020 - Fabian Vogt - -- Update to 5.18.0 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.18.0.php -- Changes since 5.17.90: - * [wallpapers] Use more high-quality JPEGs for Next - * Revert "Work around an issue with changing the wallpaper's filetype" - * Work around an issue with changing the wallpaper's filetype - * Replace Ice Cold with Volna for Plasma 5.18 - * [Breeze Cursors] Add some more cursor names - * Center only during drawing, not the hit rects (kde#416348) - -------------------------------------------------------------------- -Thu Jan 16 14:04:15 UTC 2020 - Fabian Vogt - -- Update to 5.17.90 - * New feature release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.17.90.php -- Too many changes to list here - -------------------------------------------------------------------- -Tue Jan 7 16:24:34 UTC 2020 - Fabian Vogt - -- Update to 5.17.5 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.17.5.php -- Changes since 5.17.4: - * Add item spacing to size hint - -------------------------------------------------------------------- -Wed Dec 4 08:36:58 UTC 2019 - Fabian Vogt - -- Update to 5.17.4 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.17.4.php -- No code changes since 5.17.3 - -------------------------------------------------------------------- -Tue Nov 12 11:01:06 UTC 2019 - Fabian Vogt - -- Update to 5.17.3 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.17.3.php -- No code changes since 5.17.2 - -------------------------------------------------------------------- -Tue Oct 29 20:45:50 UTC 2019 - Fabian Vogt - -- Update to 5.17.2 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.17.2.php -- No code changes since 5.17.1 - -------------------------------------------------------------------- -Tue Oct 22 16:44:42 UTC 2019 - Fabian Vogt - -- Update to 5.17.1 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.17.1.php -- No code changes since 5.17.0 - -------------------------------------------------------------------- -Mon Oct 14 12:03:58 UTC 2019 - Christophe Giboudeaux - -- Stop building breeze4-style for factory. - -------------------------------------------------------------------- -Thu Oct 10 14:25:45 UTC 2019 - Fabian Vogt - -- Update to 5.17.0 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.17.0.php -- No code changes since 5.16.90 - -------------------------------------------------------------------- -Thu Sep 19 12:32:32 UTC 2019 - Fabian Vogt - -- Update to 5.16.90 - * New feature release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.16.90.php -- Changes since 5.16.5: - * Make renderDialGroove() area match the maximum renderDialContents() area - * Fix colors from KStatefulBrushes not using application colorschemes - * Move drawIndicatorButtonDropDownPrimitive separator when sunken - * Fix width and separator of ToolButtonComplexControl outline w/ dropdown menu - * Revert "Fix width and separator of ToolButtonComplexControl outline w/ dropdown menu" - * Fix width and separator of ToolButtonComplexControl outline w/ dropdown menu - * Removed GlobalPos from QMouseEvent constructor - * Remove unneeded 1 pixel margin around side panels - * Remove qtquickcontrols dir - * - fixed "missing override" warnings - removed useless "virtual" specifications - removed useless destructors - cleanup variable initializations - moved protected methods as private when possible for better encapsulation - * re-read color palettes when application color changes (kde#408416) - * Set default border value in all places - * Recommend window border size "None" - * Disable extended resize borders for maximized windows CCBUG: 407989 - -------------------------------------------------------------------- -Tue Sep 3 12:44:11 UTC 2019 - Fabian Vogt - -- Update to 5.16.5 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.16.5.php -- Changes since 5.16.4: - * [SplitterProxy] Don't manually mapToGlobal - -------------------------------------------------------------------- -Tue Jul 30 12:40:17 UTC 2019 - Fabian Vogt - -- Update to 5.16.4 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.16.4.php -- No code changes since 5.16.3 - -------------------------------------------------------------------- -Tue Jul 9 17:29:04 UTC 2019 - fabian@ritter-vogt.de - -- Update to 5.16.3 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.16.3.php -- No code changes since 5.16.2 - -------------------------------------------------------------------- -Tue Jun 25 12:41:16 UTC 2019 - fabian@ritter-vogt.de - -- Update to 5.16.2 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.16.2.php -- No code changes since 5.16.1 - -------------------------------------------------------------------- -Tue Jun 18 16:38:13 UTC 2019 - fabian@ritter-vogt.de - -- Update to 5.16.1 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.16.1.php -- Changes since 5.16.0: - * re-read color palettes when application color changes (kde#408416) - -------------------------------------------------------------------- -Thu Jun 6 14:07:07 UTC 2019 - fabian@ritter-vogt.de - -- Update to 5.16.0 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.16.0.php -- Changes since 5.15.90: - * Fix cropped versions of the Next wallpaper - * [LnF] Update Breeze Dark preview - * Add new Next wallpaper - -------------------------------------------------------------------- -Thu May 16 16:56:35 UTC 2019 - fabian@ritter-vogt.de - -- Update to 5.15.90 - * New feature release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.15.90.php -- Changes since 5.15.5: - * Revert "Reduce the indicator arrow size for press-and-hold menus in QToolButtons" - * Add missing link - * Reduce the indicator arrow size for press-and-hold menus in QToolButtons - * Sharpen ApplicationMenu, Shade, ContextHelp icons - * Make shadow sizes linear - * Multiply radius by 0.5 in calculateBlurStdDev() - * Change shadow color to 0,0,0 for KStyle - * Change shadow color to 0,0,0 - * Fix Breeze Light color scheme to match regular Breeze version, where appropriate - * Make Breeze theme tooltip texts consistent and rename Breeze Snow cursors to Breeze Light - -------------------------------------------------------------------- -Tue May 7 11:04:55 UTC 2019 - fabian@ritter-vogt.de - -- Update to 5.15.5 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.15.5.php -- Changes since 5.15.4: - * Fix build with Qt 4 -- Remove patches, now upstream: - * 0001-Fix-build-with-Qt-4.patch - -------------------------------------------------------------------- -Tue Apr 2 12:40:56 UTC 2019 - fabian@ritter-vogt.de - -- Update to 5.15.4 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.15.4.php -- Changes since 5.15.3: - * Compute correct position of drag button press on X11 -- Add patch to fix build: - * 0001-Fix-build-with-Qt-4.patch - -------------------------------------------------------------------- -Tue Mar 12 13:15:20 UTC 2019 - fabian@ritter-vogt.de - -- Update to 5.15.3 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.15.3.php -- No code changes since 5.15.2 - -------------------------------------------------------------------- -Tue Feb 26 14:04:34 UTC 2019 - fabian@ritter-vogt.de - -- Update to 5.15.2 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.15.2.php -- No code changes since 5.15.1 - -------------------------------------------------------------------- -Tue Feb 19 12:25:04 UTC 2019 - fabian@ritter-vogt.de - -- Update to 5.15.1 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.15.1.php -- No code changes since 5.15.0 - -------------------------------------------------------------------- -Thu Feb 7 16:02:49 UTC 2019 - fabian@ritter-vogt.de - -- Update to 5.15.0 - * New feature release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.15.0.php -- Changes since 5.14.90: - * Use correct window for getting ComboBox current icon pixmap - * Update Breeze Dark Look and Feel theme previews - -------------------------------------------------------------------- -Thu Jan 17 18:45:17 UTC 2019 - fabian@ritter-vogt.de - -- Update to 5.14.90 - * New feature release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.14.90.php -- Changes since 5.14.5: - * Export path of installed color-schemes in BreezeConfig cmake - * Translate color scheme names - * Fix typo - * enable animations for standalone created buttons - * Fix build of libbreezecommon with USE_KDE4 - * [libbreezecommon] Use box blur instead of FFT blur - * Improve accuracy of some window decoration options' labels BUG: 399602 FIXED-IN: 5.15.0 (kde#399602) - * Fix logic typo - * Add KDE4 guard round mouse synthesised test - * Don't drag windows in empty areas from touch/pen events - * Link *-resize to the right icons - * [cursors] Also link for Breeze Snow - * [Cursors] link *-resize to *_corner cursor (kde#399194) -- Does not use FFTW anymore - -------------------------------------------------------------------- -Tue Jan 8 13:36:35 UTC 2019 - fabian@ritter-vogt.de - -- Update to 5.14.5 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.14.5.php -- No code changes since 5.14.4 - -------------------------------------------------------------------- -Wed Nov 28 07:52:44 UTC 2018 - fabian@ritter-vogt.de - -- Update to 5.14.4 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.14.4.php -- Changes since 5.14.3: - * Fix uncentered crosshairs - * Improve contrast for crosshair cursors (kde#400110) - -------------------------------------------------------------------- -Tue Nov 6 15:53:04 UTC 2018 - fabian@ritter-vogt.de - -- Add David Edmundson's key to plasma.keyring -- Update to 5.14.3 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.14.3.php -- Changes since 5.14.2: - * Link *-resize to the right icons - * [cursors] Also link for Breeze Snow - * [Cursors] link *-resize to *_corner cursor (kde#399194) - -------------------------------------------------------------------- -Tue Oct 23 13:54:52 UTC 2018 - fabian@ritter-vogt.de - -- Update to 5.14.2 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.14.2.php -- No code changes since 5.14.1 - -------------------------------------------------------------------- -Tue Oct 16 14:05:12 UTC 2018 - fabian@ritter-vogt.de - -- Update to 5.14.1 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.14.1.php -- No code changes since 5.14.0 - -------------------------------------------------------------------- -Fri Oct 5 10:01:08 UTC 2018 - fabian@ritter-vogt.de - -- Update to 5.14.0 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.14.0.php -- Changes since 5.13.90: - * Allow to disable installation of wallpapers with breeze - * Fix finding QtQuick (kde#398663) - -------------------------------------------------------------------- -Sat Sep 15 16:25:26 UTC 2018 - fabian@ritter-vogt.de - -- Add tarball signature and keyring containing keys of release managers - Jonathan Riddell and Bhushan Shah - -------------------------------------------------------------------- -Thu Sep 13 17:24:58 UTC 2018 - fabian@ritter-vogt.de - -- Update to 5.13.90 - * New feature release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.13.90.php -- Changes since 5.13.5: - * Disable the title bar separator by default - * [kstyle] Fix deprecation warnings - * Properly use kpackage_install_package - * Set complete vectors instead of creting them at runtime - * Invert shade button by same logic as keep-above button - * [kstyle] Create shadow tiles on demand - * Rename libbreezecommon to libbreezecommon5 and don't install .so links - * Only include QtQuick support in Breeze KStyle if QtQuick is available - * Optimised 5.14 wallpaper filesizes and corrected banding issues. - * Plasma 5.14 "Cluster" Wallpaper - * [kdecoration] Delete unused includes - * [libbreezecommon] Fix build when qreal is float - * [kdecoration] Make shadows lighter - * [kstyle] Refine shadows - * [kdecoration] Refine shadows - * [libbreezecommon] Add box shadow helper - * Fixed detection of horizontal progressbar by re-introducing check on QStyleOptionProgressBar::orientation. Using option->state only even for Qt5 breaks ktorrent. - * [kstyle] Don't suppress deprecation warnings - * [kstyle] Drop QStyleOptionViewItemV4 in Qt 5 style plugin - * [kstyle] Drop QStyleOptionTabWidgetFrameV2 in Qt 5 style plugin - * [kstyle] Drop QStyleOptionTabV3 in Qt 5 style plugin - * [kstyle] Drop QStyleOptionProgressBarV2 in Qt 5 style plugin - * [kstyle] Drop QStyleOptionFrameV3 in Qt 5 style plugin - * [kstyle] Drop QStyleOptionFrameV2 in Qt 5 style plugin - * [kstyle] Drop QStyleOptionDockWidgetV2 in Qt 5 style plugin - * Turn off the extended resize handle/black triangle when there are no borders - -------------------------------------------------------------------- -Tue Sep 4 10:58:40 UTC 2018 - fabian@ritter-vogt.de - -- Update to 5.13.5 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.13.5.php -- Changes since 5.13.4: - * None - -------------------------------------------------------------------- -Tue Jul 31 15:18:32 CEST 2018 - fabian@ritter-vogt.de - -- Update to 5.13.4 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.13.4.php -- Changes since 5.13.3: - * None - -------------------------------------------------------------------- -Tue Jul 10 14:01:16 CEST 2018 - fabian@ritter-vogt.de - -- Update to 5.13.3 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.13.3.php -- Changes since 5.13.2: - * None - -------------------------------------------------------------------- -Tue Jun 26 16:00:04 CEST 2018 - fabian@ritter-vogt.de - -- Update to 5.13.2 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.13.2.php -- Changes since 5.13.1: - * None - -------------------------------------------------------------------- -Tue Jun 19 14:43:42 CEST 2018 - fabian@ritter-vogt.de - -- Update to 5.13.1 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.13.1.php -- Changes since 5.13.0: - * None - -------------------------------------------------------------------- -Thu Jun 7 20:03:50 CEST 2018 - fabian@ritter-vogt.de - -- Update to 5.13.0 - * New feature release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.13.0.php -- Changes since 5.12.90: - * Check for option->styleObject before accessing it (kde#395028) - -------------------------------------------------------------------- -Sat May 19 14:16:33 CEST 2018 - fabian@ritter-vogt.de - -- Update to 5.12.90 - * New feature release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.12.90.php -- Changes since 5.12.5: - * Draw mouse-over rect over the full toolbutton even if it has a menu - * Plasma 5.13 "Kokkini" Wallpaper - * Fix build with Qt 4 - * [kstyle] create shadow tiles more explicitly - * [kstyle] use Q_FALLTHROUGH in breezesplitterproxy - * [kdecoration] delete unused m_buttons field - * [colors] add corresponding CMakeLists.txt - * modernize: delete redundant return statements - * modernize: delete redundant void args - * modernize: use nullptr - * delete COPYING-ICONS - * [cursors] Add arrow cursor symlinks - * - Moved shadowSize from anonymous namespace to static member function - calculate proper shadow size for Mdi windows - fix mdi windows shadow renderning. - * Remove long-time deprecated Encoding=UTF-8 from desktop format file - * fix double spacing bug - * Fixed kde4 compilation. Fixed warning about blurhelper initialization. - * Added optional transparency/blur to menu frames - * Revert "Added option to set transparency and blur behind menu frames such as right click context menu, toolbar menu, etc." - * align checkable widgets in menu items - * Added option to set transparency and blur behind menu frames such as right click context menu, toolbar menu, etc. Transparency and blur is disabled by default. Submitted on behalf of Alex Nemeth - * Revert "reserve space for checkable widgets in menu items" - * reserve space for checkable widgets in menu items - * Add the marking gcc likes to silence -Wimplicit-fallthrough= warning - * fixed KDE4 compîlation (missing header) - * ensure the rounded rectangle of scrollbard stays round - * Fixed qt4 compilation. - * even slimmer scrollbars - -------------------------------------------------------------------- -Wed May 2 09:05:34 CEST 2018 - fabian@ritter-vogt.de - -- Update to 5.12.5 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.12.5.php -- Changes since 5.12.4: - * None - -------------------------------------------------------------------- -Tue Mar 27 15:40:47 CEST 2018 - fabian@ritter-vogt.de - -- Update to 5.12.4 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.12.4.php -- Changes since 5.12.3: - * - Moved shadowSize from anonymous namespace to static member function - calculate proper shadow size for Mdi windows - fix mdi windows shadow renderning. - -------------------------------------------------------------------- -Tue Mar 6 16:07:05 CET 2018 - fabian@ritter-vogt.de - -- Update to 5.12.3 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.12.3.php -- Changes since 5.12.2: - * Render application icon at paintdevice DPR (kde#390639) - -------------------------------------------------------------------- -Wed Feb 21 23:57:07 CET 2018 - lbeltrame@kde.org - -- Update to 5.12.2 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.12.2.php -- Changes since 5.12.1: - * None - -------------------------------------------------------------------- -Tue Feb 13 16:25:27 CET 2018 - fabian@ritter-vogt.de - -- Update to 5.12.1 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.12.1.php -- Changes since 5.12.0: - * Fix LnF theme data for window decoration - -------------------------------------------------------------------- -Fri Feb 2 21:03:42 CET 2018 - fabian@ritter-vogt.de - -- Update to 5.12.0 - * New feature release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.12.0.php -- Changes since 5.11.95: - * None - -------------------------------------------------------------------- -Mon Jan 15 15:54:02 CET 2018 - fabian@ritter-vogt.de - -- Update to 5.11.95 - * New feature release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.11.95.php -- Changes since 5.11.5: - * Use combobox to choose shadow size and use more appropriate values for menu & tooltip shadow sizes - * Remove obsolete reviewboardrc file - * Adjusted range and default value for shadowsize and shadowcolor, to match the decoration settings. CCMAIL: pointedstick@zoho.com - * Horizontally center shadows and make them bigger - * Make it obvious what "Display window borders for maximized windows" is for - * Fix indentation of icon for left aligned toolbuttons - * Fix indentation of icon for left aligned toolbuttons - * fixed comments - * fixed icon state - * When an icon is set to a QMenuBar Item, render the icon only, and ignore the text, when set, as this is what qmenubar expects. BUG: 387539 (kde#387539) - * fixed comments - * fixed icon state - * When an icon is set to a QMenuBar Item, render the icon only, and ignore the text, when set, as this is what qmenubar expects. BUG: 387539 (kde#387539) - * [Breeze window decoration] Use intersects instead of contains - * [Breeze window decoration] Don't repaint title bar if not damaged - * Removed heuristics for not drawing separator between titlebar and window since there is now a user configurable settings to achieve this - * Set bottom border to zero for shaded windows - * Implement SH_Widget_Animation_Duration style hint - * Cleanup merge conflict - * Very slightly increase text contrast for the default Breeze color scheme (kde#381288) - * Added setting to toggle drawing of title bar separator - * Add space in front of spinbox suffix "ms" - * better contrast for Complementary areas - * add license to .desktop file - * use proper color for toolbutton text in some edge cases (thanks Kay for reporting! ) - * fixed icon mode in some toolbutton corner cases (explicitly: sunken but not on and not mouse over) - -------------------------------------------------------------------- -Tue Jan 2 16:40:07 CET 2018 - fabian@ritter-vogt.de - -- Update to 5.11.5 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.11.5.php -- Changes since 5.11.4: - * Fix indentation of icon for left aligned toolbuttons - * fixed comments - * fixed icon state - * When an icon is set to a QMenuBar Item, render the icon only, and ignore the text, when set, as this is what qmenubar expects. BUG: 387539 (kde#387539) - -------------------------------------------------------------------- -Thu Nov 30 10:41:57 CET 2017 - fabian@ritter-vogt.de - -- Update to 5.11.4 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.11.4.php -- Changes since 5.11.3: - * None - -------------------------------------------------------------------- -Tue Nov 7 15:15:11 CET 2017 - fabian@ritter-vogt.de - -- Update to 5.11.3 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.11.3.php -- Changes since 5.11.2: - * None - -------------------------------------------------------------------- -Tue Oct 24 18:12:21 CEST 2017 - fabian@ritter-vogt.de - -- Update to 5.11.2 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.11.2.php -- Changes since 5.11.1: - * None - -------------------------------------------------------------------- -Tue Oct 17 17:18:01 CEST 2017 - fabian@ritter-vogt.de - -- Update to 5.11.1 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.11.1.php -- Changes since 5.11.0: - * [kstyle] Use KWindowSystem to determine on which platform we are - -------------------------------------------------------------------- -Thu Oct 5 12:39:17 CEST 2017 - fabian@ritter-vogt.de - -- Update to 5.11.0 - * New feature release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.11.0.php -- Changes since 5.10.95: - * None - -------------------------------------------------------------------- -Thu Sep 14 14:29:03 CEST 2017 - fabian@ritter-vogt.de - -- Update to 5.10.95 - * New feature release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.10.95.php -- Too many changes to list here - -------------------------------------------------------------------- -Tue Aug 22 19:11:30 CEST 2017 - fabian@ritter-vogt.de - -- Update to 5.10.5 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.10.5.php -- Changes since 5.10.4: - * None - -------------------------------------------------------------------- -Thu Aug 17 08:46:54 UTC 2017 - fabian@ritter-vogt.de - -- Recommend kdebase4-workspace-libs here instead of in patterns-kde - to only install it with Qt4 - -------------------------------------------------------------------- -Tue Jul 18 16:14:47 CEST 2017 - fabian@ritter-vogt.de - -- Update to 5.10.4 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.10.4.php -- Changes since 5.10.3: - * None - -------------------------------------------------------------------- -Tue Jun 27 17:49:35 CEST 2017 - fabian@ritter-vogt.de - -- Update to 5.10.3 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.10.3.php -- Changes since 5.10.2: - * - hide shadow when mask is empty - properly handle creating shadow when mdi window is already visible at registration - added some "auto" declarations CCBUG: 379790 - -------------------------------------------------------------------- -Tue Jun 13 21:35:00 CEST 2017 - fabian@ritter-vogt.de - -- Update to 5.10.2 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.10.2.php -- Changes since 5.10.1: - * use fontMetrics.height() rather than boundingRect(...).height() the height of the title bar should not depend on the caption content. - -------------------------------------------------------------------- -Tue Jun 6 17:19:55 CEST 2017 - fabian@ritter-vogt.de - -- Update to 5.10.1 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.10.1.php -- Changes since 5.10.0: - * None - -------------------------------------------------------------------- -Fri May 26 14:10:29 CEST 2017 - fabian@ritter-vogt.de - -- Update to 5.10.0 - * New feature release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.10.0.php -- Changes since 5.9.95: - * set a mask to shadow widget to make sure that it does not overlap with the mdi window. BUG:379790 (kde#379790) - -------------------------------------------------------------------- -Thu May 11 20:26:19 CEST 2017 - fabian@ritter-vogt.de - -- Update to 5.9.95 - * New feature release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.9.95.php -- Changes since 5.9.5: - * fixed warning about unused variable - * bump version for 5.9.5 - * Fix progress bar color - * [cursors] Add 36px (1.5 scaling) size for Breeze and Breeze Snow Cursors (kde#348603) - * Added new resolutions: 1366x768 and 1920x1200 Differential Revision: https://phabricator.kde.org/D4400 - * Fix header content size when sorting is disabled - -------------------------------------------------------------------- -Tue Apr 25 18:57:59 CEST 2017 - lbeltrame@kde.org - -- Update to 5.9.5 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.9.5.php -- Changes since 5.9.4: - * bump version for 5.9.5 - -------------------------------------------------------------------- -Tue Mar 21 19:21:42 CET 2017 - fabian@ritter-vogt.de - -- Update to 5.9.4 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.9.4.php -- Changes since 5.9.3: - * None -------------------------------------------------------------------- -Tue Feb 28 19:54:02 CET 2017 - fabian@ritter-vogt.de - -- Update to 5.9.3 - * New bugfix release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.9.3.php -- Changes since 5.9.2: - * Use QPalette::Shadow instead of QPalette::Text to darken inactive tabs BUG:373088 - -------------------------------------------------------------------- -Tue Feb 14 17:58:12 CET 2017 - fabian@ritter-vogt.de - -- Update to 5.9.2 - * New feature release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.9.2.php -- Changes since 5.9.1: - * None - -------------------------------------------------------------------- -Tue Feb 7 18:51:19 CET 2017 - fabian@ritter-vogt.de - -- Update to 5.9.1 - * New feature release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.9.1.php -- Changes since 5.9.0: - * [KStyle] Don't draw focus indicator on ComboBox entries - -------------------------------------------------------------------- -Thu Jan 26 19:57:59 CET 2017 - fabian@ritter-vogt.de - -- Update to 5.9.0 - * New feature release - * For more details please see: - * https://www.kde.org/announcements/plasma-5.9.0.php -- Changes since 5.8.95: - * [lookandfeel] Breeze window decoration - -------------------------------------------------------------------- -Sat Jan 14 19:41:46 UTC 2017 - herbert@graeber-clan.de - -- Supplement packagand(breeze5-stlye:libqt4) as a replecement for - Requires/Recommends in plasma5-session and breeze5-style - -------------------------------------------------------------------- -Thu Jan 12 20:39:58 UTC 2017 - fabian@ritter-vogt.de - -- Update to 5.8.95 (Plasma 5.9 Beta) - * New feature release - * For more details please see: - https://www.kde.org/announcements/plasma-5.8.95.php -- Changes: - * Draw scrollbar as focused when scrollbar itself have focus. - * Plasma 5.9 wallpaper "Canopee". - * Implement drag from free space also for QtQuickControls. - * Default to no arrows. - * Make scrollbar size configurable. - * Removed unnecessary ifdef. - * Fix flickering arrows. - * Fixed warning about unused variable. - * Fixed warning about unused variables. - * Fixed compilation for KDE4. - * The combobox needs to be 2 pixels wider for contents to fit. - * Show full scrollbar only on mouse over. - * Fix broken kcfgc files. - * [kstyle] Implement window moving on Wayland. - * Fix crash on exit. - -------------------------------------------------------------------- -Tue Dec 27 18:31:45 UTC 2016 - fabian@ritter-vogt.de - -- Update to 5.8.5 - * New bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.8.5.php - -------------------------------------------------------------------- -Wed Nov 23 10:59:30 UTC 2016 - fabian@ritter-vogt.de - -- Update to 5.8.4 - * New bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.8.4.php - -------------------------------------------------------------------- -Tue Nov 1 10:36:40 UTC 2016 - fabian@ritter-vogt.de - -- Update to 5.8.3 - * New bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.8.3.php - -------------------------------------------------------------------- -Sun Oct 23 18:02:27 UTC 2016 - wbauer@tmo.at - -- Update add-support-for-Q3ListView-to-the-KDE4-style.patch to fix - some graphical glitches (boo#1005902) - -------------------------------------------------------------------- -Tue Oct 18 15:16:03 UTC 2016 - fabian@ritter-vogt.de - -- Update to 5.8.2 - * New bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.8.2.php - -------------------------------------------------------------------- -Tue Oct 11 15:44:28 UTC 2016 - fabian@ritter-vogt.de - -- Update to 5.8.1 - * New bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.8.1.php - -------------------------------------------------------------------- -Wed Oct 5 07:58:40 UTC 2016 - fabian@ritter-vogt.de - -- Add Source: URL back - -------------------------------------------------------------------- -Sun Oct 2 11:17:40 UTC 2016 - wbauer@tmo.at - -- Add add-support-for-Q3ListView-to-the-KDE4-style.patch to fix - the display of the collapse/expand icon in Q3ListView that still - may be used by some KDE4 applications, knode e.g. (boo#973728) - -------------------------------------------------------------------- -Thu Sep 29 16:36:28 UTC 2016 - fabian@ritter-vogt.de - -- Update to 5.8.0 - * New LTS feature release - * For more details please see: - https://www.kde.org/announcements/plasma-5.8.0.php - -------------------------------------------------------------------- -Thu Sep 15 15:53:55 UTC 2016 - fabian@ritter-vogt.de - -- Update to 5.7.95 (Plasma 5.8 Beta) - * New LTS feature release - * For more details please see: - https://www.kde.org/announcements/plasma-5.7.95.php - -------------------------------------------------------------------- -Tue Sep 13 17:42:09 UTC 2016 - fabian@ritter-vogt.de - -- Update to 5.7.5 - * New bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.7.5.php - -------------------------------------------------------------------- -Fri Aug 26 20:36:41 UTC 2016 - fabian@ritter-vogt.de - -- Update to 5.7.4 - * New bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.7.4.php - -------------------------------------------------------------------- -Tue Aug 2 11:35:49 UTC 2016 - hrvoje.senjan@gmail.com - -- Update to 5.7.3 - * New bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.7.3.php - -------------------------------------------------------------------- -Wed Jul 20 08:54:14 UTC 2016 - hrvoje.senjan@gmail.com - -- Update to 5.7.2 - * New bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.7.2.php - -------------------------------------------------------------------- -Wed Jul 13 06:13:22 UTC 2016 - hrvoje.senjan@gmail.com - -- Update to 5.7.1 - * New bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.7.1.php - -------------------------------------------------------------------- -Thu Jun 30 12:02:17 UTC 2016 - hrvoje.senjan@gmail.com - -- Update to 5.7.0 - * New feature release - * For more details please see: - https://www.kde.org/announcements/plasma-5.7.0.php - -------------------------------------------------------------------- -Sun May 15 16:50:10 UTC 2016 - hrvoje.senjan@gmail.com - -- Update to 5.6.4 - * New bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.6.4.php - -------------------------------------------------------------------- -Tue Apr 19 20:45:25 UTC 2016 - hrvoje.senjan@gmail.com - -- Update to 5.6.3 - * New bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.6.3.php - -------------------------------------------------------------------- -Tue Apr 5 15:53:41 UTC 2016 - hrvoje.senjan@gmail.com - -- Update to 5.6.2 - * New bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.6.2.php - -------------------------------------------------------------------- -Tue Mar 29 16:20:33 UTC 2016 - hrvoje.senjan@gmail.com - -- Update to 5.6.1 - * New bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.6.1.php - -------------------------------------------------------------------- -Sun Mar 20 09:19:46 UTC 2016 - hrvoje.senjan@gmail.com - -- Update to 5.6.0 - * New feature release - * For more details please see: - https://www.kde.org/announcements/plasma-5.6.0.php - -------------------------------------------------------------------- -Tue Mar 1 17:31:44 UTC 2016 - hrvoje.senjan@gmail.com - -- Update to 5.5.5 (boo#968966) - * Bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.5.5.php - -------------------------------------------------------------------- -Tue Jan 26 22:20:05 UTC 2016 - hrvoje.senjan@gmail.com - -- Update to 5.5.4: - * Bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.5.4.php - -------------------------------------------------------------------- -Wed Jan 6 14:12:02 UTC 2016 - hrvoje.senjan@gmail.com - -- Update to 5.5.3: - * Bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.5.3.php - -------------------------------------------------------------------- -Tue Dec 22 22:35:02 UTC 2015 - hrvoje.senjan@gmail.com - -- Update to 5.5.2: - * Bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.5.2.php - -------------------------------------------------------------------- -Tue Dec 15 17:49:47 UTC 2015 - hrvoje.senjan@gmail.com - -- Update to 5.5.1: - * Bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.5.1.php - -------------------------------------------------------------------- -Sat Dec 12 17:31:02 UTC 2015 - hrvoje.senjan@gmail.com - -- Update to 5.5.0: - * For more details please see: - https://dot.kde.org/2015/12/08/plasma-55-beautiful-new-artwork -- Move to cmake(...) BuildRequires where possible - -------------------------------------------------------------------- -Sun Nov 8 18:09:42 UTC 2015 - hrvoje.senjan@gmail.com - -- Update to 5.4.3 (boo#955068): - * For more details please see: - https://www.kde.org/announcements/plasma-5.4.3.php -. Drop Use-NETRootInfo-to-initiate-wm-move-operation.patch, upstreamed - -------------------------------------------------------------------- -Sat Oct 10 13:52:44 UTC 2015 - hrvoje.senjan@gmail.com - -- Added Use-NETRootInfo-to-initiate-wm-move-operation.patch - (kde#353749) - -------------------------------------------------------------------- -Sun Oct 4 10:43:28 UTC 2015 - hrvoje.senjan@gmail.com - -- Update to 5.4.2: - * For more details please see: - https://www.kde.org/announcements/plasma-5.4.2.php - -------------------------------------------------------------------- -Tue Sep 8 18:39:33 UTC 2015 - hrvoje.senjan@gmail.com - -- Update to 5.4.1: - * For more details please see: - https://www.kde.org/announcements/plasma-5.4.1.php - -------------------------------------------------------------------- -Mon Aug 24 17:48:03 UTC 2015 - hrvoje.senjan@gmail.com - -- Update to 5.4.0: - * For more details please see: - https://www.kde.org/announcements/plasma-5.4.0.php - -------------------------------------------------------------------- -Sun Aug 16 10:17:06 UTC 2015 - hrvoje.senjan@gmail.com - -- Update to 5.3.95 aka 5.4 beta: - This release of Plasma brings many nice touches for our users - such as much improved high DPI support, KRunner auto-completion - and many new beautiful Breeze icons. It also lays the ground for - the future with a tech preview of Wayland session available. - We're shipping a few new components such as an Audio Volume - Plasma Widget, monitor calibration tool and the User Manager - tool comes out beta. - * For more details please see: - https://www.kde.org/announcements/plasma-5.3.95.php - -------------------------------------------------------------------- -Sun Jun 28 18:31:41 UTC 2015 - hrvoje.senjan@gmail.com - -- Update to 5.3.2: - * Bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.3.2.php - -------------------------------------------------------------------- -Fri May 22 15:30:28 UTC 2015 - hrvoje.senjan@gmail.com - -- Update to 5.3.1: - * Bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.3.1.php - -------------------------------------------------------------------- -Thu Apr 23 13:27:18 UTC 2015 - hrvoje.senjan@gmail.com - -- Update to 5.3 Final: - * For more details please see: - https://www.kde.org/announcements/plasma-5.3.0.php - -------------------------------------------------------------------- -Sat Apr 11 18:53:31 UTC 2015 - hrvoje.senjan@gmail.com - -- Update to 5.2.95 aka 5.3 beta: - * New feature release - * For more details please see: - https://www.kde.org/announcements/plasma-5.2.95.php -- Update required Qt version to 5.4.0 -- Drop patches merged upstream: - 0001-Cleanup-code-to-align-with-master.patch, - 0002-set-button-s-visibility-depending-on-the-availabilit.patch, - 0003-Properly-update-size-grip-visibility-on-maximizedCha.patch - and 0004-Fixed-foreground-color-for-pressed-buttons.patch - -------------------------------------------------------------------- -Thu Mar 19 17:42:27 UTC 2015 - hrvoje.senjan@gmail.com - -- Update to 5.2.2: - * Bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.2.2.php -- Drop patches merged upstream: - 0003-return-parent-style-method-when-option-passed-to-tab.patch, - 0002-Check-scrollbar-policy-before-forwarding-events.patch, - 0004-check-widget-validity-before-calling-deleteLater.patch and - 0001-Added-an-explicit-flag-as-output-from-captionRect-to.patch -- Added patches from upstream: - 0001-Cleanup-code-to-align-with-master.patch (kde#345424), - 0002-set-button-s-visibility-depending-on-the-availabilit.patch - (kde#343641), - 0003-Properly-update-size-grip-visibility-on-maximizedCha.patch - and 0004-Fixed-foreground-color-for-pressed-buttons.patch - -------------------------------------------------------------------- -Tue Mar 10 18:49:07 UTC 2015 - hrvoje.senjan@gmail.com - -- Added patches from upstream: - 0001-Added-an-explicit-flag-as-output-from-captionRect-to.patch, - 0002-Check-scrollbar-policy-before-forwarding-events.patch, - 0003-return-parent-style-method-when-option-passed-to-tab.patch - and 0004-check-widget-validity-before-calling-deleteLater.patch - -------------------------------------------------------------------- -Fri Feb 20 02:43:47 UTC 2015 - hrvoje.senjan@gmail.com - -- Update to 5.2.1: - * Bugfix release - * For more details please see: - https://www.kde.org/announcements/plasma-5.2.1.php - -------------------------------------------------------------------- -Mon Jan 26 19:49:12 UTC 2015 - hrvoje.senjan@gmail.com - -- Update to 5.2 Final: - * For more details please see: - https://www.kde.org/announcements/plasma-5.2.0.php - -------------------------------------------------------------------- -Tue Jan 13 16:34:51 UTC 2015 - hrvoje.senjan@gmail.com - -- Update to 5.2 Beta aka 5.1.95: - * Undo changes to Plasma desktop layout - * Smarter sorting of results in KRunner - * Breeze window decoration theme adds a new look to your - desktop and is now used by default - * New white mouse cursor theme for Breeze. - * New plasma widgets: 15 puzzle, web browser, show desktop - * Over 300 bugs fixed throughout Plasma modules. - * For more details please see: - https://www.kde.org/announcements/plasma-5.1.95.php - -------------------------------------------------------------------- -Thu Dec 11 17:59:10 UTC 2014 - hrvoje.senjan@gmail.com - -- Update to 5.1.2: - * Bugfix release - * Fix ui files - * Fixed color role for accelerator - * Added inputWidgetEngine, for abstract item views, line editors, - spinboxes and comboboxes it is needed to avoid animation - conflicts between lists and buttons (when, e.g. there is a - checkbox inside a list) - * Removed Q3ListView support - * Manually calculate viewport update rect on header hover change - kde#340343 - * Fixed KDE4 compilation. kde#341006 - * Remove mnemonic underlines when alt-tabbing - * Removed unused members - * Fixed uninitialized member _value - * For more details please see: - https://www.kde.org/announcements/plasma-5.1.2.php - -------------------------------------------------------------------- -Thu Nov 6 20:14:21 UTC 2014 - hrvoje.senjan@gmail.com - -- Update to 5.1.1: - * Bugfix release - * Do not clip away vertical margins for headers, kde#340150 - * Properly handle RTL for corner rects and tabbar, kde#340155 - * Center icon in tabs when there is no text and no buttons, kde#340257 - * Do not takeout margins from toolbutton before rendering text, - unless they have inline indicator, kde#340341 - * For more details please see: - https://www.kde.org/announcements/plasma-5.1.1.php - -------------------------------------------------------------------- -Thu Oct 9 21:24:26 UTC 2014 - hrvoje.senjan@gmail.com - -- Update to 5.1 Final: - * Bugfixes since RC1 - * For more details please see: - https://www.kde.org/announcements/plasma-5.1.0.php -- Drop dont-build-translations.patch, fixed upstream - -------------------------------------------------------------------- -Thu Sep 25 22:45:25 UTC 2014 - hrvoje.senjan@gmail.com - -- Update to 5.0.95: - * Minor tweaks to breeze style since previous update -- Added dont-build-translations.patch: we don't want translations - built twice - -------------------------------------------------------------------- -Wed Sep 24 12:15:17 UTC 2014 - hrvoje.senjan@gmail.com - -- Update to 5.0.95~git20140924 - * Many improvements for the Breeze style -- Drop pkgconfig(x11) BuildRequires - -------------------------------------------------------------------- -Tue Aug 26 08:13:31 UTC 2014 - hrvoje.senjan@gmail.com - -- Update to 5.0.95~git20140826 - * new C++ Qt5 style (with option to build kde4 style also) - * updated icons -- Split the main package to icons, cursors, wallpapers, decoration - and style packages -- Added frameworkintegration-devel, kcompletion-devel, ki18n-devel, - kwindowsystem-devel, pkgconfig(Qt5DBus), pkgconfig(Qt5Widgets), - pkgconfig(Qt5X11Extras), pkgconfig(x11), pkgconfig(x11-xcb) and - pkgconfig(xcb) -- Drop qtcurve-(qt4,qt5) Recommends and Requires due to switch of - default to new style -- Create breeze4-style package -- Comment out Source URL temporarily - -------------------------------------------------------------------- -Mon Aug 11 21:22:54 UTC 2014 - hrvoje.senjan@gmail.com - -- Update to 5.0.1 - * Bugfix release - -------------------------------------------------------------------- -Fri Jul 11 18:24:54 UTC 2014 - hrvoje.senjan@gmail.com - -- Update to 5.0.0 - * Plasma 5.0 Final -- Update license -- Add Source URL - -------------------------------------------------------------------- -Thu Jul 3 17:35:40 UTC 2014 - hrvoje.senjan@gmail.com - -- Update to 4.98.0 - * Plasma 5 RC release - -------------------------------------------------------------------- -Thu Jun 5 16:03:52 UTC 2014 - hrvoje.senjan@gmail.com - -- Activate breeze package - diff --git a/breeze4-style.spec b/breeze4-style.spec deleted file mode 100644 index 3a2b171..0000000 --- a/breeze4-style.spec +++ /dev/null @@ -1,80 +0,0 @@ -# -# spec file for package breeze4-style -# -# Copyright (c) 2020 SUSE LLC -# -# All modifications and additions to the file contributed by third parties -# remain the property of their copyright owners, unless otherwise agreed -# upon. The license for this file, and modifications and additions to the -# file, is the same license as for the pristine package itself (unless the -# license for the pristine package is not an Open Source License, in which -# case the license is the MIT License). An "Open Source License" is a -# license that conforms to the Open Source Definition (Version 1.9) -# published by the Open Source Initiative. - -# Please submit bugfixes or comments via https://bugs.opensuse.org/ -# - - -Name: breeze4-style -Version: 5.18.5 -Release: 0 -Summary: Plasma Desktop artwork, styles and assets -License: GPL-2.0-or-later -Group: System/GUI/KDE -URL: http://www.kde.org -Source: https://download.kde.org/stable/plasma/%{version}/breeze-%{version}.tar.xz -%if %{with lang} -Source1: https://download.kde.org/stable/plasma/%{version}/breeze-%{version}.tar.xz.sig -Source2: plasma.keyring -%endif -# PATCH-FIX-OPENSUSE add-support-for-Q3ListView-to-the-KDE4-style.patch boo#973728 wbauer@tmo.at -- fixes collapse/expand icon in Q3ListView that still may be used by some KDE4 applications (knode e.g.) -Patch0: add-support-for-Q3ListView-to-the-KDE4-style.patch -BuildRequires: automoc4 -BuildRequires: cmake >= 2.8.12 -BuildRequires: kde4-filesystem -BuildRequires: libkde4-devel -BuildRequires: libqt4-devel -BuildRequires: libxcb-devel -# This sets the breeze4 style as default in a Plasma environment -Recommends: kdebase4-workspace-libs -Supplements: packageand(breeze5-style:libqt4) -%if 0%{?suse_version} > 1500 -ExclusiveArch: do_not_build -%endif - -%description -Artwork, styles and assets for the Breeze visual style for the Plasma Desktop. -This package contains kde4 backport of new default Plasma 5 style. - -%package -n libbreezecommon4-5 -Summary: Library containing support code for the Breeze Qt4 style -Group: System/Libraries - -%description -n libbreezecommon4-5 -Library containing support code for the Breeze Qt4 style. - -%prep -%setup -q -n breeze-%{version} -%autopatch -p1 - -%build - %cmake_kde4 -d build -- -DUSE_KDE4=ON - %make_jobs - -%install - %kde4_makeinstall -C build - -%post -p /sbin/ldconfig -n libbreezecommon4-5 -%postun -p /sbin/ldconfig -n libbreezecommon4-5 - -%files -%license COPYING* -%{_kde4_modulesdir}/ -%{_kde4_appsdir}/ - -%files -n libbreezecommon4-5 -%license COPYING* -%{_libdir}/libbreezecommon4.so.* - -%changelog From bac4e675a26b8b476f156d1f911de3a734abad3f2f2c1fb04e3c2181a1f003ab Mon Sep 17 00:00:00 2001 From: Luca Beltrame Date: Sun, 7 Jun 2020 18:00:55 +0000 Subject: [PATCH 2/2] Plasma 5.19.0, 2nd try. Not public, please publish disable before accepting OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/breeze?expand=0&rev=293 --- breeze-5.18.90.tar.xz | 3 --- breeze-5.18.90.tar.xz.sig | 11 ----------- breeze-5.19.0.tar.xz | 3 +++ breeze-5.19.0.tar.xz.sig | 11 +++++++++++ breeze.changes | 11 +++++++++++ breeze.spec | 6 +++--- 6 files changed, 28 insertions(+), 17 deletions(-) delete mode 100644 breeze-5.18.90.tar.xz delete mode 100644 breeze-5.18.90.tar.xz.sig create mode 100644 breeze-5.19.0.tar.xz create mode 100644 breeze-5.19.0.tar.xz.sig diff --git a/breeze-5.18.90.tar.xz b/breeze-5.18.90.tar.xz deleted file mode 100644 index 1fc4bf5..0000000 --- a/breeze-5.18.90.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:35ce9ce202be6f735e2689eac6d444dc337b40e0d201941e0aec2fa859a7f99f -size 22759904 diff --git a/breeze-5.18.90.tar.xz.sig b/breeze-5.18.90.tar.xz.sig deleted file mode 100644 index a6d0375..0000000 --- a/breeze-5.18.90.tar.xz.sig +++ /dev/null @@ -1,11 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQEzBAABCgAdFiEELR1bBYg1d4fenuIl7JTRj38FmX4FAl69HXUACgkQ7JTRj38F -mX6C0Qf/bSKW9hPyuEDm3wtHTDMg+uuKFHMVyMzKqzhCU3N2rO43/QPwkETkzGy1 -sd0f6z83VrBf6M2qlqhVMlsoAZ9IZBCXYcc6VM1/6S9daTfd1CuLt4JdZ5a0Mex6 -cqB7I/nsm7H6SXWVSsAIDXIuLVh6bLuunJbhJNq3KFOP+fO3ZUGd4ahjQdnAUbwx -6PWsJR42mWaGlon8uGgoZcWd/E+SymiYwbjMFI/ABJcVFVdQTqvZ8ZIDG6uTCbeR -LRAgALADZTbO3KpB8kmg+9rypnsg3nZHQzL7JjPyOlsyVQhHd4SVEWmVxWkB+vSg -vHJ2334RpGrjqk2WlE+9UV/bsZMoYw== -=s6Ii ------END PGP SIGNATURE----- diff --git a/breeze-5.19.0.tar.xz b/breeze-5.19.0.tar.xz new file mode 100644 index 0000000..20ce711 --- /dev/null +++ b/breeze-5.19.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bf2abce3fb12abf1da79a417a40218cdf7cd089591dccf8ca0e2614671046f6 +size 22763360 diff --git a/breeze-5.19.0.tar.xz.sig b/breeze-5.19.0.tar.xz.sig new file mode 100644 index 0000000..e075964 --- /dev/null +++ b/breeze-5.19.0.tar.xz.sig @@ -0,0 +1,11 @@ +-----BEGIN PGP SIGNATURE----- + +iQEzBAABCgAdFiEELR1bBYg1d4fenuIl7JTRj38FmX4FAl7Y1SwACgkQ7JTRj38F +mX4RqwgAtsyBFw5LrUrSmGK1oVxk/p/J/sQiTLgUdUQTLuXiWo+qBQLGPrXIL6+2 +9gM9coL15aY/K8cOGD1H/1Kic9UXc8WcKRP6Cf8C5cbxrC0NRkVuvk0Kkv7BnlaH +DwEFQWRl6GtBJ38ZL6rVynoI2bKoW1Ts5zwLYt4Xpkhf++/DyUDEZ6duBeZlAznD +aOOwS0dRuBi9eL+cz3+DDkYr/RiAVb9QubMqGJxTfX06cbMtGMYGuJRmr2ZBsiZN +fIjRUpC9MbUgwqrCPXrhitUM10doKawQcKotLRm4QkCBR3qitZXo0ermdr/IuUZs +5a8mBR6rkFAyzVD8/nce2MqqqiE2QQ== +=fSii +-----END PGP SIGNATURE----- diff --git a/breeze.changes b/breeze.changes index 0916a7e..709327f 100644 --- a/breeze.changes +++ b/breeze.changes @@ -1,3 +1,14 @@ +------------------------------------------------------------------- +Thu Jun 4 13:27:10 UTC 2020 - Fabian Vogt + +- Update to 5.19.0 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/plasma-5.19.0.php +- Changes since 5.18.90: + * [kstyle] Ensure that shadows are destroyed after decorated windows + * [style] Reparent window shadows to widgets + ------------------------------------------------------------------- Thu May 14 14:33:01 UTC 2020 - Fabian Vogt diff --git a/breeze.spec b/breeze.spec index 0e0a64b..dc82d5b 100644 --- a/breeze.spec +++ b/breeze.spec @@ -22,15 +22,15 @@ %{!?_plasma5_version: %define _plasma5_version %(echo %{_plasma5_bugfix} | awk -F. '{print $1"."$2}')} %bcond_without lang Name: breeze -Version: 5.18.90 +Version: 5.19.0 Release: 0 Summary: Plasma Desktop artwork, styles and assets License: GPL-2.0-or-later Group: System/GUI/KDE URL: http://www.kde.org -Source: https://download.kde.org/unstable/plasma/%{version}/breeze-%{version}.tar.xz +Source: breeze-%{version}.tar.xz %if %{with lang} -Source1: https://download.kde.org/unstable/plasma/%{version}/breeze-%{version}.tar.xz.sig +Source1: breeze-%{version}.tar.xz.sig Source2: plasma.keyring %endif BuildRequires: cmake >= 2.8.12