]> cloud.milkyroute.net Git - dolphin.git/log
dolphin.git
8 years ago[KStandardItemListWidget] Update icon when palette changes
Kai Uwe Broulik [Mon, 6 Feb 2017 18:12:48 +0000 (19:12 +0100)]
[KStandardItemListWidget] Update icon when palette changes

We can colorize icons based on the user's palette, so clear the pixmap cache when it changes.

Differential Revision: https://phabricator.kde.org/D3937

8 years agoGIT_SILENT made messages (after extraction)
l10n daemon script [Sun, 5 Feb 2017 05:54:55 +0000 (06:54 +0100)]
GIT_SILENT made messages (after extraction)

8 years agoGIT_SILENT Upgrade KDE Applications version to 16.12.2.
Albert Astals Cid [Fri, 3 Feb 2017 22:40:36 +0000 (23:40 +0100)]
GIT_SILENT Upgrade KDE Applications version to 16.12.2.

8 years agoGIT_SILENT made messages (after extraction)
l10n daemon script [Fri, 3 Feb 2017 06:02:22 +0000 (07:02 +0100)]
GIT_SILENT made messages (after extraction)

8 years agoHide progress info for rename jobs in rename dialog
Kai Uwe Broulik [Tue, 31 Jan 2017 19:50:47 +0000 (20:50 +0100)]
Hide progress info for rename jobs in rename dialog

When mass-renaming files, you could end up with a a gazillion notifications of a finished move job.
This fixes this. Ideally we would have one job which had the rename jobs as subjobs to still get
progress info for the overall task.

Differential Revision: https://phabricator.kde.org/D4372

8 years agoinformationpanel: don't change color of scrollarea's viewport
Elvis Angelaccio [Sat, 21 Jan 2017 22:36:40 +0000 (23:36 +0100)]
informationpanel: don't change color of scrollarea's viewport

This code was added a long time ago in b1c9b5126d, but the commit
message doesn't explain why. If we remove it nothing seems to change and
we fix the ugly background on the scrollbar when Breeze draws a frame
around dockable panels.

BUG: 366203
FIXED-IN: 16.12.2
REVIEW: 129861

8 years agoFix missing audio duration in details view
Marc André Wittorf [Sat, 21 Jan 2017 00:37:35 +0000 (01:37 +0100)]
Fix missing audio duration in details view

Enabling the 'duration' column in a folder with audio files did only show empty information. Properly initializing the QTime object fixes this.

 Testing Done

    Find a folder with audio files
    Make sure that Baloo has indexed this folder
    Open this folder in Dolphin, detail view, enable the Audio/Duration column
    Unpatched Dolphin does not display audio duration, patched Dolphin does

Tested on Gentoo x86_64 with Qt 5.5.1, KF 5.21.0 and Arch x86_64 with Qt 5.6.0 and KF 5.21.0.

REVIEW: 127799

8 years agoDon't overwrite custom icons for the show_hidden_files action
Elvis Angelaccio [Sat, 14 Jan 2017 11:52:58 +0000 (12:52 +0100)]
Don't overwrite custom icons for the show_hidden_files action

BUG: 374508
FIXED-IN: 16.12.2
REVIEW: 129789

8 years agoGIT_SILENT Upgrade KDE Applications version to 16.12.1.
Albert Astals Cid [Sat, 7 Jan 2017 18:47:57 +0000 (19:47 +0100)]
GIT_SILENT Upgrade KDE Applications version to 16.12.1.

9 years agoExplicitly pass iconNameForUrl when creating new places entry
Kai Uwe Broulik [Tue, 3 Jan 2017 08:46:43 +0000 (09:46 +0100)]
Explicitly pass iconNameForUrl when creating new places entry

Once KIO::iconNameForUrl returns special icons for standard paths (e.g. Video folder)
this will ensure when adding such a folder to places it will automatically get the proper icon.

Since KIO already depends on KBookmarks it can't depend the other way round, otherwise
this would have been fixed in KBookmarks directly.

Differential Revision: https://phabricator.kde.org/D3896

9 years ago[DolphinView] Update view palette on palette change
Kai Uwe Broulik [Tue, 3 Jan 2017 08:45:33 +0000 (09:45 +0100)]
[DolphinView] Update view palette on palette change

Everything was handling palette change already but for the visual distinction between
active and non-active view (in case of split view), a custom palette was set which was
then never updated. This could be seen by the label text color changing but not the view background.

Differential Revision: https://phabricator.kde.org/D3909

9 years agoProperly disable create_dir action in Trash
Elvis Angelaccio [Mon, 2 Jan 2017 13:52:37 +0000 (14:52 +0100)]
Properly disable create_dir action in Trash

`isFolderWritable` is set in DolphinView::updateWritableState() according to
KFileItemListProperties::supportsWriting().
However, `writing=true` does not imply `makedir=true`,
in an ioslave's .protocol file. An example is the trash protocol.

So we need to enable the `create_dir` action only if the protocol is
actually able to create folders.

CCBUG: 332463
REVIEW: 129712

9 years ago[DolphinSearchBox] Stop search timer on hide
Anthony Fieroni [Sun, 1 Jan 2017 19:47:10 +0000 (21:47 +0200)]
[DolphinSearchBox] Stop search timer on hide

REVIEW: 129705

Signed-off-by: Anthony Fieroni <bvbfan@abv.bg>
9 years agoGIT_SILENT Upgrade KDE Applications version to 16.12.0.
Albert Astals Cid [Tue, 6 Dec 2016 19:52:03 +0000 (20:52 +0100)]
GIT_SILENT Upgrade KDE Applications version to 16.12.0.

9 years agoGIT_SILENT Upgrade KDE Applications version to 16.11.90.
Albert Astals Cid [Tue, 29 Nov 2016 21:10:26 +0000 (22:10 +0100)]
GIT_SILENT Upgrade KDE Applications version to 16.11.90.

9 years agoFix slow scrolling in dock panels
Elvis Angelaccio [Sun, 20 Nov 2016 11:21:29 +0000 (12:21 +0100)]
Fix slow scrolling in dock panels

Commit f688bcd1f1 fixed slow scrolling with xf86-input-libinput on DolphinView.

However the commit also exposed a bug in the Dolphin scrolling
algorithm, which was previously hidden. This resulted in slow
scrolling in dock panels (Places and Folders), with both
xf86-input-evdev and xf86-input-libinput drivers, as well as libinput on
Wayland.

KItemListContainer::updateScrollOffsetScrollBar() relied on the view's
itemSize() method to compute the scrollbar's singleStep, but this QSize
was invalid for the dock panels' views.

We use a new itemSizeHint() method instead, which is always valid and
also adapts to the current icon size set in the view.

BUG: 365968
FIXED-IN: 16.12.0
REVIEW: 129409

9 years agoGIT_SILENT Upgrade KDE Applications version to 16.11.80.
Albert Astals Cid [Tue, 15 Nov 2016 22:45:08 +0000 (23:45 +0100)]
GIT_SILENT Upgrade KDE Applications version to 16.11.80.

9 years agoMerge branch 'Applications/16.08'
Kai Uwe Broulik [Fri, 28 Oct 2016 11:42:28 +0000 (13:42 +0200)]
Merge branch 'Applications/16.08'

9 years ago[Places Item Edit Dialog] Fix accepting dialog with Return
Kai Uwe Broulik [Fri, 28 Oct 2016 11:40:50 +0000 (13:40 +0200)]
[Places Item Edit Dialog] Fix accepting dialog with Return

By setting a parent for the QDialogButtonBox we let QDialog handle everything by itself.
Also, store the dialog button box as a member rather than just the OK button.

This removes the need to set the OK button as default manually (which didn't work anyway)
and fixes pressing Return while the input is focused erroneously opening the folder browser
rather than accepting the dialog.

REVIEW: 129213

9 years agoThe tab navigation shortcut workaround for RTL layouts is not needed anymore, as...
Safa AlFulaij [Wed, 12 Oct 2016 11:31:35 +0000 (14:31 +0300)]
The tab navigation shortcut workaround for RTL layouts is not needed anymore, as Qt supports that by default.

Before this, pressing Ctrl+Tab makes the previous tab (in RTL layout) the
activated one, and vice versa.

REVIEW: 128853

9 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Mon, 10 Oct 2016 12:24:39 +0000 (12:24 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours

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"

9 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Mon, 10 Oct 2016 09:41:54 +0000 (09:41 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours

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"

9 years agoGIT_SILENT Upgrade KDE Applications version to 16.08.2.
Albert Astals Cid [Thu, 6 Oct 2016 22:56:28 +0000 (00:56 +0200)]
GIT_SILENT Upgrade KDE Applications version to 16.08.2.

9 years agoHide message widgets only when reloading the view
Elvis Angelaccio [Tue, 4 Oct 2016 15:30:51 +0000 (17:30 +0200)]
Hide message widgets only when reloading the view

Otherwise an error message might be hidden before it's even shown.

BUG: 357651
FIXED-IN: 16.08.2
REVIEW: 129061

9 years agoPass current dir explicitly to QUrl::fromUserInput
David Faure [Sun, 2 Oct 2016 23:05:42 +0000 (01:05 +0200)]
Pass current dir explicitly to QUrl::fromUserInput

It works with QString() but that's a bug, I didn't expect it to
work with my fromUserInput code and wrote otherwise in its documentation...

9 years agoPopupmenu: use KIO 5.27's new addPluginActionsTo method
David Faure [Sun, 2 Oct 2016 19:03:01 +0000 (21:03 +0200)]
Popupmenu: use KIO 5.27's new addPluginActionsTo method

REVIEW: 129085

9 years agoFollow changes in konqpopupmenu: no longer back/forward/up in part's contextmenu.
David Faure [Wed, 21 Sep 2016 21:41:55 +0000 (23:41 +0200)]
Follow changes in konqpopupmenu: no longer back/forward/up in part's contextmenu.

9 years agoUsed KUrlMimeData::setUrls for kfileitemmodel's createMimeData for implementing the...
arnav dhamija [Sun, 25 Sep 2016 14:16:22 +0000 (19:46 +0530)]
Used KUrlMimeData::setUrls for kfileitemmodel's createMimeData for implementing the upcoming stash:/ ioslave

9 years agoMerge branch 'Applications/16.08'
Elvis Angelaccio [Wed, 21 Sep 2016 16:26:28 +0000 (18:26 +0200)]
Merge branch 'Applications/16.08'

* Applications/16.08:
  Properly check Shift toggling in DolphinRemoveAction

9 years agoProperly check Shift toggling in DolphinRemoveAction
Elvis Angelaccio [Wed, 21 Sep 2016 16:13:29 +0000 (18:13 +0200)]
Properly check Shift toggling in DolphinRemoveAction

Documentation of QGuiApplication::keyboardModifiers() says that "It should
be noted this may not reflect the actual keys held on the input device at
the time of calling but rather the modifiers as last reported in one of
the above events".

Since this method is called in DolphinContextMenu's keyPressEvent()
and keyReleaseEvent(), the first time that keyboardModifiers() is
called it doesn't report that shift has been pressed.

Replacing this method with queryKeyboardModifiers() does the job
because the latter doesn't care about the event queue.

BUG: 354301
FIXED-IN: 16.08.2
REVIEW: 128972

9 years agoAdd Donate standard action to control menu
Elvis Angelaccio [Tue, 20 Sep 2016 09:24:15 +0000 (11:24 +0200)]
Add Donate standard action to control menu

REVIEW: 128946

9 years agoMerge branch 'Applications/16.08'
Elvis Angelaccio [Sat, 10 Sep 2016 20:01:09 +0000 (22:01 +0200)]
Merge branch 'Applications/16.08'

* Applications/16.08:
  Don't load twice kfileitemaction plugins with json metadata
  Fix logic for loading kfileitemaction plugins

9 years agoDon't load twice kfileitemaction plugins with json metadata
Elvis Angelaccio [Sat, 10 Sep 2016 19:57:58 +0000 (21:57 +0200)]
Don't load twice kfileitemaction plugins with json metadata

9 years agoFix logic for loading kfileitemaction plugins
Elvis Angelaccio [Sat, 10 Sep 2016 19:52:02 +0000 (21:52 +0200)]
Fix logic for loading kfileitemaction plugins

Since dolphin is now loading also plugins with json metadata, it is
wrong to return here, as those plugins could be missed.

9 years agoGIT_SILENT Upgrade KDE Applications version to 16.08.1.
Albert Astals Cid [Sun, 4 Sep 2016 22:29:58 +0000 (00:29 +0200)]
GIT_SILENT Upgrade KDE Applications version to 16.08.1.

9 years agoUse tab for switching active split
Martin T. H. Sandsmark [Sun, 31 Jul 2016 17:16:18 +0000 (19:16 +0200)]
Use tab for switching active split

REVIEW: 128564
REVIEW: 110970
BUGS: 171743

9 years agoreplace kappname -> dolphin + add Paste menuitems
Burkhard Lück [Wed, 31 Aug 2016 05:02:36 +0000 (07:02 +0200)]
replace kappname -> dolphin + add Paste menuitems

9 years agoMerge branch 'Applications/16.08'
Elvis Angelaccio [Tue, 23 Aug 2016 16:12:20 +0000 (18:12 +0200)]
Merge branch 'Applications/16.08'

9 years agoFilter json-only KFileItemAction plugins by mimetype
Elvis Angelaccio [Tue, 23 Aug 2016 15:58:48 +0000 (17:58 +0200)]
Filter json-only KFileItemAction plugins by mimetype

Commit d48b733 introduced support for kfileitemaction plugins with json
metadata, but forgot to filter them by the commonMimeType (like
KMimeTypeTrader::query() does with old-style plugins).

So we need to load a plugin only when commonMimeType is equal to (or child of) one
of the mimetypes supported by the plugin.

9 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Fri, 19 Aug 2016 12:04:22 +0000 (12:04 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours

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"

9 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Fri, 19 Aug 2016 09:28:24 +0000 (09:28 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours

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"

9 years agofix changed menuitem string + add some comments
Burkhard Lück [Thu, 18 Aug 2016 05:56:05 +0000 (07:56 +0200)]
fix changed menuitem string + add some comments

9 years agoGIT_SILENT Upgrade KDE Applications version to 16.08.0.
Albert Astals Cid [Tue, 9 Aug 2016 23:01:57 +0000 (01:01 +0200)]
GIT_SILENT Upgrade KDE Applications version to 16.08.0.

9 years agoFix some low-hanging warning fruits
Martin T. H. Sandsmark [Sat, 6 Aug 2016 11:03:48 +0000 (13:03 +0200)]
Fix some low-hanging warning fruits

9 years agoGIT_SILENT Upgrade KDE Applications version to 16.07.90.
Albert Astals Cid [Tue, 2 Aug 2016 17:55:23 +0000 (19:55 +0200)]
GIT_SILENT Upgrade KDE Applications version to 16.07.90.

9 years agoGIT_SILENT Upgrade KDE Applications version to 16.11.70.
Albert Astals Cid [Tue, 19 Jul 2016 21:28:02 +0000 (23:28 +0200)]
GIT_SILENT Upgrade KDE Applications version to 16.11.70.

9 years agoGIT_SILENT Upgrade KDE Applications version to 16.07.80.
Albert Astals Cid [Tue, 19 Jul 2016 20:50:57 +0000 (22:50 +0200)]
GIT_SILENT Upgrade KDE Applications version to 16.07.80.

9 years agoFix scrolling on hidpi screens
Martin T. H. Sandsmark [Tue, 12 Jul 2016 22:29:15 +0000 (00:29 +0200)]
Fix scrolling on hidpi screens

Scrolling with libinput was unbearably slow.

QScrollBar is much better at scrolling than us, so let it handle it.

REVIEW: 128432
BUG: 357618

9 years agoFix scrolling on hidpi screens
Martin T. H. Sandsmark [Tue, 12 Jul 2016 22:29:15 +0000 (00:29 +0200)]
Fix scrolling on hidpi screens

Scrolling with libinput was unbearably slow.

QScrollBar is much better at scrolling than us, so let it handle it.

REVIEW: 128432
BUG: 357618

9 years agoGive FileMetaDataConfigurationDialog a parent
Christoph Feck [Thu, 14 Jul 2016 15:19:21 +0000 (17:19 +0200)]
Give FileMetaDataConfigurationDialog a parent

REVIEW: 128439

9 years agoMerge branch 'Applications/16.04'
Kai Uwe Broulik [Fri, 1 Jul 2016 09:37:01 +0000 (11:37 +0200)]
Merge branch 'Applications/16.04'

9 years ago[DBusInterface] Use %U instead of %u to indicate multiple URLs are supported
Kai Uwe Broulik [Fri, 1 Jul 2016 09:36:10 +0000 (11:36 +0200)]
[DBusInterface] Use %U instead of %u to indicate multiple URLs are supported

Otherwise KRun opens a separate instance for every URL passed although Dolphin
already has logic to open different folders in tabs if neccessary.

REVIEW: 128306

9 years agoSVN_SILENT made messages (after extraction)
l10n daemon script [Tue, 28 Jun 2016 08:18:56 +0000 (08:18 +0000)]
SVN_SILENT made messages (after extraction)

9 years agoadd_definitions(-DQT_NO_URL_CAST_FROM_STRING) + fix compilation
David Faure [Sat, 25 Jun 2016 14:39:49 +0000 (16:39 +0200)]
add_definitions(-DQT_NO_URL_CAST_FROM_STRING) + fix compilation

This fixes some URLs built from local paths without scheme.

9 years agoLook for kfileitemaction plugins in the expected subfolder
Elvis Angelaccio [Sat, 18 Jun 2016 15:47:07 +0000 (17:47 +0200)]
Look for kfileitemaction plugins in the expected subfolder

For a rationale, see https://git.reviewboard.kde.org/r/128225/

9 years agoFix DnD onto desktop:/ app desktop file.
David Faure [Thu, 16 Jun 2016 13:34:44 +0000 (15:34 +0200)]
Fix DnD onto desktop:/ app desktop file.

We need to resolve from desktop:/ to file:/ so that DropJob
can handle application .desktop files.

CCBUG: 363991

9 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Fri, 10 Jun 2016 09:41:49 +0000 (09:41 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours

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"

9 years agoLoad KFileItemAction plugins with json metadata
Elvis Angelaccio [Wed, 8 Jun 2016 13:30:52 +0000 (15:30 +0200)]
Load KFileItemAction plugins with json metadata

REVIEW: 128088

9 years agoUpdate dolphin docbook to 16.04
Burkhard Lück [Wed, 8 Jun 2016 04:19:11 +0000 (06:19 +0200)]
Update dolphin docbook to 16.04

Proofread + check if the info is still valid, bump date + releaseinfo
New Screenshots
Remove appendix + entities kappname + dolphin
REVIEW:128071

9 years agoGIT_SILENT Upgrade KDE Applications version to 16.04.2.
Albert Astals Cid [Tue, 7 Jun 2016 12:03:39 +0000 (14:03 +0200)]
GIT_SILENT Upgrade KDE Applications version to 16.04.2.

9 years agoSVN_SILENT made messages (after extraction)
l10n daemon script [Sun, 5 Jun 2016 10:48:01 +0000 (10:48 +0000)]
SVN_SILENT made messages (after extraction)

9 years agoSVN_SILENT made messages (after extraction)
l10n daemon script [Sun, 5 Jun 2016 07:18:28 +0000 (07:18 +0000)]
SVN_SILENT made messages (after extraction)

9 years agoSVN_SILENT made messages (after extraction)
l10n daemon script [Sat, 4 Jun 2016 11:03:54 +0000 (11:03 +0000)]
SVN_SILENT made messages (after extraction)

9 years agoSVN_SILENT made messages (after extraction)
l10n daemon script [Sat, 4 Jun 2016 07:22:48 +0000 (07:22 +0000)]
SVN_SILENT made messages (after extraction)

9 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Sun, 29 May 2016 12:20:08 +0000 (12:20 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours

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"

9 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Sun, 29 May 2016 09:27:44 +0000 (09:27 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours

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"

9 years agoPort all instances of Kauthorized action/shell_command to shell_command
David Edmundson [Thu, 26 May 2016 12:51:23 +0000 (13:51 +0100)]
Port all instances of Kauthorized action/shell_command to shell_command

The KAuthorized key to prevent shell access according the documentation
is simply "shell_action" not "action/shellAction" so should use
authorize not authorizeKAction

This appears to have come about as part of a porting bug when going from
KApplication::authorize to KAuthorized in kdelibs3 to kdelibs4.

To currently block shell access a sysadmin currently needs to
have both keys set already, so we can be confident it won't have any
actual compatibility problems.

9 years agoFix crash when closing split view with ownCloud plugin loaded
Martin T. H. Sandsmark [Sun, 15 May 2016 16:09:09 +0000 (18:09 +0200)]
Fix crash when closing split view with ownCloud plugin loaded

KPluginLoader::instantiatePlugins() wraps QPluginLoader::instace(),
which doesn't return a new object for each call, so if we set the
KFileItemModelRolesUpdater instance as parent to the plugin the shared
instance will be deleted leading to crashes when other instances of
KFileItemModelRolesUpdater tries to use their plugin objects.

To fix this, set the QApplication as a parent.

BUG: 357479

REVIEW: 127930

9 years agoFix crash when closing split view with ownCloud plugin loaded
Martin T. H. Sandsmark [Sun, 15 May 2016 16:09:09 +0000 (18:09 +0200)]
Fix crash when closing split view with ownCloud plugin loaded

KPluginLoader::instantiatePlugins() wraps QPluginLoader::instace(),
which doesn't return a new object for each call, so if we set the
KFileItemModelRolesUpdater instance as parent to the plugin the shared
instance will be deleted leading to crashes when other instances of
KFileItemModelRolesUpdater tries to use their plugin objects.

To fix this, set the QApplication as a parent.

BUG: 357479

REVIEW: 127930

9 years agoMerge branch 'Applications/16.04'
David Edmundson [Wed, 18 May 2016 09:13:16 +0000 (10:13 +0100)]
Merge branch 'Applications/16.04'

9 years agoDon't allow opening the terminal if shell_access Kiosk mode is set
David Edmundson [Wed, 18 May 2016 01:06:49 +0000 (02:06 +0100)]
Don't allow opening the terminal if shell_access Kiosk mode is set

DolphinPart already did this. Dolphin itself didn't have this feature.

REVIEW: 127951

9 years agoDon't use old (not existing) names in the documentation.
Andre Woebbeking [Mon, 16 May 2016 17:06:32 +0000 (19:06 +0200)]
Don't use old (not existing) names in the documentation.

9 years agouse selected icon state for selected sidebar item
Marco Martin [Fri, 13 May 2016 09:48:30 +0000 (11:48 +0200)]
use selected icon state for selected sidebar item

Since now the breeze icons can be recolored by kiconloader
with svg stylesheets, use this feature to recolor the
currently selected icon in the sidebar and in the
details view (not the icon view)
look wouldn't change if used with icon themes that
don't support this feature
This makes it look more in line with the breeze style

REVIEW:127877

9 years agoChange wording of Directory to Folder.
Frederik Schwarzer [Thu, 5 May 2016 11:43:02 +0000 (13:43 +0200)]
Change wording of Directory to Folder.

9 years agoGIT_SILENT Upgrade KDE Applications version to 16.04.1.
Albert Astals Cid [Wed, 27 Apr 2016 18:55:15 +0000 (20:55 +0200)]
GIT_SILENT Upgrade KDE Applications version to 16.04.1.

9 years agoSVN_SILENT made messages (after extraction)
l10n daemon script [Wed, 27 Apr 2016 10:40:01 +0000 (10:40 +0000)]
SVN_SILENT made messages (after extraction)

9 years agoSVN_SILENT made messages (after extraction)
l10n daemon script [Wed, 27 Apr 2016 07:15:37 +0000 (07:15 +0000)]
SVN_SILENT made messages (after extraction)

9 years agoMerge branch 'Applications/16.04'
Wolfgang Bauer [Tue, 26 Apr 2016 14:17:59 +0000 (16:17 +0200)]
Merge branch 'Applications/16.04'

9 years agoSpecify a fallback icon to QIcon::fromTheme()
Wolfgang Bauer [Tue, 26 Apr 2016 14:11:26 +0000 (16:11 +0200)]
Specify a fallback icon to QIcon::fromTheme()

The default fallback of QIcon::fromTheme() is QIcon(), i.e. a null icon.
Set the generic "unknown" icon as fallback to prevent missing icons for
filetypes that specify an icon name that doesn't exist.

This also gets rid of "QPixmap::scaled: Pixmap is a null pixmap"
warnings in that case.

BUG: 358958
BUG: 361034
FIXED-IN: 16.04.1
REVIEW: 127713

9 years agoSVN_SILENT made messages (after extraction)
l10n daemon script [Tue, 26 Apr 2016 13:01:05 +0000 (13:01 +0000)]
SVN_SILENT made messages (after extraction)

9 years agoSVN_SILENT made messages (after extraction)
l10n daemon script [Tue, 26 Apr 2016 08:46:29 +0000 (08:46 +0000)]
SVN_SILENT made messages (after extraction)

9 years agoFix exports and linkage, remove sources from tests which are already being linked.
Andrius da Costa Ribas [Fri, 22 Apr 2016 17:20:56 +0000 (14:20 -0300)]
Fix exports and linkage, remove sources from tests which are already being linked.
REVIEW: 127709

9 years agoGIT_SILENT Upgrade KDE Applications version to 16.04.0.
Albert Astals Cid [Wed, 13 Apr 2016 16:49:42 +0000 (18:49 +0200)]
GIT_SILENT Upgrade KDE Applications version to 16.04.0.

9 years agoSelection toggle: Use emblem-remove and emblem-added icons from Breeze
Emmanuel Pescosta [Sat, 9 Apr 2016 12:23:10 +0000 (14:23 +0200)]
Selection toggle: Use emblem-remove and emblem-added icons from Breeze

This raises the minimum KF5 version to 5.21.0

BUG: 357587
FIXED-IN: 16.08.0
REVIEW: 127400
CCMAIL: kainz.a@gmail.com

9 years agoMerge branch 'Applications/16.04'
Emmanuel Pescosta [Sat, 9 Apr 2016 12:19:33 +0000 (14:19 +0200)]
Merge branch 'Applications/16.04'

9 years agoFix crash caused by a out-of-bounds access in KItemListViewAccessible::cell
Emmanuel Pescosta [Wed, 16 Mar 2016 20:16:44 +0000 (21:16 +0100)]
Fix crash caused by a out-of-bounds access in KItemListViewAccessible::cell

BUG: 359738
FIXED-IN: 16.04.0
REVIEW: 127397

9 years agoGIT_SILENT Upgrade KDE Applications version to 16.03.90.
Albert Astals Cid [Wed, 6 Apr 2016 17:05:04 +0000 (19:05 +0200)]
GIT_SILENT Upgrade KDE Applications version to 16.03.90.

9 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Sun, 3 Apr 2016 09:50:58 +0000 (09:50 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours

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"

9 years agoSVN_SILENT made messages (.desktop file)
l10n daemon script [Fri, 25 Mar 2016 13:03:43 +0000 (13:03 +0000)]
SVN_SILENT made messages (.desktop file)

9 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Mon, 21 Mar 2016 10:58:51 +0000 (10:58 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours

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"

9 years agoGIT_SILENT Upgrade KDE Applications version to 16.07.70.
Albert Astals Cid [Sat, 19 Mar 2016 17:05:40 +0000 (18:05 +0100)]
GIT_SILENT Upgrade KDE Applications version to 16.07.70.

9 years agoGIT_SILENT Upgrade KDE Applications version to 16.03.80.
Albert Astals Cid [Sat, 19 Mar 2016 16:45:11 +0000 (17:45 +0100)]
GIT_SILENT Upgrade KDE Applications version to 16.03.80.

9 years ago[CLAZY] Fixed all level 1 and level 2 warnings with small exceptions
Artur Puzio [Wed, 16 Mar 2016 21:17:37 +0000 (22:17 +0100)]
[CLAZY] Fixed all level 1 and level 2 warnings with small exceptions

REVIEW: 126771

9 years agoMerge branch 'Applications/15.12'
Emmanuel Pescosta [Wed, 16 Mar 2016 20:01:52 +0000 (21:01 +0100)]
Merge branch 'Applications/15.12'

9 years agoAdd case sensitive sorting mode
Arnav Dhamija [Wed, 16 Mar 2016 19:53:52 +0000 (20:53 +0100)]
Add case sensitive sorting mode

Dolphin users can now choose between 3 different sorting modes:
* natural sorting
* case insensitive sorting
* case sensitive sorting

REVIEW: 126467
BUG: 148550
FIXED-IN: 16.04.0

9 years agoGIT_SILENT Upgrade KDE Applications version to 15.12.3.
Albert Astals Cid [Wed, 9 Mar 2016 20:38:21 +0000 (21:38 +0100)]
GIT_SILENT Upgrade KDE Applications version to 15.12.3.

9 years agoSVN_SILENT made messages (after extraction)
l10n daemon script [Mon, 7 Mar 2016 11:52:25 +0000 (11:52 +0000)]
SVN_SILENT made messages (after extraction)

9 years agoSVN_SILENT made messages (after extraction)
l10n daemon script [Mon, 7 Mar 2016 08:19:21 +0000 (08:19 +0000)]
SVN_SILENT made messages (after extraction)

9 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Fri, 19 Feb 2016 09:23:18 +0000 (09:23 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours

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"

9 years agoMake KFileMetaData optional again
Frank Reininghaus [Wed, 17 Feb 2016 21:10:54 +0000 (22:10 +0100)]
Make KFileMetaData optional again

In 15b20cd077c6743bb5ec947f5f3e014a4a32b110, I added KFileMetaData to
the required build dependencies in order to make the version increase
in 6c5930c229c8b96aae45e19ad4b7a1c57caa6ddc effective, and ensure that
the build fails at the CMake stage if the KFileMetaData version is too
old.

However, I had missed that KFileMetaData was already an optional
dependency. This commit makes it optional again and adjusts the
required version.

Thanks to Christoph Feck for notifying me about this issue and sorry
for the stupid mistake.

CCMAIL: cfeck@kde.org