- 22 Aug, 2015 1 commit
-
-
Ragnar Thomsen authored
and disable installation of the desktop files.
-
- 21 Aug, 2015 4 commits
-
-
Hrvoje Senjan authored
-
Harald Sitter 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"
-
Harald Sitter authored
Desktop files changed name during KDE Frameworks 5 porting which renders our initial favorite list defunct. By adding the new names as well as the old ones we'll pick which ever one is actually installed on first start such that Plasma 5.4 will also behave correctly with Applications <15.08. BUG: 351550 REVIEW: 124863
-
- 20 Aug, 2015 6 commits
-
-
Ragnar Thomsen authored
Fix loading/saving of the autoload status of kded startup services in the kcm. Loading was broken due to a KPluginMetaData::pluginId() being passed to autoloadEnabled(), instead of a KPluginMetaData. Saving was broken due to comparing KPluginMetaData::fileName() to treeitem->data(LibraryRole). This didn't work due to KPluginMetaData::fileName() sometimes containing (part of) the path in addition to the plugin/library name. This was solved by using KPluginMetaData::pluginId() instead of KPluginMetaData::fileName(). BUG: 346848 BUG: 347429 REVIEW: 124840
-
Kai Uwe Broulik authored
The same license is chosen same as for the other files and copyright dates assumed from https://quickgit.kde.org/?p=kde-runtime.git&a=history&h=87ceda4e09b1b8713f37e9f23923a131f6ff98ce&f=solid-device-automounter%2Fkcm%2FDeviceModel.cpp
-
Kai Uwe Broulik authored
CHANGELOG: Automatic mounting of external storage is now possible again REVIEW: 124730 BUG: 351003 FIXED-IN: 5.5.0
-
David Edmundson authored
-
David Edmundson authored
BUG: 350135 REVIEW: 124837
-
Jonathan Riddell authored
GIT_SILENT
-
- 19 Aug, 2015 3 commits
-
-
David Edmundson authored
-
Kai Uwe Broulik authored
-
Kai Uwe Broulik authored
When assigning a shortcut to the application dashboard, pressing it would still just open the popup revealing it's actually Kicker. BUG: 351290 FIXED-IN: 5.4.0
-
- 18 Aug, 2015 1 commit
-
-
David Edmundson authored
BUG: 351412
-
- 17 Aug, 2015 1 commit
-
-
David Edmundson authored
This was broken in a way that meant i18n wasn't loaded and the English version had random HTML entities. BUG: 341527 REVIEW: 124737
-
- 16 Aug, 2015 3 commits
-
-
Kai Uwe Broulik authored
Otherwise the left mouse action isn't triggered BUG: 351277 FIXED-IN: 5.4.0
-
Kai Uwe Broulik authored
Otherwise the left mouse action isn't triggered BUG: 351277 FIXED-IN: 5.4.0
-
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"
-
- 15 Aug, 2015 1 commit
-
-
Script Kiddy authored
-
- 14 Aug, 2015 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"
-
- 13 Aug, 2015 2 commits
-
-
Bhushan Shah authored
-
Yuri Chornoivan authored
-
- 12 Aug, 2015 2 commits
-
-
Jan Grulich authored
REVIEW:124702
-
Jan Grulich authored
REVIEW:124702
-
- 11 Aug, 2015 1 commit
-
-
Sebastian Kügler authored
REVIEW:124625
-
- 10 Aug, 2015 2 commits
-
-
Kai Uwe Broulik authored
-
Kai Uwe Broulik authored
You couldn't wheel to switch desktops hovering one of the gaps BUG: 351173 FIXED-IN: 5.4.0
-
- 08 Aug, 2015 4 commits
-
-
Ivan Čukić authored
-
Maxim Mikityanskiy authored
There are two scenarios that lead to segfault in kcm_keyboard. 1. Run kcmshell5 keyboard; switch to the second tab; in layouts table double-click on item in third column so that combo box appears; click on empty space in layouts table; [Preview] button does not get deactivated; click on that button and see kcm_keyboard crashing. 2. Run kcmshell5 keyboard; switch to the second tab; modify something so that [Reset] button becomes active; select any row in layouts table; click on [Reset]; row becomes deselected, but [Preview] button is still active; click on that button and see kcm_keyboard crashing. [Preview] button should become inactive when no rows are selected, but in these two scenarios it doesn't. KCMKeyboardWidget::layoutSelectionChanged slot does not get called in these two cases. What happens in described cases: 1. layoutsTableModel emits dataChanged signal. KCMKeyboardWidget::uiChanged slot gets called. LayoutsTableModel::refresh is called, then in QAbstractItemModel::endResetModel modelReset signal is emitted, QAbstractItemView::reset slot gets called, and it calls QItemSelectionModel::reset. QItemSelectionModel::reset disables signals and calls QItemSelectionModel::clear that calls QItemSelectionModel::clearSelection, but signals are disabled, so itemSelectionChanged is not emitted, and KCMKeyboardWidget::layoutSelectionChanged is not called. 2. KCMKeyboard::load calls KCMKeyboardWidget::updateUI that calls LayoutsTableModel::refresh. All following calls are in the same order as in case 1. I propose to call KCMKeyboardWidget::layoutSelectionChanged manually after problematic refreshes to update buttons state. It's not the best fix, there still may be places where manual call of layoutSelectionChanged is needed, but at least it fixes two segfaults. REVIEW: 124659 BUG: 124659
-
David Edmundson authored
-
Ivan Čukić authored
- Refactoring the dialog handling - Dialogs are now truly inline - Fixed a few layout and positioning bugs
-
- 07 Aug, 2015 2 commits
-
-
David Edmundson authored
Scripts are run at logout not shutdown BUG: 351036
-
Ivan Čukić authored
-
- 06 Aug, 2015 2 commits
-
-
Jonathan Riddell authored
Update version number for 5.4.90
-
Jonathan Riddell authored
Update version number for 5.3.95
-
- 03 Aug, 2015 1 commit
-
-
Yuri Chornoivan authored
-
- 02 Aug, 2015 2 commits
-
-
David Edmundson authored
For some reason we have two IconDialog's exported to QML. One in KDeclarative, one in Plasma-Frameworks/platformcomponents. The one in plasmacomponents performs an exec() in the main thread from QML which is a very bad idea. the one in kdeclarative is good. BUG: 350864 REVIEW: 124580
-
Burkhard Lück authored
REVIEW:124296
-
- 31 Jul, 2015 1 commit
-
-
Jonathan Riddell authored
user-manager does everything useraccount does so use that instead post 5.4 a rewrite of kcm_useraccount needs to be evaluated if it's better http://comments.gmane.org/gmane.comp.kde.devel.plasma/42358 FEATURE
-