- 18 May, 2018 2 commits
-
-
Roman Gilg authored
Summary: TRANSLATION_DOMAIN and value in Messages.sh need to be the same. Use the new name kcm5_workspace for consistency. Reviewers: #plasma, ltoscano, yurchor Reviewed By: ltoscano Subscribers: plasma-devel Tags: #plasma Differential Revision: https://phabricator.kde.org/D12956
-
Script Kiddy authored
In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
-
- 17 May, 2018 5 commits
-
-
Roman Gilg authored
Summary: The setting has been moved to the Workspace KCM. Test Plan: Manually Reviewers: #plasma, mart, ngraham Reviewed By: #plasma, mart, ngraham Subscribers: plasma-devel Tags: #plasma Differential Revision: https://phabricator.kde.org/D12947
-
Furkan Tokac authored
Summary: This patch adds the single/double click option to the Workspace KCM. BUG: 393547 BUG: 377310 Reviewers: romangg, ngraham, #plasma, mart Reviewed By: romangg, #plasma, mart Subscribers: mart, davidedmundson, plasma-devel Tags: #plasma Differential Revision: https://phabricator.kde.org/D12946
-
David Edmundson authored
Summary: Before this patch if I edit an option, and then resize the window the apply button became disabled. I'm not sure what this was trying to do, but widget size and whether we have changes to save seems very unrelated. Test Plan: Tested as above, no longer have the bug Reviewers: #plasma, apol Reviewed By: apol Subscribers: plasma-devel Tags: #plasma Differential Revision: https://phabricator.kde.org/D12943
-
Furkan Tokac authored
Summary: This patch renews the System Settings -> Desktop Behaviour -> Workspace. Basically it is rewritten in QML, ConfigModule. Also, its naming has been changed. It was called as kcm_workspaceoptions and workspaceoptions before but now, it is kcm_workspace like other renewed KCMs' names. Currently, ToolTip and VisualFeedback working fine. All the functionalities are tested. "Default", "Reset" buttons works like a charm. {F5852481} Reviewers: romangg, ngraham, #plasma Reviewed By: romangg, #plasma Subscribers: zzag, davidedmundson, plasma-devel Tags: #plasma Differential Revision: https://phabricator.kde.org/D12936
-
Script Kiddy authored
In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
-
- 16 May, 2018 1 commit
-
-
David Edmundson authored
It was accidentally removed with 6055cfb9
-
- 15 May, 2018 2 commits
-
-
Kai Uwe Broulik authored
The "Use Desktop Layout from theme" is quite destructive, add back a warning about it which got lost in the redesign. Differential Revision: https://phabricator.kde.org/D12890
-
Yuri Chornoivan authored
-
- 14 May, 2018 3 commits
-
-
Алексей Шилин authored
Summary: D10890 was a workaround related to KRecentDocument::add() bug (see D10863) which is fixed in Frameworks 5.46. Given that Plasma 5.13 depends on that Frameworks version, it's safe to remove this no longer needed workaround without breaking anything. Reviewers: #plasma, broulik, hein Reviewed By: #plasma, hein Subscribers: plasma-devel Tags: #plasma Differential Revision: https://phabricator.kde.org/D12701
-
Kai Uwe Broulik authored
-
Eike Hein authored
Summary: * Changed the overall design from two lists to one list with a modal sheet to add more languages. * Replaced a modal "You need to relogin for changes" dialog with a MessageType.Positive InlineMessage. * Reworked the way missing languages are handled: The old KCM silently rewrote config and showed a warning. The new design shows an informative warning and removes the missing languages on the next save. Until then they're flagged as missing in the list. * Manages Apply button state correctly (or rather at all ...). This depends on D12097. This implements T7247. This is currently not final code. It's a WIP upload to give Marco something to work with to fix various Kirigami and SimpleKCM problems. Currently known issues: * Does not save (code is from old KCM, might have been broken there) * Disabled SwipeListItem actions do not show disabled * Placement of actions button in SwipeListItem is wonky if the contentItem is a RowLayout * SwipeListItem spews errors about positionAnimation after using an action * SwipeListItem is awkward to use, we need a drag-reorderable list delegate * OverlaySheet spews numerous warnings about not being able to find applicationWindow and activeFocusItem * The sheet is parented to the SimpleKCM's parent since there's no app window to be modal too * The footer inside an OverlaySheet sometimes moves up above the content instead of staying down * Even though SimpleKCM is just a Kirigami.ScrollablePage like Kirigami Gallery pages, an InlineMessage that fills the page width gets cut off on the left and right, so wonky code to insert margins next to them * List has window bg color as background instead of view background color Reviewers: #kirigami, mart Subscribers: rkflx, aspotashev, davidedmundson, safaalfulaij, abetts, ngraham, plasma-devel Tags: #plasma, #kirigami Differential Revision: https://phabricator.kde.org/D12102
-
- 11 May, 2018 2 commits
-
-
Luigi Toscano authored
Better keep the name to minimize the risk of future incompatibilites. Acked by notmart on IRC
-
Script Kiddy authored
In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
-
- 10 May, 2018 1 commit
-
-
Script Kiddy authored
In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
-
- 08 May, 2018 1 commit
-
-
Script Kiddy authored
In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
-
- 06 May, 2018 1 commit
-
-
Script Kiddy authored
-
- 03 May, 2018 3 commits
-
-
Kai Uwe Broulik authored
-
Kai Uwe Broulik authored
We end up loading 128 px icons and scaling them down to e.g. 112 for the thumbnail. This isn't ideal but with smooth scaling enabled, this at least reduces the artefacts caused by this.
-
Script Kiddy authored
In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
-
- 02 May, 2018 3 commits
-
-
David Edmundson authored
-
Summary: QML Image element has some smoothing when scaling an image by default but it's not enough and the picture still looks a bit pixelated. This patch fixes that. Also while I was at it, I added keeping the aspect ratio, because no one likes their avatars stretched. BUG: 369327 Test Plan: Before: {F5819424} {F5819425} After: {F5819429} {F5819430} Reviewers: #plasma, mart Reviewed By: #plasma, mart Subscribers: davidedmundson, plasma-devel Tags: #plasma Differential Revision: https://phabricator.kde.org/D12469
-
Script Kiddy authored
In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
-
- 01 May, 2018 1 commit
-
-
Jonathan Esk-Riddell authored
GIT_SILENT
-
- 30 Apr, 2018 1 commit
-
-
Script Kiddy authored
In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
-
- 29 Apr, 2018 2 commits
-
-
Script Kiddy authored
In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
-
Script Kiddy authored
In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
-
- 28 Apr, 2018 1 commit
-
-
Script Kiddy authored
In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
-
- 27 Apr, 2018 2 commits
-
-
Kai Uwe Broulik authored
This completely drops the icon customization with icon effects and only retains the icon size settings. Should there be any custom icon effects, pressing "Defaults" in the KCM will remove them. I also couldn't find any trace of that "animations enabled" check box it used to have. It adds drag and drop support for installing archives as themes. It can also download them from remote location when dropped from e.g. a browser. Installing theme files actually never worked in Plasma 5 as it got broken in the port from KIO NetAccess to storedGet. An animated preview is also added on hover showing a common selection of icons. Implements T7262 BUG: 367619 BUG: 334301 CCBUG: 163992 FIXED-IN: 5.13.0 Differential Revision: https://phabricator.kde.org/D12459
-
Script Kiddy authored
In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
-
- 26 Apr, 2018 1 commit
-
-
Script Kiddy authored
In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
-
- 25 Apr, 2018 6 commits
-
-
Kai Uwe Broulik authored
This makes it consistent with Dolphin which, when cd'ing into a folder on desktop:/ actually opens /home/foo/Desktop/path (the target URL set by the KIO) Differential Revision: https://phabricator.kde.org/D5234
-
Kai Uwe Broulik authored
Makes it consistent with the other KCMs
-
Marco Martin authored
newly ported kcms need at least 5.10
-
Script Kiddy authored
In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
-
Script Kiddy authored
-
Script Kiddy authored
In case of conflict in i18n, keep the version of the branch "ours" To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
-
- 24 Apr, 2018 2 commits
-
-
Kai Uwe Broulik authored
QMenu doesn't really support maximumWidth. The window's size would be limited but its content just cut off rather than nicely elided. Instead, we manually elide in a crude way using TextMetrics. Differential Revision: https://phabricator.kde.org/D7181
-
Kai Uwe Broulik authored
* Implement undo delete feature * Introduce currentIndex property instead of indexOf() method * Make GHNS dialog window modal instead of application modal * Support drag and drop to install themes * Use InlineMessage for installation error/success notifications Differential Revision: https://phabricator.kde.org/D12503
-