[Differential] [Commented On] D2173: WIP: New System Settings delegate design

2016-07-20 Thread broulik (Kai Uwe Broulik)
broulik added a comment.


  Pretty! Having the sub-categories shown by default and being able to navigate 
to them directly is a significant improvement over the old layout.
  
  The layout layout doesn't handle different font sizes very well, I run at 125 
dpi with 1x device pixel ratio which causes the headings to touch the links and 
when it wraps it overlaps.F189183: Screenshot_20160720_094058.png 
 The delegates also have varying 
padding.F189196: Screenshot_20160720_094651.png 

  
  It doesn't work //at all// with Right-to-Left languages.F189186: 
Screenshot_20160720_094143.png 
  
  Unfortunately it's quite difficult to get the links to underline on hover (I 
tried) but it's pretty inconvenient that tapping outside of links but still in 
the QLabel eats the mouse event, so I can essentially only click either the 
icon or the headnig to enter the main category. Clicking where the mouse is in 
the screenshot does nothing:F189198: Screenshot_20160720_094916.png 

  
  Also, what's up with the slightly gray background which doesn't stretch all 
the way to the corners? F189191: Screenshot_20160720_094510.png 
 (Try looking at your screen at an angle 
to see the difference in color)
  
  Finally, as others have already noted it usually crashes on quit and clicking 
a sub-category brings up just this category with no way of switching to the its 
siblings other than going back to the overview.

REPOSITORY
  rSYSTEMSETTINGS System Settings

REVISION DETAIL
  https://phabricator.kde.org/D2173

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: davidedmundson, #plasma
Cc: broulik, colomar, jensreuterberg, ivan, mart, plasma-devel, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[sysadmin/ci-master-config] /: Change the versions of Qt 5 used on the CI system.

2016-07-20 Thread Ben Cooksley
Git commit 0b3511e4c66cce6206b04294c504cfbf93ae7056 by Ben Cooksley.
Committed on 20/07/2016 at 07:58.
Pushed by bcooksley into branch 'master'.

Change the versions of Qt 5 used on the CI system.
As Qt's compatibility between versions usually breaks on the CI, expect many 
things to break until everything has been rebuilt.
CCMAIL: kde-frameworks-de...@kde.org
CCMAIL: release-t...@kde.org
CCMAIL: kde-...@kde.org
CCMAIL: plasma-devel@kde.org
CCMAIL: kde-de...@kde.org

M  +2-2identifiers.json

http://commits.kde.org/sysadmin/ci-master-config/0b3511e4c66cce6206b04294c504cfbf93ae7056

diff --git a/identifiers.json b/identifiers.json
index 0067758..cf9becb 100644
--- a/identifiers.json
+++ b/identifiers.json
@@ -3903,8 +3903,8 @@
 "git": "git://code.qt.io/qt/qt5.git",
 "branchgroups":
 {
-"stable-kf5-qt5": "5.5",
-"kf5-qt5": "5.6"
+"stable-kf5-qt5": "5.6",
+"kf5-qt5": "5.7"
 },
 
"cron": "@weekly",
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: The situation of KWallet, and what to do about it?

2016-07-20 Thread Valentin Rusu
* Thomas Pfeiffer  [2016-07-13 11:41:14 +0200]:

> 
> On Linux we could use GNOME Keyring, but if we don't want that, we'd of
> course still have to implement our own backend. The advantage would be that
> it would be much easier to replace that at any point without having to adapt
> applications.
> 

There alre already well established solutions for password management
that tend to become widespread. We should provide KDE API for the main
one or two of them, and avoid re-inventing the wheel here. Users will
only be very happy if they can integrate their favourite password
manager with KDE.

The KDE API may compatible with KWallet's API, so existing application
won't need porting.


-- 
Valentin Rusu
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: [kde-community] Usage of QNetworkAccessManager

2016-07-20 Thread Richard Moore
On 14 July 2016 at 17:38, Thiago Macieira  wrote:

> On quinta-feira, 14 de julho de 2016 18:33:37 PDT Ben Cooksley wrote:
>
> > Unfortunately, from it's first iteration in Qt 4 QNetworkAccessManager
> > w
> ​e ​
> as shipped with a severe and fundamental defect in that it does not
> > follow HTTP redirects by default. Due to Qt behavioural and other
> > compatibility promises they can never change this behaviour, not even
> > in Qt 6.
>

​This is incorrect. We can certainly change it in qt6. In fact it's an open
discussion if we can change it before - we need evidence that the change
will not break apps that handle redirects themselves. If anyone has time to
test this then pleas​e let me know the results.

​​

> >
> > Please therefore ensure your application handles redirects
> > appropriately (the form of the code will depend on the version of Qt
> > in use) if you decide to use QNAM.
>
> You do that by setting the attribute FollowRedirectsAttribute in your
> QNetworkRequests.
>
>
​​
​Yes, the code in the example dfaure has linked to does it the hard way.

Cheers

Rich.
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Accepted] D2200: Expose window geometry to PlasmaWindow

2016-07-20 Thread hein (Eike Hein)
hein accepted this revision.
This revision is now accepted and ready to land.

REPOSITORY
  rKWIN KWin

BRANCH
  plasma-window-expose-geometry

REVISION DETAIL
  https://phabricator.kde.org/D2200

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #kwin, #plasma_on_wayland, hein
Cc: plasma-devel, kwin, hardening, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Commented On] D2144: Fix warnings

2016-07-20 Thread apol (Aleix Pol Gonzalez)
apol added a comment.


  > why adding check over mainFlickable.currentItem ? doesn't guard anything
  
  We don't want `mainFlickable.currentItem.width` to fail if 
`mainFlickable.currentItem` is null.

REPOSITORY
  rKIRIGAMI Kirigami

REVISION DETAIL
  https://phabricator.kde.org/D2144

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: apol, #kirigami, mart
Cc: plasma-devel
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Updated, 22 lines] D2144: Fix warnings

2016-07-20 Thread apol (Aleix Pol Gonzalez)
apol updated this revision to Diff 5344.
apol added a comment.


  Address Marco's comment

REPOSITORY
  rKIRIGAMI Kirigami

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D2144?vs=5096&id=5344

BRANCH
  master

REVISION DETAIL
  https://phabricator.kde.org/D2144

AFFECTED FILES
  src/controls/OverlayDrawer.qml
  src/controls/Page.qml
  src/controls/templates/ApplicationHeader.qml
  src/controls/templates/private/ContextIcon.qml
  src/controls/templates/private/MenuIcon.qml
  src/controls/templates/private/PageRow.qml

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: apol, #kirigami, mart
Cc: plasma-devel
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Breeze] [Bug 365318] KRDC is unreadable under breeze dark theme

2016-07-20 Thread Dimitar Petrovski via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=365318

--- Comment #14 from Dimitar Petrovski  ---
Sorry for the slow response. 

As I have stated above, if I set the theme from Look & Feel to breeze dark, the
problem is  present, but it is fixed if I set also breeze dark to gtk2 setting.
However I have retested the whole set breeze dark/ breeze light and login
logout and the problem is present if I do not also set the gtk2 theme.

From the KDE point I do not know how to set Qt to follow Gtk theme, but if you
can point me in the right direction I can test that.

I have forgot to mention that I have qt development environment and qt creator,
so maybe that messes things up

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Updated, 27 lines] D2144: Fix warnings

2016-07-20 Thread apol (Aleix Pol Gonzalez)
apol updated this revision to Diff 5345.
apol added a comment.


  Fix morphing, proper testing

REPOSITORY
  rKIRIGAMI Kirigami

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D2144?vs=5344&id=5345

BRANCH
  master

REVISION DETAIL
  https://phabricator.kde.org/D2144

AFFECTED FILES
  src/controls/OverlayDrawer.qml
  src/controls/Page.qml
  src/controls/templates/ApplicationHeader.qml
  src/controls/templates/private/ContextIcon.qml
  src/controls/templates/private/MenuIcon.qml
  src/controls/templates/private/PageRow.qml
  src/styles/Desktop/OverlayDrawer.qml

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: apol, #kirigami, mart
Cc: plasma-devel
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Accepted] D2144: Fix warnings

2016-07-20 Thread mart (Marco Martin)
mart accepted this revision.
This revision is now accepted and ready to land.

REPOSITORY
  rKIRIGAMI Kirigami

BRANCH
  master

REVISION DETAIL
  https://phabricator.kde.org/D2144

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: apol, #kirigami, mart
Cc: plasma-devel
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Closed] D2144: Fix warnings

2016-07-20 Thread apol (Aleix Pol Gonzalez)
This revision was automatically updated to reflect the committed changes.
Closed by commit rKIRIGAMI50b4b7b032a2: Fix warnings (authored by apol).

REPOSITORY
  rKIRIGAMI Kirigami

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D2144?vs=5345&id=5346

REVISION DETAIL
  https://phabricator.kde.org/D2144

AFFECTED FILES
  src/controls/OverlayDrawer.qml
  src/controls/Page.qml
  src/controls/templates/ApplicationHeader.qml
  src/controls/templates/private/ContextIcon.qml
  src/controls/templates/private/MenuIcon.qml
  src/controls/templates/private/PageRow.qml
  src/styles/Desktop/OverlayDrawer.qml

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: apol, #kirigami, mart
Cc: plasma-devel
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Request, 201 lines] D2233: Announce output changes to Wayland for platforms not handling outputs

2016-07-20 Thread Martin Gräßlin
graesslin created this revision.
graesslin added reviewers: KWin, Plasma on Wayland.
Restricted Application added subscribers: kwin, plasma-devel.
Restricted Application added projects: Plasma on Wayland, KWin.

REVISION SUMMARY
  Most platforms like the nested and virtual do not handle the outputs
  themselves and WaylandServer announces the Outputs to Wayland.
  
  So far this was static: at startup it got announced once to Wayland
  and any changes were not catched.
  
  This change makes WaylandServer listen to changes to the Screens and
  sync them to Wayland.
  
  Unfortunately KWin's internal Screen information is not sufficient to
  properly synchronize this to Wayland and also Wayland by not supporting
  adding/removing modes does not help.
  
  Thus the solution implemented here is to add new outputs reflecting the
  changes and then removing the old ones. This creates situations with more
  outputs being present than actually there, but prevents that there are
  no outputs at all.

TEST PLAN
  Auto test added which verifies this for the virtual platform

REPOSITORY
  rKWIN KWin

BRANCH
  announce-output-changes-to-wayland

REVISION DETAIL
  https://phabricator.kde.org/D2233

AFFECTED FILES
  autotests/integration/CMakeLists.txt
  autotests/integration/screen_changes_test.cpp
  plugins/platforms/virtual/screens_virtual.cpp
  wayland_server.cpp
  wayland_server.h

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #kwin, #plasma_on_wayland
Cc: plasma-devel, kwin, hardening, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Review Request 128485: Reposition the krunner window if the width changes

2016-07-20 Thread David Edmundson

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/128485/
---

(Updated July 20, 2016, 10:28 a.m.)


Status
--

This change has been marked as submitted.


Review request for Plasma.


Repository: plasma-workspace


Description
---

This is mostly useful for the first run where the first showEvent() happens 
whilst we have a width of 0. Leading to krunner starting in a random place 
sometimes.

Width changing could also theoretically happen at any other time if a different 
l&f had a krunner that dynamically changed size all over the place.


Diffs
-

  krunner/view.h 7314a2132ce5a9f409d7c164bccf99bb6ea5f144 
  krunner/view.cpp 1783a46f1596f899936cd6137f1a606bd9ea3ffb 

Diff: https://git.reviewboard.kde.org/r/128485/diff/


Testing
---


Thanks,

David Edmundson

___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Accepted] D2231: [plugins/qpa] Support SharingPlatformContext on the existing eglSurface and eglconfig

2016-07-20 Thread bshah (Bhushan Shah)
bshah accepted this revision.
bshah added a reviewer: bshah.
bshah added a comment.
This revision is now accepted and ready to land.


  Tested and works...

REPOSITORY
  rKWIN KWin

BRANCH
  sharingplatform-hwcomposer

REVISION DETAIL
  https://phabricator.kde.org/D2231

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #plasma_on_wayland, #kwin, bshah
Cc: bshah, plasma-devel, kwin, hardening, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Changed Subscribers] D2233: Announce output changes to Wayland for platforms not handling outputs

2016-07-20 Thread bshah (Bhushan Shah)
bshah added inline comments.

INLINE COMMENTS

> screens_virtual.cpp:41
>  [this] (const QVector &geometries) {
>  // TODO: update Wayland Output
> +const int oldCount = m_geometries.count();

Remove this comment?

REPOSITORY
  rKWIN KWin

REVISION DETAIL
  https://phabricator.kde.org/D2233

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #kwin, #plasma_on_wayland
Cc: bshah, plasma-devel, kwin, hardening, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Commented On] D2156: improve output identification

2016-07-20 Thread Sebastian Kügler
sebas added a comment.


  @davidedmundson Did you also get to try it?

REPOSITORY
  rKSCREEN KScreen

REVISION DETAIL
  https://phabricator.kde.org/D2156

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: sebas, #plasma
Cc: davidedmundson, graesslin, lbeltrame, plasma-devel, jensreuterberg, abetts, 
sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Updated] D2234: [platforms/x11] Support output removal in nested setup

2016-07-20 Thread Martin Gräßlin
graesslin added a dependency: D2233: Announce output changes to Wayland for 
platforms not handling outputs.

REPOSITORY
  rKWIN KWin

REVISION DETAIL
  https://phabricator.kde.org/D2234

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #kwin, #plasma_on_wayland
Cc: plasma-devel, kwin, hardening, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Changed Subscribers] D2202: Support restarting the OpenGL compositor on Wayland

2016-07-20 Thread bshah (Bhushan Shah)
bshah added inline comments.

INLINE COMMENTS

> scene_opengl_test.cpp:75-76
> +qputenv("XCURSOR_SIZE", QByteArrayLiteral("24"));
> +qputenv("KWIN_COMPOSE", QByteArrayLiteral("Q"));
> +qputenv("KWIN_COMPOSE", QByteArrayLiteral("O2"));
> +

?

REPOSITORY
  rKWIN KWin

REVISION DETAIL
  https://phabricator.kde.org/D2202

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #kwin, #plasma_on_wayland
Cc: bshah, plasma-devel, kwin, hardening, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Request, 22 lines] D2234: [platforms/x11] Support output removal in nested setup

2016-07-20 Thread Martin Gräßlin
graesslin created this revision.
graesslin added reviewers: KWin, Plasma on Wayland.
Restricted Application added subscribers: kwin, plasma-devel.
Restricted Application added projects: Plasma on Wayland, KWin.

REVISION SUMMARY
  When closing a nested window kwin_wayland only terminates if the closed
  window is the last output window. In a simulated multi-screen setup
  closing a window results in the output being removed.

TEST PLAN
  Closed windows, verified with xrandr

REPOSITORY
  rKWIN KWin

BRANCH
  platform-x11-nested-support-output-removal

REVISION DETAIL
  https://phabricator.kde.org/D2234

AFFECTED FILES
  plugins/platforms/x11/windowed/x11windowed_backend.cpp

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #kwin, #plasma_on_wayland
Cc: plasma-devel, kwin, hardening, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Updated] D2233: Announce output changes to Wayland for platforms not handling outputs

2016-07-20 Thread Martin Gräßlin
graesslin added a dependent revision: D2234: [platforms/x11] Support output 
removal in nested setup.

REPOSITORY
  rKWIN KWin

BRANCH
  announce-output-changes-to-wayland

REVISION DETAIL
  https://phabricator.kde.org/D2233

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #kwin, #plasma_on_wayland, sebas
Cc: sebas, bshah, plasma-devel, kwin, hardening, jensreuterberg, abetts
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Accepted] D2233: Announce output changes to Wayland for platforms not handling outputs

2016-07-20 Thread Sebastian Kügler
sebas accepted this revision.
sebas added a reviewer: sebas.
sebas added a comment.
This revision is now accepted and ready to land.


  Looks good to me.

REPOSITORY
  rKWIN KWin

BRANCH
  announce-output-changes-to-wayland

REVISION DETAIL
  https://phabricator.kde.org/D2233

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #kwin, #plasma_on_wayland, sebas
Cc: sebas, bshah, plasma-devel, kwin, hardening, jensreuterberg, abetts
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Request, 1 line] D2235: [platforms/x11] Properly reposition nested windows on resize events

2016-07-20 Thread Martin Gräßlin
graesslin created this revision.
graesslin added reviewers: KWin, Plasma on Wayland.
Restricted Application added subscribers: kwin, plasma-devel.
Restricted Application added projects: Plasma on Wayland, KWin.

REVISION SUMMARY
  The position of the output being resized was adjusted instead of only
  the other outputs.

TEST PLAN
  Resized windows, verified xrandr

REPOSITORY
  rKWIN KWin

BRANCH
  platform-x11-properly-reposition

REVISION DETAIL
  https://phabricator.kde.org/D2235

AFFECTED FILES
  plugins/platforms/x11/windowed/x11windowed_backend.cpp

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #kwin, #plasma_on_wayland
Cc: plasma-devel, kwin, hardening, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Accepted] D2156: improve output identification

2016-07-20 Thread davidedmundson (David Edmundson)
davidedmundson accepted this revision.
davidedmundson added a reviewer: davidedmundson.
This revision is now accepted and ready to land.

REPOSITORY
  rKSCREEN KScreen

REVISION DETAIL
  https://phabricator.kde.org/D2156

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: sebas, #plasma, davidedmundson
Cc: davidedmundson, graesslin, lbeltrame, plasma-devel, jensreuterberg, abetts, 
sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Updated] D2233: Announce output changes to Wayland for platforms not handling outputs

2016-07-20 Thread Martin Gräßlin
graesslin marked an inline comment as done.

REPOSITORY
  rKWIN KWin

BRANCH
  announce-output-changes-to-wayland

REVISION DETAIL
  https://phabricator.kde.org/D2233

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #kwin, #plasma_on_wayland, sebas
Cc: sebas, bshah, plasma-devel, kwin, hardening, jensreuterberg, abetts
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Closed] D2200: Expose window geometry to PlasmaWindow

2016-07-20 Thread Martin Gräßlin
This revision was automatically updated to reflect the committed changes.
Closed by commit rKWIN8445008e85e8: Expose window geometry to PlasmaWindow 
(authored by graesslin).

REPOSITORY
  rKWIN KWin

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D2200?vs=5253&id=5352

REVISION DETAIL
  https://phabricator.kde.org/D2200

AFFECTED FILES
  abstract_client.cpp
  autotests/integration/plasmawindow_test.cpp

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #kwin, #plasma_on_wayland, hein
Cc: plasma-devel, kwin, hardening, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Accepted] D2233: Announce output changes to Wayland for platforms not handling outputs

2016-07-20 Thread bshah (Bhushan Shah)
bshah accepted this revision.
bshah added a reviewer: bshah.

REPOSITORY
  rKWIN KWin

BRANCH
  announce-output-changes-to-wayland

REVISION DETAIL
  https://phabricator.kde.org/D2233

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #plasma_on_wayland, sebas, #kwin, bshah
Cc: sebas, bshah, plasma-devel, kwin, hardening, jensreuterberg, abetts
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Closed] D2233: Announce output changes to Wayland for platforms not handling outputs

2016-07-20 Thread Martin Gräßlin
This revision was automatically updated to reflect the committed changes.
Closed by commit rKWINd0c488f4a283: Announce output changes to Wayland for 
platforms not handling outputs (authored by graesslin).

CHANGED PRIOR TO COMMIT
  https://phabricator.kde.org/D2233?vs=5347&id=5353#toc

REPOSITORY
  rKWIN KWin

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D2233?vs=5347&id=5353

REVISION DETAIL
  https://phabricator.kde.org/D2233

AFFECTED FILES
  autotests/integration/CMakeLists.txt
  autotests/integration/screen_changes_test.cpp
  plugins/platforms/virtual/screens_virtual.cpp
  wayland_server.cpp
  wayland_server.h

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #plasma_on_wayland, sebas, #kwin, bshah
Cc: sebas, bshah, plasma-devel, kwin, hardening, jensreuterberg, abetts
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Closed] D2232: [plugins/hwcomposer] Use an RGBA_8888 format for rendering surface

2016-07-20 Thread Martin Gräßlin
This revision was automatically updated to reflect the committed changes.
Closed by commit rKWINa95be71ec183: [plugins/hwcomposer] Use an RGBA_ 
format for rendering surface (authored by graesslin).

REPOSITORY
  rKWIN KWin

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D2232?vs=5343&id=5351

REVISION DETAIL
  https://phabricator.kde.org/D2232

AFFECTED FILES
  plugins/platforms/hwcomposer/egl_hwcomposer_backend.cpp
  plugins/platforms/hwcomposer/hwcomposer_backend.cpp

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #plasma_on_wayland, #kwin, bshah
Cc: plasma-devel, kwin, hardening, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Jenkins-kde-ci: plasma-workspace Plasma-5.7 stable-kf5-qt5 » Linux,gcc - Build # 49 - Still Failing!

2016-07-20 Thread no-reply

GENERAL INFO

BUILD FAILURE
Build URL: 
https://build.kde.org/job/plasma-workspace%20Plasma-5.7%20stable-kf5-qt5/PLATFORM=Linux,compiler=gcc/49/
Project: PLATFORM=Linux,compiler=gcc
Date of build: Wed, 20 Jul 2016 11:59:57 +
Build duration: 2 min 44 sec

CHANGE SET
Revision f7ef6ee87b8957bebc976b6fc9e0df279cea05f1 by Marco Martin: 
(don't try to load layout before kamd starts)
  change: edit shell/shellcorona.cpp
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Accepted] D2235: [platforms/x11] Properly reposition nested windows on resize events

2016-07-20 Thread bshah (Bhushan Shah)
bshah accepted this revision.
bshah added a reviewer: bshah.
This revision is now accepted and ready to land.

REPOSITORY
  rKWIN KWin

BRANCH
  platform-x11-properly-reposition

REVISION DETAIL
  https://phabricator.kde.org/D2235

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #plasma_on_wayland, #kwin, bshah
Cc: plasma-devel, kwin, hardening, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Updated] D2202: Support restarting the OpenGL compositor on Wayland

2016-07-20 Thread Martin Gräßlin
graesslin marked an inline comment as done.
graesslin added inline comments.

INLINE COMMENTS

> bshah wrote in scene_opengl_test.cpp:75-76
> ?

Removed the KWIN_COMPOSE=Q line.

REPOSITORY
  rKWIN KWin

REVISION DETAIL
  https://phabricator.kde.org/D2202

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #kwin, #plasma_on_wayland
Cc: bshah, plasma-devel, kwin, hardening, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Accepted] D2202: Support restarting the OpenGL compositor on Wayland

2016-07-20 Thread bshah (Bhushan Shah)
bshah accepted this revision.
bshah added a reviewer: bshah.
This revision is now accepted and ready to land.

REPOSITORY
  rKWIN KWin

REVISION DETAIL
  https://phabricator.kde.org/D2202

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #plasma_on_wayland, #kwin, bshah
Cc: bshah, plasma-devel, kwin, hardening, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Jenkins-kde-ci: plasma-workspace master kf5-qt5 » Linux,gcc - Build # 272 - Still Unstable!

2016-07-20 Thread no-reply

GENERAL INFO

BUILD UNSTABLE
Build URL: 
https://build.kde.org/job/plasma-workspace%20master%20kf5-qt5/PLATFORM=Linux,compiler=gcc/272/
Project: PLATFORM=Linux,compiler=gcc
Date of build: Wed, 20 Jul 2016 12:01:14 +
Build duration: 9 min 40 sec

CHANGE SET
Revision 168b987bde98712c8713b839d02c036b0b62d334 by Marco Martin: 
(don't try to load layout before kamd starts)
  change: edit shell/shellcorona.cpp


JUNIT RESULTS

Name: (root) Failed: 2 test(s), Passed: 8 test(s), Skipped: 0 test(s), Total: 
10 test(s)Failed: TestSuite.org.kde.plasma.analogclock-testFailed: 
TestSuite.org.kde.plasma.kickoff-test

COBERTURA RESULTS

Cobertura Coverage Report
  PACKAGES 11/11 (100%)FILES 50/67 (75%)CLASSES 50/67 (75%)LINE 1973/5345 
(37%)CONDITIONAL 1382/5474 (25%)

By packages
  
drkonqi.parser
FILES 6/10 (60%)CLASSES 6/10 (60%)LINE 303/423 (72%)CONDITIONAL 
478/616 (78%)
drkonqi.tests.backtraceparsertest
FILES 4/4 (100%)CLASSES 4/4 (100%)LINE 74/74 (100%)CONDITIONAL 
33/50 (66%)
kioslave.desktop
FILES 2/3 (67%)CLASSES 2/3 (67%)LINE 113/168 (67%)CONDITIONAL 
37/92 (40%)
kioslave.desktop.tests
FILES 1/1 (100%)CLASSES 1/1 (100%)LINE 66/66 (100%)CONDITIONAL 
26/50 (52%)
klipper
FILES 12/13 (92%)CLASSES 12/13 (92%)LINE 256/384 
(67%)CONDITIONAL 109/210 (52%)
klipper.autotests
FILES 4/4 (100%)CLASSES 4/4 (100%)LINE 630/693 (91%)CONDITIONAL 
377/820 (46%)
libtaskmanager
FILES 5/16 (31%)CLASSES 5/16 (31%)LINE 139/3070 (5%)CONDITIONAL 
88/3201 (3%)
libtaskmanager.autotests
FILES 2/2 (100%)CLASSES 2/2 (100%)LINE 150/150 
(100%)CONDITIONAL 85/170 (50%)
runners.bookmarks
FILES 8/8 (100%)CLASSES 8/8 (100%)LINE 89/159 (56%)CONDITIONAL 
34/96 (35%)
runners.bookmarks.browsers
FILES 4/4 (100%)CLASSES 4/4 (100%)LINE 88/93 (95%)CONDITIONAL 
84/107 (79%)
runners.bookmarks.tests
FILES 2/2 (100%)CLASSES 2/2 (100%)LINE 65/65 (100%)CONDITIONAL 
31/62 (50%)___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Closed] D2202: Support restarting the OpenGL compositor on Wayland

2016-07-20 Thread Martin Gräßlin
This revision was automatically updated to reflect the committed changes.
graesslin marked an inline comment as done.
Closed by commit rKWIN9d7ef58b2bd6: Support restarting the OpenGL compositor on 
Wayland (authored by graesslin).

CHANGED PRIOR TO COMMIT
  https://phabricator.kde.org/D2202?vs=5263&id=5354#toc

REPOSITORY
  rKWIN KWin

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D2202?vs=5263&id=5354

REVISION DETAIL
  https://phabricator.kde.org/D2202

AFFECTED FILES
  abstract_egl_backend.cpp
  abstract_egl_backend.h
  autotests/integration/CMakeLists.txt
  autotests/integration/scene_opengl_test.cpp
  composite.cpp
  platform.cpp
  platform.h
  plugins/platforms/drm/egl_gbm_backend.cpp
  plugins/platforms/hwcomposer/egl_hwcomposer_backend.cpp
  plugins/platforms/virtual/egl_gbm_backend.cpp
  plugins/platforms/wayland/egl_wayland_backend.cpp
  plugins/platforms/x11/common/eglonxbackend.cpp

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #plasma_on_wayland, #kwin, bshah
Cc: bshah, plasma-devel, kwin, hardening, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Closed] D2235: [platforms/x11] Properly reposition nested windows on resize events

2016-07-20 Thread Martin Gräßlin
This revision was automatically updated to reflect the committed changes.
Closed by commit rKWIN50645e8dbd49: [platforms/x11] Properly reposition nested 
windows on resize events (authored by graesslin).

REPOSITORY
  rKWIN KWin

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D2235?vs=5350&id=5356

REVISION DETAIL
  https://phabricator.kde.org/D2235

AFFECTED FILES
  plugins/platforms/x11/windowed/x11windowed_backend.cpp

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #plasma_on_wayland, #kwin, bshah
Cc: plasma-devel, kwin, hardening, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Closed] D2231: [plugins/qpa] Support SharingPlatformContext on the existing eglSurface and eglconfig

2016-07-20 Thread Martin Gräßlin
This revision was automatically updated to reflect the committed changes.
Closed by commit rKWIN44843f462f54: [plugins/qpa] Support 
SharingPlatformContext on the existing eglSurface and… (authored by graesslin).

REPOSITORY
  rKWIN KWin

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D2231?vs=5342&id=5355

REVISION DETAIL
  https://phabricator.kde.org/D2231

AFFECTED FILES
  abstract_egl_backend.h
  platform.cpp
  platform.h
  plugins/qpa/abstractplatformcontext.cpp
  plugins/qpa/abstractplatformcontext.h
  plugins/qpa/integration.cpp
  plugins/qpa/sharingplatformcontext.cpp
  plugins/qpa/sharingplatformcontext.h

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #plasma_on_wayland, #kwin, bshah
Cc: bshah, plasma-devel, kwin, hardening, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Powerdevil] [Bug 353032] Add ability to set screen brightness for non-laptop displays so I can adjust to the room's lighting

2016-07-20 Thread Martin Gräßlin via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=353032

Martin Gräßlin  changed:

   What|Removed |Added

Product|KScreen |Powerdevil
   Assignee|dvra...@kde.org |plasma-devel@kde.org
  Component|Plasma Applet   |general

--- Comment #1 from Martin Gräßlin  ---
Reassign to powerdevil which is responsible for screen brightness

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Commented On] D2212: Reduce Calendar size in Digital clock

2016-07-20 Thread mck182 (Martin Klapetek)
mck182 added a comment.


  In https://phabricator.kde.org/D2212#41055, @drosca wrote:
  
  > The calendar popup size is fine for me (with patched plasma-framework), 
what I *still* think is broken is the gridSize scaling - see 
https://git.reviewboard.kde.org/r/125773/
  >
  > You can also test it simply by switching font to DejaVu Sans.
  
  
  Olivier, have you tried David's suggestion^? Does it make any difference? I 
also think the patch mentioned above should be in.

REPOSITORY
  rPLASMAWORKSPACE Plasma Workspace

REVISION DETAIL
  https://phabricator.kde.org/D2212

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: ochurlaud, #plasma:_design, #plasma, davidedmundson
Cc: mart, broulik, drosca, andreaska, mck182, plasma-devel, jensreuterberg, 
abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Commented On] D2212: Reduce Calendar size in Digital clock

2016-07-20 Thread ochurlaud (Olivier Churlaud)
ochurlaud added a comment.


  In https://phabricator.kde.org/D2212#41483, @mck182 wrote:
  
  > In https://phabricator.kde.org/D2212#41055, @drosca wrote:
  >
  > > The calendar popup size is fine for me (with patched plasma-framework), 
what I *still* think is broken is the gridSize scaling - see 
https://git.reviewboard.kde.org/r/125773/
  > >
  > > You can also test it simply by switching font to DejaVu Sans.
  >
  >
  > Olivier, have you tried David's suggestion^? Does it make any difference? I 
also think the patch mentioned above should be in.
  
  
  Changing the font to DejaVuSans only changes the time font, but not the 
calendar one.
  
  I'll try his patch.

REPOSITORY
  rPLASMAWORKSPACE Plasma Workspace

REVISION DETAIL
  https://phabricator.kde.org/D2212

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: ochurlaud, #plasma:_design, #plasma, davidedmundson
Cc: mart, broulik, drosca, andreaska, mck182, plasma-devel, jensreuterberg, 
abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Commented On] D2212: Reduce Calendar size in Digital clock

2016-07-20 Thread Sebastian Kügler
sebas added a comment.


  -1, the calendar is only going to look more cramped like this.
  
  Whitespace is useful and part of the visual language, don't just remove it.
  
  Also, the size of the calendar is oriented with the size of the systray 
popup, this change will make it inconsistent, and making the systray popup 
smaller is not an option since it's already pretty densely populated (e.g. 
networkmanager, bluetooth don't looked especially spacious).

REPOSITORY
  rPLASMAWORKSPACE Plasma Workspace

REVISION DETAIL
  https://phabricator.kde.org/D2212

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: ochurlaud, #plasma:_design, #plasma, davidedmundson
Cc: sebas, mart, broulik, drosca, andreaska, mck182, plasma-devel, 
jensreuterberg, abetts
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Commented On] D2212: Reduce Calendar size in Digital clock

2016-07-20 Thread Sebastian Kügler
sebas added a comment.


  Well, it depends on font size plus whitespace.
  
  All the screens I've used are fine, btw, but for smaller screens, it may look 
a bit larger.
  
  Once it carries events, it will make better use of that space, anyway.

REPOSITORY
  rPLASMAWORKSPACE Plasma Workspace

REVISION DETAIL
  https://phabricator.kde.org/D2212

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: ochurlaud, #plasma:_design, #plasma, davidedmundson
Cc: sebas, mart, broulik, drosca, andreaska, mck182, plasma-devel, 
jensreuterberg, abetts
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Commented On] D2212: Reduce Calendar size in Digital clock

2016-07-20 Thread Sebastian Kügler
sebas added a comment.


  @drosca Which patch are you using?

REPOSITORY
  rPLASMAWORKSPACE Plasma Workspace

REVISION DETAIL
  https://phabricator.kde.org/D2212

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: ochurlaud, #plasma:_design, #plasma, davidedmundson
Cc: sebas, mart, broulik, drosca, andreaska, mck182, plasma-devel, 
jensreuterberg, abetts
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Commented On] D2212: Reduce Calendar size in Digital clock

2016-07-20 Thread drosca (David Rosca)
drosca added a comment.


  https://git.reviewboard.kde.org/r/125773/

REPOSITORY
  rPLASMAWORKSPACE Plasma Workspace

REVISION DETAIL
  https://phabricator.kde.org/D2212

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: ochurlaud, #plasma:_design, #plasma, davidedmundson
Cc: sebas, mart, broulik, drosca, andreaska, mck182, plasma-devel, 
jensreuterberg, abetts
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Commented On] D2212: Reduce Calendar size in Digital clock

2016-07-20 Thread colomar (Thomas Pfeiffer)
colomar added a comment.


  In https://phabricator.kde.org/D2212#41489, @drosca wrote:
  
  > > But it takes more than half of my screen !!!
  >
  > Yes, because gridUnit sizing is broken. Here is how it looks on my system 
with patched plasma-framework:
  >  F189452: PDCLXFY.png 
  
  
  This size looks fine.

REPOSITORY
  rPLASMAWORKSPACE Plasma Workspace

REVISION DETAIL
  https://phabricator.kde.org/D2212

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: ochurlaud, #plasma:_design, #plasma, davidedmundson
Cc: colomar, sebas, mart, broulik, drosca, andreaska, mck182, plasma-devel, 
jensreuterberg, abetts
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Commented On] D2212: Reduce Calendar size in Digital clock

2016-07-20 Thread ochurlaud (Olivier Churlaud)
ochurlaud added a comment.


  @sebas: just for info, is here my panel config:
  
  [PlasmaViews][Panel 97][Horizontal1366]
  length=1164
  thickness=24
  
  the thickness is very small, and changing the font *does not* change the font 
in the calendar.

REPOSITORY
  rPLASMAWORKSPACE Plasma Workspace

REVISION DETAIL
  https://phabricator.kde.org/D2212

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: ochurlaud, #plasma:_design, #plasma, davidedmundson
Cc: colomar, sebas, mart, broulik, drosca, andreaska, mck182, plasma-devel, 
jensreuterberg, abetts
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Commented On] D2212: Reduce Calendar size in Digital clock

2016-07-20 Thread ochurlaud (Olivier Churlaud)
ochurlaud added a comment.


  In https://phabricator.kde.org/D2212#41485, @sebas wrote:
  
  > -1, the calendar is only going to look more cramped like this.
  >
  > Whitespace is useful and part of the visual language, don't just remove it.
  >
  > Also, the size of the calendar is oriented with the size of the systray 
popup, this change will make it inconsistent, and making the systray popup 
smaller is not an option since it's already pretty densely populated (e.g. 
networkmanager, bluetooth don't looked especially spacious).
  
  
  But it takes more than half of my screen !!! I tend to think it should follow 
the size of the panel, but this is more work

REPOSITORY
  rPLASMAWORKSPACE Plasma Workspace

REVISION DETAIL
  https://phabricator.kde.org/D2212

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: ochurlaud, #plasma:_design, #plasma, davidedmundson
Cc: sebas, mart, broulik, drosca, andreaska, mck182, plasma-devel, 
jensreuterberg, abetts
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Commented On] D2212: Reduce Calendar size in Digital clock

2016-07-20 Thread Sebastian Kügler
sebas added a comment.


  @ochurlaud You're sure? The QGuiApplication::font() is the base for all 
sizing. Did you change the font, or the font size? (It could be that the fonts 
you've tried have similar metrics.)

REPOSITORY
  rPLASMAWORKSPACE Plasma Workspace

REVISION DETAIL
  https://phabricator.kde.org/D2212

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: ochurlaud, #plasma:_design, #plasma, davidedmundson
Cc: colomar, sebas, mart, broulik, drosca, andreaska, mck182, plasma-devel, 
jensreuterberg, abetts
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Accepted] D2185: Handle restart of Compositor Scene correctly for Wayland client

2016-07-20 Thread Sebastian Kügler
sebas accepted this revision.
sebas added a reviewer: sebas.
sebas added inline comments.
This revision is now accepted and ready to land.

INLINE COMMENTS

> scene_qpainter_test.cpp:214
> +
> +// now lets try to reinitialize the compositing scene
> +auto oldScene = KWin::Compositor::self()->scene();

let's

REPOSITORY
  rKWIN KWin

BRANCH
  restart-scene-dont-crash

REVISION DETAIL
  https://phabricator.kde.org/D2185

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #kwin, #plasma_on_wayland, sebas
Cc: sebas, plasma-devel, kwin, hardening, jensreuterberg, abetts
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Commented On] D2212: Reduce Calendar size in Digital clock

2016-07-20 Thread ochurlaud (Olivier Churlaud)
ochurlaud added a comment.


  So just to show exactly my issue:
  F189465: comments.png 
  
  Other applets are very fine! but look at the font size difference between the 
clock and the different parts of the calendar.
  
  I think on big screens it's good but not for people with 14'' screens...  
1366x768...

REPOSITORY
  rPLASMAWORKSPACE Plasma Workspace

REVISION DETAIL
  https://phabricator.kde.org/D2212

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: ochurlaud, #plasma:_design, #plasma, davidedmundson
Cc: colomar, sebas, mart, broulik, drosca, andreaska, mck182, plasma-devel, 
jensreuterberg, abetts
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Commented On] D2164: Allow struts on panels between screen edges if WM is KWin

2016-07-20 Thread Sebastian Kügler
sebas added a comment.


  If @luebking is otherwise fine with it, why not merge it?

REPOSITORY
  rPLASMAWORKSPACE Plasma Workspace

REVISION DETAIL
  https://phabricator.kde.org/D2164

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #plasma
Cc: sebas, mart, luebking, plasma-devel, jensreuterberg, abetts
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Commented On] D2212: Reduce Calendar size in Digital clock

2016-07-20 Thread drosca (David Rosca)
drosca added a comment.


  > But it takes more than half of my screen !!!
  
  Yes, because gridUnit sizing is broken. Here is how it looks on my system 
with patched plasma-framework:
  F189452: PDCLXFY.png 

REPOSITORY
  rPLASMAWORKSPACE Plasma Workspace

REVISION DETAIL
  https://phabricator.kde.org/D2212

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: ochurlaud, #plasma:_design, #plasma, davidedmundson
Cc: sebas, mart, broulik, drosca, andreaska, mck182, plasma-devel, 
jensreuterberg, abetts
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Abandoned] D2212: Reduce Calendar size in Digital clock

2016-07-20 Thread ochurlaud (Olivier Churlaud)
ochurlaud abandoned this revision.
ochurlaud added a comment.


  Screen too small, and would be a fix only for a niche type of users

REPOSITORY
  rPLASMAWORKSPACE Plasma Workspace

REVISION DETAIL
  https://phabricator.kde.org/D2212

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: ochurlaud, #plasma:_design, #plasma, davidedmundson
Cc: colomar, sebas, mart, broulik, drosca, andreaska, mck182, plasma-devel, 
jensreuterberg, abetts
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Closed] D2156: improve output identification

2016-07-20 Thread Sebastian Kügler
This revision was automatically updated to reflect the committed changes.
Closed by commit rKSCREEN1bd8dc46e4cd: improve output identification (authored 
by sebas).

REPOSITORY
  rKSCREEN KScreen

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D2156?vs=5300&id=5361

REVISION DETAIL
  https://phabricator.kde.org/D2156

AFFECTED FILES
  kded/serializer.cpp

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: sebas, #plasma, davidedmundson
Cc: davidedmundson, graesslin, lbeltrame, plasma-devel, jensreuterberg, abetts, 
sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Requested Changes To] D1989: Introduce QQuickItem to nest kwin_wayland

2016-07-20 Thread Martin Gräßlin
graesslin requested changes to this revision.
graesslin added inline comments.
This revision now requires changes to proceed.

INLINE COMMENTS

> kwinqml.cpp:63
> +[this] (ShellSurfaceInterface *shellSurface) {
> +qDebug() << "Shell surface created";
> +m_surface = shellSurface->surface();

don't use qDebug, please use categorized logging.

> kwinqml.cpp:68
> +qDebug() << "Damage event recieved";
> +update();
> +}

ideally you don't need to repaint everything, but could just update the actual 
changed areas (carried in the damaged signal)

> kwinqml.cpp:106
> +{
> +if(!m_surface) {
> +return node;

please watch coding style

> kwinqml.cpp:112
> +n = new QSGSimpleTextureNode();
> +QSGTexture *texture = 
> window()->createTextureFromImage(m_surface->buffer()->data());
> +n->setTexture(texture);

you cannot just assume that there's a buffer attached to the surface. Please 
perform a nullptr check

REPOSITORY
  rKWIN KWin

REVISION DETAIL
  https://phabricator.kde.org/D1989

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: bdhruve, bshah, graesslin, #plasma_on_wayland
Cc: bshah, graesslin, plasma-devel, kwin, hardening, jensreuterberg, abetts, 
sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Jenkins-kde-ci: plasma-workspace master kf5-qt5 » Linux,gcc - Build # 273 - Failure!

2016-07-20 Thread no-reply

GENERAL INFO

BUILD FAILURE
Build URL: 
https://build.kde.org/job/plasma-workspace%20master%20kf5-qt5/PLATFORM=Linux,compiler=gcc/273/
Project: PLATFORM=Linux,compiler=gcc
Date of build: Wed, 20 Jul 2016 15:04:01 +
Build duration: 1 min 25 sec

CHANGE SET
Revision 9e0b065f7105c736afc0a0c2c0fe009316c0c561 by jkt: (Fix huge icons with 
vertical panel)
  change: edit applets/systemtray/package/contents/ui/main.qml
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Commented On] D2218: New logic for screen numbers in plasmashell

2016-07-20 Thread davidedmundson (David Edmundson)
davidedmundson added a comment.


  When adding a new design can you describe the design in words. i.e what roles 
a class has
  It'd make things a lot easier.
  
  ScreenPool: 
  It seems to have two jobs:
  
  - you've got the converting screen "names" to IDs.
  - "Tracking" DesktopViews
  
  Why do we have m_idsForConnector and m_idsForDesktopView
  
  m_idsForDesktopView  is bound to be the same as 
  m_idsForConnector(view->screenToFollow()->name())   right?
  
  at which point we can kill the second one, and that simplifies a lot of the 
code and avoid something that can go out of sync.
  
  Panels are now a bit of a mix:
  
  In createWaitingPanels we base the panel screen based on where the 
DesktopView is
  in primaryChanged - we don't and use screens API directly (BUG: and setting 
screenToFollow)
  in removeView we're using the View as the indicator of what screen is which.
  screenForContainment is also going via View.
  
  Is it meant to be going via a View or not?
  
  Personally I think it's a bit weird as we can generate the index directly 
from the screen, but whatever it should be it should be consistent
  
  bugs:
  I think you also have a potential crash if you switch primary on a panel and 
then disconnect the first screen
  
  This code will have a bug if you drag a panelview to another screen - then 
resize the first screen.
  Same for if you have a panel on a primary screen then switch primary then 
alter the screen.
  
  You have a crash if:
  
  - you have previously inserted a containment on screen A
  - you reboot with screen B, C
  - number of screens ==2, firstAvailableIndex=1
  - the first containment will restore
  - the second one will be a new containment  with an ID of 3
  - createContainment checks number of ScreensAvailable and will return a null 
pointer.

REPOSITORY
  rPLASMAWORKSPACE Plasma Workspace

REVISION DETAIL
  https://phabricator.kde.org/D2218

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: mart, #plasma
Cc: davidedmundson, rwooninck, graesslin, plasma-devel, jensreuterberg, abetts, 
sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Jenkins-kde-ci: plasma-desktop Plasma-5.7 stable-kf5-qt5 » Linux,gcc - Build # 34 - Still Failing!

2016-07-20 Thread no-reply

GENERAL INFO

BUILD FAILURE
Build URL: 
https://build.kde.org/job/plasma-desktop%20Plasma-5.7%20stable-kf5-qt5/PLATFORM=Linux,compiler=gcc/34/
Project: PLATFORM=Linux,compiler=gcc
Date of build: Wed, 20 Jul 2016 16:53:52 +
Build duration: 1 min 21 sec

CHANGE SET
Revision 6d3527cbe5f1c26d4eff61d0d959c70943ca296e by hein: (Fix inverted logic.)
  change: edit applets/taskmanager/package/contents/ui/main.qml
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Jenkins-kde-ci: plasma-desktop master kf5-qt5 » Linux,gcc - Build # 203 - Failure!

2016-07-20 Thread no-reply

GENERAL INFO

BUILD FAILURE
Build URL: 
https://build.kde.org/job/plasma-desktop%20master%20kf5-qt5/PLATFORM=Linux,compiler=gcc/203/
Project: PLATFORM=Linux,compiler=gcc
Date of build: Wed, 20 Jul 2016 16:55:02 +
Build duration: 1 min 21 sec

CHANGE SET
Revision b9b11c8affc20528aa9a1e1b877fbbd941fedeea by scripty: (SVN_SILENT made 
messages (.desktop file) - always resolve ours)
  change: edit applets/icontasks/metadata.desktop
  change: edit applets/taskmanager/package/metadata.desktop
  change: edit applets/pager/package/metadata.desktop
Revision 420b5595733101c63c7c7566319ed28de7415ab9 by Jonathan Riddell: (Update 
version number for 5.7.2 GIT_SILENT)
  change: edit CMakeLists.txt
Revision 578fffd64d379fc59da3b7e6ffd9117285c28ae5 by scripty: (SVN_SILENT made 
messages (.desktop file) - always resolve ours)
  change: edit knetattach/org.kde.knetattach.desktop
Revision 6d3527cbe5f1c26d4eff61d0d959c70943ca296e by hein: (Fix inverted logic.)
  change: edit applets/taskmanager/package/contents/ui/main.qml
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Is it possible for a plasmoid to overlap the panel?

2016-07-20 Thread Michail Vοurlakos
Hello,

I am trying to implement a plasmoid task manager that behaves
like the Mac or the Plank one..
the code can be found here: https://github.com/psifidotos/plasmaqmldock[1] 
it is in a very early stage but the animation is there and showing
and hiding windows also...

Adding the plasmoid to desktop it looks ok but when I add it in a panel,
the panel hides the plasmoids contents that are above its boundaries...
Is there a way to change that behavior?

Regards,
michail


[1] https://github.com/psifidotos/plasmaqmldock
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Is it possible for a plasmoid to overlap the panel?

2016-07-20 Thread David Edmundson
No, that'd be trying to draw outside the window/openGL viewport, there's no
way that can happen. Sorry.

The only possible solution is changing the panel to only draw half the
height of the view, but that's opening a whole mess that you probably don't
want to get into.

David
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Is it possible for a plasmoid to overlap the panel?

2016-07-20 Thread Michail Vοurlakos
Στις Τετάρτη, 20 Ιουλίου 2016 3:22:27 Μ.Μ. EEST David Edmundson έγραψε:
> No, that'd be trying to draw outside the window/openGL viewport, there's no
> way that can happen. Sorry.
> 
> The only possible solution is changing the panel to only draw half the
> height of the view, but that's opening a whole mess that you probably don't
> want to get into.
> 
> David

I see...

In that case, can I ask your opinion about how would you design such a case
of a mac-style dock?

some ideas..

- could I create first a new panel? (to be almost full transparent in contrast 
with all the other panels I use ? )
- a kwin script ? (implement all the standard panel functionality from start 
in that case?)

- should it be something outside plasma architecture? 

michail
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Is it possible for a plasmoid to overlap the panel?

2016-07-20 Thread Marco Martin
On Wednesday 20 July 2016 21:15:33 Michail Vοurlakos wrote:
> Hello,
> 
> I am trying to implement a plasmoid task manager that behaves
> like the Mac or the Plank one..
> the code can be found here: https://github.com/psifidotos/plasmaqmldock[1]
> it is in a very early stage but the animation is there and showing
> and hiding windows also...

I tought about an use case like that in the past...

you would need to have a very big panel, mostly completely transparent (so it 
means you couldn't use always visible mode, and you depend from having 
composite)
but for 3rd party things may be ok-ish.

what the panel on our side would need to do, is not to draw its background in 
that case, basically just respect the background hints, just like applets do.
I am thinking to add that never the less in 5.8, wouldn't change for the 
default one, but could be a little fun quirky possibility for kdelook stuff

-- 
Marco Martin
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Is it possible for a plasmoid to overlap the panel?

2016-07-20 Thread Michail Vοurlakos
Στις Τετάρτη, 20 Ιουλίου 2016 8:53:03 Μ.Μ. EEST Marco Martin έγραψε:
> On Wednesday 20 July 2016 21:15:33 Michail Vοurlakos wrote:
> > Hello,
> > 
> > I am trying to implement a plasmoid task manager that behaves
> > like the Mac or the Plank one..
> > the code can be found here: https://github.com/psifidotos/plasmaqmldock[1]
> > it is in a very early stage but the animation is there and showing
> > and hiding windows also...
> 
> I tought about an use case like that in the past...
> 
> you would need to have a very big panel,  mostly completely transparent (so
- a very big panel in order for the height to make the animation right?

> it means you couldn't use always visible mode, and you depend from having
> composite)
- "Always visible" in that case I dont think is a necessity... But playing 
around with these 
docks, an option for panel to be just "Below Active" do you think that it would 
be very 
difficult to add in Plasma?

> but for 3rd party things may be ok-ish.
> 
By using the Glassified theme I took the following screenshot...
http://imgur.com/a/ncaRl[1] 


> what the panel on our side would need to do, is not to draw its background
> in that case, basically just respect the background hints, just like
> applets do.
You dont mean for all the panels right? Just the one that needs that specific 
case? That 
would be perfect, actually...

> I am thinking to add that never the less in 5.8, wouldn't
> change for the default one, but could be a little fun quirky possibility
> for kdelook stuff
I agree... More like an option to show things
In qml this dock behaviour is so small in code that is a little bit shoking...

thanks a lot for the interest!!!

michail




[1] http://imgur.com/a/ncaRl
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Is it possible for a plasmoid to overlap the panel?

2016-07-20 Thread Ken Vermette
One thing that I (kind of) pitched during a sprint, I'll mention it here
for discussion;

What if we created a new class of widget called a "dock widget".
Behaviourally, these widgets would be clamped to a screen edge, owning that
edge in the same ways as a panel. Dock widgets could anchor and place items
to that edge in a fairly free-form manner. They would define an arbitrary
"size" (denoting width for vertically clamped widgets, height for
horizontal) for the reserved screen space, which they could draw outside of.

The main use-case of dock widgets is allowing functional and aesthetic
designs which are impractical with panels as we have now. Dock widgets
could use scale, flyouts, animations, and transformations which modular
panels cannot perform, as our panels require specific sizing information
from contained widgets.

I'll note that "dock widgets" wouldn't be beholden to simply emulating
Gnome-like or MacOS-style docks. Maynard has showcased a very unique dock
which heavily uses flyouts and "peeking". In some ways, Yakkuke and KRunner
are in similar positions; widget-like, clamped to an edge. There are
creative possibilities here.

The downside of these "dock widgets" are that they would be as configurable
as any individual widget - lacking the modularity of panels. But for users
who prefer "real" docks and dock-like widgets with a higher degree of
polish which work "as is", this would be the way to do it. I'd be
interested in the creative possibilities of Plasma offering several unique
"dock widgets" users could choose from. I think our current approach to
making "docks" is kludgy and overcomplicated, and trying to let users
emulate docks via panels has lead to panels being a bit more complex than
necessary. If we simply allowed "dock widgets" to take over these more
dynamic layouts, we could probably streamline panel customisation a bit if
we treat them as being more "static" in size, too.



On Wed, Jul 20, 2016 at 2:53 PM, Marco Martin  wrote:

> On Wednesday 20 July 2016 21:15:33 Michail Vοurlakos wrote:
> > Hello,
> >
> > I am trying to implement a plasmoid task manager that behaves
> > like the Mac or the Plank one..
> > the code can be found here:
> https://github.com/psifidotos/plasmaqmldock[1]
> > it is in a very early stage but the animation is there and showing
> > and hiding windows also...
>
> I tought about an use case like that in the past...
>
> you would need to have a very big panel, mostly completely transparent (so
> it
> means you couldn't use always visible mode, and you depend from having
> composite)
> but for 3rd party things may be ok-ish.
>
> what the panel on our side would need to do, is not to draw its background
> in
> that case, basically just respect the background hints, just like applets
> do.
> I am thinking to add that never the less in 5.8, wouldn't change for the
> default one, but could be a little fun quirky possibility for kdelook stuff
>
> --
> Marco Martin
> ___
> Plasma-devel mailing list
> Plasma-devel@kde.org
> https://mail.kde.org/mailman/listinfo/plasma-devel
>
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Jenkins-kde-ci: plasma-tests master kf5-qt5 » Linux,gcc - Build # 1 - Failure!

2016-07-20 Thread no-reply

GENERAL INFO

BUILD FAILURE
Build URL: 
https://build.kde.org/job/plasma-tests%20master%20kf5-qt5/PLATFORM=Linux,compiler=gcc/1/
Project: PLATFORM=Linux,compiler=gcc
Date of build: Wed, 20 Jul 2016 20:20:28 +
Build duration: 1 min 4 sec

CHANGE SET
No changes
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Is it possible for a plasmoid to overlap the panel?

2016-07-20 Thread Marco Martin
On Wednesday 20 July 2016 15:39:36 Ken Vermette wrote:
> One thing that I (kind of) pitched during a sprint, I'll mention it here
> for discussion;
> 
> What if we created a new class of widget called a "dock widget".

yes we have them... they are called "panels", really :p

you can write a widget that is completely standalone and is loaded as a panel 
(not *in* a panel, *as* a panel), which doesn't have to worry about having a 
layout of widgets or anything.
just, nobody bothered to do it

> Behaviourally, these widgets would be clamped to a screen edge, owning that
> edge in the same ways as a panel. Dock widgets could anchor and place items
> to that edge in a fairly free-form manner. They would define an arbitrary
> "size" (denoting width for vertically clamped widgets, height for
> horizontal) for the reserved screen space, which they could draw outside of.

we can't draw outside windows, it's not a plasma limitation, it's how things 
works (and oddly in this case no, wayland won't fix that)

> 
> The main use-case of dock widgets is allowing functional and aesthetic
> designs which are impractical with panels as we have now. Dock widgets
> could use scale, flyouts, animations, and transformations which modular
> panels cannot perform, as our panels require specific sizing information
> from contained widgets.

we can perform anything.. as long as it draws into its limits :p
again, it looks like a panel that is its own widget instead of being a layout 
for other ones

-- 
Marco Martin
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Is it possible for a plasmoid to overlap the panel?

2016-07-20 Thread Marco Martin
On Wednesday 20 July 2016 22:20:10 Michail Vοurlakos wrote:
> > you would need to have a very big panel,  mostly completely transparent
> > (so
> 
> - a very big panel in order for the height to make the animation right?

yes

> > it means you couldn't use always visible mode, and you depend from having
> > composite)
> 
> - "Always visible" in that case I dont think is a necessity... But playing
> around with these docks, an option for panel to be just "Below Active" do
> you think that it would be very difficult to add in Plasma?

what is "beyond active"?

> > what the panel on our side would need to do, is not to draw its background
> > in that case, basically just respect the background hints, just like
> > applets do.
> 
> You dont mean for all the panels right? Just the one that needs that
> specific case? That would be perfect, actually...

what would happen is that just like plasmoids, the panel would export that it 
doesn't want a standard background, the panel view then would disable 
background, shadow and blur behind (limitation would be that you couldn't have 
a blur behind with another shape/size, you would have to just disable it)

-- 
Marco Martin
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Is it possible for a plasmoid to overlap the panel?

2016-07-20 Thread Michail Vοurlakos
> 
> > > it means you couldn't use always visible mode, and you depend from
> > > having
> > > composite)
> > 
> > - "Always visible" in that case I dont think is a necessity... But playing
> > around with these docks, an option for panel to be just "Below Active" do
> > you think that it would be very difficult to add in Plasma?
> 
> what is "beyond active"?
> 

"Beyond Active" - The panel is hidden only when overlaps with the active 
window
e.g. if you have an inactive window that does overlap with the panel, the 
panel is shown, but if that window becomes active then the panel is hidden
behind it

> > > what the panel on our side would need to do, is not to draw its
> > > background
> > > in that case, basically just respect the background hints, just like
> > > applets do.
> > 
> > You dont mean for all the panels right? Just the one that needs that
> > specific case? That would be perfect, actually...
> 
> what would happen is that just like plasmoids, the panel would export that
> it doesn't want a standard background, the panel view then would disable
> background, shadow and blur behind 

No problem at all...
in order to add plasmoids in this panel when we are in unlocked state, would 
its (settings buttons, etc. ) be shown correctly?

michail


___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Is it possible for a plasmoid to overlap the panel?

2016-07-20 Thread Michail Vοurlakos
Στις Τετάρτη, 20 Ιουλίου 2016 10:34:01 Μ.Μ. EEST Marco Martin έγραψε:
> On Wednesday 20 July 2016 15:39:36 Ken Vermette wrote:
> > One thing that I (kind of) pitched during a sprint, I'll mention it here
> > for discussion;
> > 
> > What if we created a new class of widget called a "dock widget".
> 
> yes we have them... they are called "panels", really :p
> 
> you can write a widget that is completely standalone and is loaded as a
> panel (not *in* a panel, *as* a panel), which doesn't have to worry about
> having a layout of widgets or anything.
> just, nobody bothered to do it

Could you please give me a hint is this please?
Would this need Qt - C++ way of implementing, not just QML?
(not an issue in this case but I would like to see some code)

You are describing actually a panel of one plasmoid right?
What would be the benefits, instead of just adding a classic panel with
one plasmoid in it?


michail

___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Jenkins-kde-ci: plasma-workspace Plasma-5.7 stable-kf5-qt5 » Linux,gcc - Build # 50 - Still Failing!

2016-07-20 Thread no-reply

GENERAL INFO

BUILD FAILURE
Build URL: 
https://build.kde.org/job/plasma-workspace%20Plasma-5.7%20stable-kf5-qt5/PLATFORM=Linux,compiler=gcc/50/
Project: PLATFORM=Linux,compiler=gcc
Date of build: Wed, 20 Jul 2016 23:16:57 +
Build duration: 5 min 7 sec

CHANGE SET
No changes
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Request, 2 lines] D2239: Workaround searching lockup

2016-07-20 Thread davidedmundson (David Edmundson)
davidedmundson created this revision.
davidedmundson added a reviewer: Plasma.
Restricted Application added a project: Plasma.
Restricted Application added a subscriber: plasma-devel.

REVISION SUMMARY
  QQC::ScrollView has an annoying bug where you can get it in a situation
  where if you have exactly if delegates are based on the viewport width you 
  can get in a loop where you need the scrollbar, that shrinks the view so it
  resizes the delegates at which point you don't need the scrollbar, so it 
resizes the
  delegates so and so on.
  
  Keeping scrollbars always on is a good workaround.
  If anything it's nice to not have things jumping around slightly when 
searching
  
  BUG: 365868

TEST PLAN
  Plasma explorer still works.
  Approach works as I've used it in the wallpaper selection dialog
  for exactly the same reason.

REPOSITORY
  rPLASMADESKTOP Plasma Desktop

BRANCH
  master

REVISION DETAIL
  https://phabricator.kde.org/D2239

AFFECTED FILES
  desktoppackage/contents/explorer/WidgetExplorer.qml

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: davidedmundson, #plasma
Cc: plasma-devel, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Review Request 128491: Give more useful names to the acpi thermal zones and cooling devices

2016-07-20 Thread Martin Tobias Holmedahl Sandsmark

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/128491/
---

Review request for Plasma and John Tapsell.


Repository: ksysguard


Description
---

Also fix the fact that cooling devices have a percentage of activity, they're 
not boolean on or off.


Diffs
-

  ksysguardd/Linux/acpi.h e50b281 
  ksysguardd/Linux/acpi.c acf54e1 

Diff: https://git.reviewboard.kde.org/r/128491/diff/


Testing
---

It works very well.


Thanks,

Martin Tobias Holmedahl Sandsmark

___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Review Request 128491: Give more useful names to the acpi thermal zones and cooling devices

2016-07-20 Thread Martin Tobias Holmedahl Sandsmark

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/128491/
---

(Updated July 21, 2016, 12:13 a.m.)


Review request for Plasma and John Tapsell.


Repository: ksysguard


Description (updated)
---

Also fix the fact that cooling devices have a percentage of activity, they're 
not boolean on or off.

I'll reverse the tabs->spaces later, if needed.


Diffs
-

  ksysguardd/Linux/acpi.h e50b281 
  ksysguardd/Linux/acpi.c acf54e1 

Diff: https://git.reviewboard.kde.org/r/128491/diff/


Testing
---

It works very well.


Thanks,

Martin Tobias Holmedahl Sandsmark

___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Updated] D2239: Workaround searching lockup

2016-07-20 Thread davidedmundson (David Edmundson)
davidedmundson updated the summary for this revision.

REPOSITORY
  rPLASMADESKTOP Plasma Desktop

REVISION DETAIL
  https://phabricator.kde.org/D2239

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: davidedmundson, #plasma
Cc: plasma-devel, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Request, 2 lines] D2241: Remove dead code

2016-07-20 Thread davidedmundson (David Edmundson)
davidedmundson created this revision.
davidedmundson added a reviewer: Plasma.
Restricted Application added a project: Plasma.
Restricted Application added a subscriber: plasma-devel.

REVISION SUMMARY
  Setting the layout height to be the height of one of the layout items is
  both pointless, it will be calculated from all child items
  implicitHeight anyway, and wrong as the heading/textField could be
  bigger.
  
  CCBUG: 365295

TEST PLAN
  Opened it, looked the same

REPOSITORY
  rPLASMADESKTOP Plasma Desktop

BRANCH
  master

REVISION DETAIL
  https://phabricator.kde.org/D2241

AFFECTED FILES
  desktoppackage/contents/activitymanager/Heading.qml

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: davidedmundson, #plasma
Cc: plasma-devel, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Request, 4 lines] D2240: Anchors in a layout item is always wrong

2016-07-20 Thread davidedmundson (David Edmundson)
davidedmundson created this revision.
davidedmundson added a reviewer: Plasma.
Restricted Application added a project: Plasma.
Restricted Application added a subscriber: plasma-devel.

TEST PLAN
  Opened it, looks the same

REPOSITORY
  rPLASMADESKTOP Plasma Desktop

REVISION DETAIL
  https://phabricator.kde.org/D2240

AFFECTED FILES
  desktoppackage/contents/explorer/WidgetExplorer.qml

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: davidedmundson, #plasma
Cc: plasma-devel, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Review Request 128491: Give more useful names to the acpi thermal zones and cooling devices

2016-07-20 Thread Martin Tobias Holmedahl Sandsmark

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/128491/
---

(Updated July 21, 2016, 1:13 a.m.)


Review request for Plasma and John Tapsell.


Changes
---

Fixed the naming, unbroke the old /proc/acpi stuff.


Repository: ksysguard


Description
---

Also fix the fact that cooling devices have a percentage of activity, they're 
not boolean on or off.

I'll reverse the tabs->spaces later, if needed.


Diffs (updated)
-

  ksysguardd/Linux/acpi.h e50b281 
  ksysguardd/Linux/acpi.c acf54e1 

Diff: https://git.reviewboard.kde.org/r/128491/diff/


Testing
---

It works very well.


Thanks,

Martin Tobias Holmedahl Sandsmark

___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Jenkins-kde-ci: plasma-workspace Plasma-5.7 stable-kf5-qt5 » Linux,gcc - Build # 51 - Still Failing!

2016-07-20 Thread no-reply

GENERAL INFO

BUILD FAILURE
Build URL: 
https://build.kde.org/job/plasma-workspace%20Plasma-5.7%20stable-kf5-qt5/PLATFORM=Linux,compiler=gcc/51/
Project: PLATFORM=Linux,compiler=gcc
Date of build: Thu, 21 Jul 2016 01:09:04 +
Build duration: 4 min 49 sec

CHANGE SET
No changes
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Jenkins-kde-ci: plasma-tests master kf5-qt5 » Linux,gcc - Build # 2 - Still Failing!

2016-07-20 Thread no-reply

GENERAL INFO

BUILD FAILURE
Build URL: 
https://build.kde.org/job/plasma-tests%20master%20kf5-qt5/PLATFORM=Linux,compiler=gcc/2/
Project: PLATFORM=Linux,compiler=gcc
Date of build: Thu, 21 Jul 2016 01:34:33 +
Build duration: 1 min 43 sec

CHANGE SET
No changes
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Jenkins-kde-ci: plasma-desktop master kf5-qt5 » Linux,gcc - Build # 204 - Still Failing!

2016-07-20 Thread no-reply

GENERAL INFO

BUILD FAILURE
Build URL: 
https://build.kde.org/job/plasma-desktop%20master%20kf5-qt5/PLATFORM=Linux,compiler=gcc/204/
Project: PLATFORM=Linux,compiler=gcc
Date of build: Thu, 21 Jul 2016 01:35:45 +
Build duration: 4 min 18 sec

CHANGE SET
No changes
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Jenkins-kde-ci: plasma-workspace master kf5-qt5 » Linux,gcc - Build # 274 - Still unstable!

2016-07-20 Thread no-reply

GENERAL INFO

BUILD UNSTABLE
Build URL: 
https://build.kde.org/job/plasma-workspace%20master%20kf5-qt5/PLATFORM=Linux,compiler=gcc/274/
Project: PLATFORM=Linux,compiler=gcc
Date of build: Thu, 21 Jul 2016 01:35:56 +
Build duration: 10 min

CHANGE SET
No changes


JUNIT RESULTS

Name: (root) Failed: 2 test(s), Passed: 8 test(s), Skipped: 0 test(s), Total: 
10 test(s)Failed: TestSuite.org.kde.plasma.analogclock-testFailed: 
TestSuite.org.kde.plasma.kickoff-test

COBERTURA RESULTS

Cobertura Coverage Report
  PACKAGES 11/11 (100%)FILES 50/67 (75%)CLASSES 50/67 (75%)LINE 1973/5345 
(37%)CONDITIONAL 1382/5474 (25%)

By packages
  
drkonqi.parser
FILES 6/10 (60%)CLASSES 6/10 (60%)LINE 303/423 (72%)CONDITIONAL 
478/616 (78%)
drkonqi.tests.backtraceparsertest
FILES 4/4 (100%)CLASSES 4/4 (100%)LINE 74/74 (100%)CONDITIONAL 
33/50 (66%)
kioslave.desktop
FILES 2/3 (67%)CLASSES 2/3 (67%)LINE 113/168 (67%)CONDITIONAL 
37/92 (40%)
kioslave.desktop.tests
FILES 1/1 (100%)CLASSES 1/1 (100%)LINE 66/66 (100%)CONDITIONAL 
26/50 (52%)
klipper
FILES 12/13 (92%)CLASSES 12/13 (92%)LINE 256/384 
(67%)CONDITIONAL 109/210 (52%)
klipper.autotests
FILES 4/4 (100%)CLASSES 4/4 (100%)LINE 630/693 (91%)CONDITIONAL 
377/820 (46%)
libtaskmanager
FILES 5/16 (31%)CLASSES 5/16 (31%)LINE 139/3070 (5%)CONDITIONAL 
88/3201 (3%)
libtaskmanager.autotests
FILES 2/2 (100%)CLASSES 2/2 (100%)LINE 150/150 
(100%)CONDITIONAL 85/170 (50%)
runners.bookmarks
FILES 8/8 (100%)CLASSES 8/8 (100%)LINE 89/159 (56%)CONDITIONAL 
34/96 (35%)
runners.bookmarks.browsers
FILES 4/4 (100%)CLASSES 4/4 (100%)LINE 88/93 (95%)CONDITIONAL 
84/107 (79%)
runners.bookmarks.tests
FILES 2/2 (100%)CLASSES 2/2 (100%)LINE 65/65 (100%)CONDITIONAL 
31/62 (50%)___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Jenkins-kde-ci: khotkeys master kf5-qt5 » Linux,gcc - Build # 14 - Fixed!

2016-07-20 Thread no-reply

GENERAL INFO

BUILD SUCCESS
Build URL: 
https://build.kde.org/job/khotkeys%20master%20kf5-qt5/PLATFORM=Linux,compiler=gcc/14/
Project: PLATFORM=Linux,compiler=gcc
Date of build: Thu, 21 Jul 2016 02:03:19 +
Build duration: 1 min 30 sec

CHANGE SET
No changes


JUNIT RESULTS

Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 
test(s)

COBERTURA RESULTS

Cobertura Coverage Report
  

By packages
  ___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Jenkins-kde-ci: khotkeys master kf5-qt5 » Linux,gcc - Build # 14 - Fixed!

2016-07-20 Thread no-reply

GENERAL INFO

BUILD SUCCESS
Build URL: 
https://build.kde.org/job/khotkeys%20master%20kf5-qt5/PLATFORM=Linux,compiler=gcc/14/
Project: PLATFORM=Linux,compiler=gcc
Date of build: Thu, 21 Jul 2016 02:03:19 +
Build duration: 1 min 30 sec

CHANGE SET
No changes


JUNIT RESULTS

Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 
test(s)

COBERTURA RESULTS

Cobertura Coverage Report
  

By packages
  ___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Jenkins-kde-ci: plasma-workspace Plasma-5.7 stable-kf5-qt5 » Linux,gcc - Build # 52 - Still Failing!

2016-07-20 Thread no-reply

GENERAL INFO

BUILD FAILURE
Build URL: 
https://build.kde.org/job/plasma-workspace%20Plasma-5.7%20stable-kf5-qt5/PLATFORM=Linux,compiler=gcc/52/
Project: PLATFORM=Linux,compiler=gcc
Date of build: Thu, 21 Jul 2016 02:47:04 +
Build duration: 2 min 24 sec

CHANGE SET
No changes
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Commented On] D1989: Introduce QQuickItem to nest kwin_wayland

2016-07-20 Thread bshah (Bhushan Shah)
bshah added inline comments.

INLINE COMMENTS

> graesslin wrote in kwinqml.cpp:63
> don't use qDebug, please use categorized logging.

I'd say just remove this and debug statement below, they can get noisy, because 
it will be triggered at every frame repaint.

> kwinqml.cpp:112-113
> +n = new QSGSimpleTextureNode();
> +QSGTexture *texture = 
> window()->createTextureFromImage(m_surface->buffer()->data());
> +n->setTexture(texture);
> +}

You need to move this out of the if statement, otherwise only first frame will 
be rendered.

REPOSITORY
  rKWIN KWin

REVISION DETAIL
  https://phabricator.kde.org/D1989

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: bdhruve, bshah, graesslin, #plasma_on_wayland
Cc: bshah, graesslin, plasma-devel, kwin, hardening, jensreuterberg, abetts, 
sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Is it possible for a plasmoid to overlap the panel?

2016-07-20 Thread Martin Graesslin
On Wednesday, July 20, 2016 8:53:03 PM CEST Marco Martin wrote:
> On Wednesday 20 July 2016 21:15:33 Michail Vοurlakos wrote:
> > Hello,
> > 
> > I am trying to implement a plasmoid task manager that behaves
> > like the Mac or the Plank one..
> > the code can be found here: https://github.com/psifidotos/plasmaqmldock[1]
> > it is in a very early stage but the animation is there and showing
> > and hiding windows also...
> 
> I tought about an use case like that in the past...
> 
> you would need to have a very big panel, mostly completely transparent (so
> it means you couldn't use always visible mode, and you depend from having
> composite)
> but for 3rd party things may be ok-ish.
> 
> what the panel on our side would need to do, is not to draw its background
> in that case, basically just respect the background hints, just like
> applets do. I am thinking to add that never the less in 5.8, wouldn't
> change for the default one, but could be a little fun quirky possibility
> for kdelook stuff

Not drawing the background won't be enough: we also need to look at the window 
manager story, which gets interesting for panels:
* background need to be input shaped
* strut must not be set on the whole window

Whether KWin would support that - I do not know. I could assume it would still 
adjust the windows to the size of the panel.

Cheers
Martin

signature.asc
Description: This is a digitally signed message part.
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Is it possible for a plasmoid to overlap the panel?

2016-07-20 Thread Martin Graesslin
On Thursday, July 21, 2016 12:03:26 AM CEST Michail Vοurlakos wrote:
> > > > it means you couldn't use always visible mode, and you depend from
> > > > having
> > > > composite)
> > > 
> > > - "Always visible" in that case I dont think is a necessity... But
> > > playing
> > > around with these docks, an option for panel to be just "Below Active"
> > > do
> > > you think that it would be very difficult to add in Plasma?
> > 
> > what is "beyond active"?
> 
> "Beyond Active" - The panel is hidden only when overlaps with the active
> window
> e.g. if you have an inactive window that does overlap with the panel, the
> panel is shown, but if that window becomes active then the panel is hidden
> behind it

That would have to go into KWin and would require adding a new layer to have 
the active window be raised above the DockLayer.

Cheers
Martin

signature.asc
Description: This is a digitally signed message part.
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Review Request 128491: Give more useful names to the acpi thermal zones and cooling devices

2016-07-20 Thread Martin Gräßlin

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/128491/#review97686
---



How would one test this?


ksysguardd/Linux/acpi.h (line 45)


I don't see printFanState in the new code any more. Is it removed?


- Martin Gräßlin


On July 21, 2016, 3:13 a.m., Martin Tobias Holmedahl Sandsmark wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/128491/
> ---
> 
> (Updated July 21, 2016, 3:13 a.m.)
> 
> 
> Review request for Plasma and John Tapsell.
> 
> 
> Repository: ksysguard
> 
> 
> Description
> ---
> 
> Also fix the fact that cooling devices have a percentage of activity, they're 
> not boolean on or off.
> 
> I'll reverse the tabs->spaces later, if needed.
> 
> 
> Diffs
> -
> 
>   ksysguardd/Linux/acpi.h e50b281 
>   ksysguardd/Linux/acpi.c acf54e1 
> 
> Diff: https://git.reviewboard.kde.org/r/128491/diff/
> 
> 
> Testing
> ---
> 
> It works very well.
> 
> 
> Thanks,
> 
> Martin Tobias Holmedahl Sandsmark
> 
>

___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Review Request 128491: Give more useful names to the acpi thermal zones and cooling devices

2016-07-20 Thread Martin Gräßlin


> On July 21, 2016, 7:44 a.m., Martin Gräßlin wrote:
> > How would one test this?

I mean manual testing. If I pull in the patch, what do I need to do in 
ksysguard to actually see it in action?


- Martin


---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/128491/#review97686
---


On July 21, 2016, 3:13 a.m., Martin Tobias Holmedahl Sandsmark wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/128491/
> ---
> 
> (Updated July 21, 2016, 3:13 a.m.)
> 
> 
> Review request for Plasma and John Tapsell.
> 
> 
> Repository: ksysguard
> 
> 
> Description
> ---
> 
> Also fix the fact that cooling devices have a percentage of activity, they're 
> not boolean on or off.
> 
> I'll reverse the tabs->spaces later, if needed.
> 
> 
> Diffs
> -
> 
>   ksysguardd/Linux/acpi.h e50b281 
>   ksysguardd/Linux/acpi.c acf54e1 
> 
> Diff: https://git.reviewboard.kde.org/r/128491/diff/
> 
> 
> Testing
> ---
> 
> It works very well.
> 
> 
> Thanks,
> 
> Martin Tobias Holmedahl Sandsmark
> 
>

___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Accepted] D2216: [platforms/virtual] Use rendernode or vgem device if available for egl

2016-07-20 Thread bshah (Bhushan Shah)
bshah accepted this revision.
bshah added a reviewer: bshah.
This revision is now accepted and ready to land.

REPOSITORY
  rKWIN KWin

BRANCH
  virtual-render-node-vgem

REVISION DETAIL
  https://phabricator.kde.org/D2216

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #plasma_on_wayland, #kwin, bshah
Cc: plasma-devel, kwin, hardening, jensreuterberg, abetts, sebas
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


[Differential] [Closed] D2185: Handle restart of Compositor Scene correctly for Wayland client

2016-07-20 Thread Martin Gräßlin
This revision was automatically updated to reflect the committed changes.
Closed by commit rKWIN3308f359848f: Handle restart of Compositor Scene 
correctly for Wayland client (authored by graesslin).

CHANGED PRIOR TO COMMIT
  https://phabricator.kde.org/D2185?vs=5209&id=5374#toc

REPOSITORY
  rKWIN KWin

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D2185?vs=5209&id=5374

REVISION DETAIL
  https://phabricator.kde.org/D2185

AFFECTED FILES
  autotests/integration/scene_qpainter_test.cpp
  composite.cpp

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: graesslin, #kwin, #plasma_on_wayland, sebas
Cc: sebas, plasma-devel, kwin, hardening, jensreuterberg, abetts
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Jenkins-kde-ci: plasma-tests master kf5-qt5 » Linux,gcc - Build # 3 - Still Failing!

2016-07-20 Thread no-reply

GENERAL INFO

BUILD FAILURE
Build URL: 
https://build.kde.org/job/plasma-tests%20master%20kf5-qt5/PLATFORM=Linux,compiler=gcc/3/
Project: PLATFORM=Linux,compiler=gcc
Date of build: Thu, 21 Jul 2016 06:33:12 +
Build duration: 1 min 33 sec

CHANGE SET
Revision 81ea2c2575c75db2b9876bc7373835e7cae39248 by Martin Gräßlin: (Add a 
README.md and install it)
  change: edit CMakeLists.txt
  change: add README.md
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Jenkins-kde-ci: plasma-tests master kf5-qt5 » Linux,gcc - Build # 4 - Fixed!

2016-07-20 Thread no-reply

GENERAL INFO

BUILD SUCCESS
Build URL: 
https://build.kde.org/job/plasma-tests%20master%20kf5-qt5/PLATFORM=Linux,compiler=gcc/4/
Project: PLATFORM=Linux,compiler=gcc
Date of build: Thu, 21 Jul 2016 06:42:23 +
Build duration: 11 min

CHANGE SET
Revision 5e5aeb1e5bcc9c6382d17c64bac7d169374f036e by Martin Gräßlin: (Fix 
install path for README.md)
  change: edit CMakeLists.txt


JUNIT RESULTS

Name: (root) Failed: 0 test(s), Passed: 2 test(s), Skipped: 0 test(s), Total: 2 
test(s)

COBERTURA RESULTS

Cobertura Coverage Report
  

By packages
 ___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Jenkins-kde-ci: plasma-tests master kf5-qt5 » Linux,gcc - Build # 4 - Fixed!

2016-07-20 Thread no-reply

GENERAL INFO

BUILD SUCCESS
Build URL: 
https://build.kde.org/job/plasma-tests%20master%20kf5-qt5/PLATFORM=Linux,compiler=gcc/4/
Project: PLATFORM=Linux,compiler=gcc
Date of build: Thu, 21 Jul 2016 06:42:23 +
Build duration: 11 min

CHANGE SET
Revision 5e5aeb1e5bcc9c6382d17c64bac7d169374f036e by Martin Gräßlin: (Fix 
install path for README.md)
  change: edit CMakeLists.txt


JUNIT RESULTS

Name: (root) Failed: 0 test(s), Passed: 2 test(s), Skipped: 0 test(s), Total: 2 
test(s)

COBERTURA RESULTS

Cobertura Coverage Report
  

By packages
 ___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel