]> cloud.milkyroute.net Git - dolphin.git/log
dolphin.git
7 years agoMerge branch 'Applications/18.04'
Kai Uwe Broulik [Wed, 6 Jun 2018 07:18:17 +0000 (09:18 +0200)]
Merge branch 'Applications/18.04'

7 years ago[KBalooRolesProvider] Support properties of type QStringList
Kai Uwe Broulik [Wed, 6 Jun 2018 07:17:07 +0000 (09:17 +0200)]
[KBalooRolesProvider] Support properties of type QStringList

QVariant::toString() unwraps a QStringList with a single string to a QString, however a list with multiple entries returns a null string.
Explicitly check for KFileMetaData property type and convert accordingly.

BUG: 395033
FIXED-IN: 18.04.3

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

7 years agoFix scrolling to renamed file when using the rename dialog
Elvis Angelaccio [Sun, 3 Jun 2018 16:28:23 +0000 (18:28 +0200)]
Fix scrolling to renamed file when using the rename dialog

Summary:
The `RenameDialog::slotResult()` slot is currently never called because
the dialog is deleted first, due to the usage of the `WA_DeleteOnClose`
attribute. This breaks the scroll-to-renamed-file feature when the
inline renaming is disabled.

Instead of deleting the dialog on close, we can use `deleteLater()` when
we are sure the dialog has actually finished its job, which is when the
KIO move job emits the `result` signal.

Test Plan:
- Disable inline renaming
- Rename a file so that it goes out of the view
- Check whether the view scrolls to the renamed file.

Reviewers: #dolphin, emateli

Subscribers: kfm-devel

Tags: #dolphin

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

7 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Tue, 5 Jun 2018 03:34:15 +0000 (05:34 +0200)]
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"

7 years agoMerge branch 'Applications/18.04'
Elvis Angelaccio [Sun, 3 Jun 2018 11:21:31 +0000 (13:21 +0200)]
Merge branch 'Applications/18.04'

7 years agoFix crash in PlacesItem::setUrl()
Elvis Angelaccio [Sun, 3 Jun 2018 11:08:51 +0000 (13:08 +0200)]
Fix crash in PlacesItem::setUrl()

Connections to lambda slots without context/receiver argument can lead
to crashes, because if the receiver is deleted Qt won't delete the connection
as it normally would when the receiver is specified.

This patch moves the slot from the lambda in PlacesItem (which is not a QObject)
to PlacesItemSignalHandler. This fixes the `dolphinmainwindowtest` crash
we currently have on master, and should also fix bug #394507 which has
the very same stacktrace.

BUG: 394507
FIXED-IN: 18.04.2

7 years agoDrop obsolete version checks
Elvis Angelaccio [Sun, 3 Jun 2018 09:32:19 +0000 (11:32 +0200)]
Drop obsolete version checks

We already depend on KF5 >= 5.43

7 years agoEnable test mode in dolphinmainwindowtest
Elvis Angelaccio [Sun, 3 Jun 2018 09:24:20 +0000 (11:24 +0200)]
Enable test mode in dolphinmainwindowtest

We don't want to use the user configuration files when creating a test
instance of DolphinMainWindow.

7 years agoAdd 'Sort By' and 'View Mode' into Dolphin file context menus
Nerdopolis Turfwalker [Sat, 2 Jun 2018 14:38:01 +0000 (16:38 +0200)]
Add 'Sort By' and 'View Mode' into Dolphin file context menus

Summary: This adds the 'Sort By' and 'View Mode'  options into the context menu of Dolphin within the file browser. I keep looking for these option (especially sort by) in the Context Menu, and keep forgetting to go to the menu. It also makes the order of "View Mode" and "Sort By" options consistent in the control menu

Test Plan: Made sure that the options appeared when right clicking on an empty space.

Reviewers: #dolphin, ngraham, elvisangelaccio

Reviewed By: #dolphin, ngraham, elvisangelaccio

Subscribers: question, markg, elvisangelaccio, mmustac, rkflx, ngraham, kfm-devel, #dolphin

Tags: #dolphin

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

7 years agoShow a warning when running as the root user
Nathaniel Graham [Sun, 6 May 2018 23:48:54 +0000 (17:48 -0600)]
Show a warning when running as the root user

Summary: Now that Dolphin can be run as the root user again, let's show a warning.

Test Plan:
When run with the root user account:
{F5882057}

Reviewers: #dolphin, markg, elvisangelaccio

Reviewed By: markg, elvisangelaccio

Subscribers: acooligan, anthonyfieroni, chinmoyr, kfm-devel, rikmills, emmanuelp, zzag, nicolasfella, elvisangelaccio, Fuchs, mmustac, markg

Tags: #dolphin

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

7 years agoGIT_SILENT Upgrade KDE Applications version to 18.04.2.
Christoph Feck [Fri, 1 Jun 2018 22:50:34 +0000 (00:50 +0200)]
GIT_SILENT Upgrade KDE Applications version to 18.04.2.

7 years agoFix the test that broke after recent changes to the default Places items
Nathaniel Graham [Mon, 23 Apr 2018 04:58:24 +0000 (22:58 -0600)]
Fix the test that broke after recent changes to the default Places items

Test Plan: `ctest`; all tests pass.

Reviewers: #dolphin, markg

Reviewed By: markg

Subscribers: renatoo, kfm-devel, elvisangelaccio, markg

Tags: #dolphin

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

7 years agoRe-allow running Dolphin as the root user (but still not using sudo)
Nathaniel Graham [Wed, 9 May 2018 23:18:08 +0000 (17:18 -0600)]
Re-allow running Dolphin as the root user (but still not using sudo)

Summary:
Prohibiting the use of Dolphin as the actual root user (not using `sudo` or `kdesu`) breaks legitimate use cases for using the root user. An example is Kali, a distro that logs in as the root user by default as a deliberate design choice.

In such an environment, there is no additional security vulnerability beyond what you're already potentially exposing yourself to. So, let's re-enable it.

BUG: 387974
FIXED-IN: 18.08.0

Test Plan:
- Log in as normal user and run `sudo dolphin`: you get an error message.
- Log in as normal user and run `kdesu dolphin`: you get an error message.
- Log in as the root user and run dolphin normally: it works.

Reviewers: markg, elvisangelaccio, #dolphin

Reviewed By: markg

Subscribers: chinmoyr, cfeck, elvisangelaccio, mmustac, Fuchs, markg, graesslin, nicolasfella, zzag, kfm-devel, emmanuelp

Tags: #dolphin

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

7 years agoProperly sort int roles
Kai Uwe Broulik [Tue, 22 May 2018 11:34:14 +0000 (13:34 +0200)]
Properly sort int roles

Use integer comparison for word count, line count, track, and release year.

BUG: 394355

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

7 years agopart: fix name of 'Select All' action
Elvis Angelaccio [Sun, 20 May 2018 21:32:24 +0000 (23:32 +0200)]
part: fix name of 'Select All' action

This should have been part of commit ec12391a1b.

7 years agoBring back 'New Window' action in viewport context menu
Elvis Angelaccio [Sun, 20 May 2018 21:24:43 +0000 (23:24 +0200)]
Bring back 'New Window' action in viewport context menu

This fixes a regression introduced by ec12391a1b.

We don't use anymore the custom `new_window` action, but we use the
standard `file_new` action instead.

7 years agocmake: add warning when baloo will be disabled
Elvis Angelaccio [Sun, 20 May 2018 16:49:42 +0000 (18:49 +0200)]
cmake: add warning when baloo will be disabled

Summary:
KFileMetaDataWidget is useless without nepomuk (which no one ships
anymore). Let's add at least a warning until we will get rid of
kdelibs4support (see T8720).

Test Plan: Uninstall baloo-widgets, build dolphin and check the cmake output.

Subscribers: kfm-devel

Tags: #dolphin

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

7 years agoMake target_link_libraries for kdeinit_dolphin PRIVATE
Alexander Miller [Fri, 18 May 2018 20:44:52 +0000 (22:44 +0200)]
Make target_link_libraries for kdeinit_dolphin PRIVATE

Summary:
There is no need to add all of kdeinit_dolphin's
dependencies (including the static archive) when
linking dolphin; kdemain is the only needed symbol.
Mark the link libraries PRIVATE to simplify the
link command for dolphin.

Reviewers: #dolphin, elvisangelaccio

Reviewed By: elvisangelaccio

Subscribers: asturmlechner, kfm-devel

Tags: #dolphin

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

7 years agoRemove main.cpp from dolphinstatic_SRCS
Alexander Miller [Fri, 18 May 2018 20:43:25 +0000 (22:43 +0200)]
Remove main.cpp from dolphinstatic_SRCS

Summary:
The file main.cpp is already in dolphin_SRCS and doesn't
belong in dolphinstatic_SRCS.

Normally the duplicate object is simply ignored, but with
link time optimization (LTO), linking dolphin can fail.
Apparently, the compiler tries to inline inline kdemain()
in this case. That is undesirable anyway and it ultimately
fails because the DBusInterface definition is not available:

.../ccHEv6cl.ltrans0.ltrans.o: In function `DBusInterface::~DBusInterface()':
<artificial>:(.text+0x2583): undefined reference to `vtable for DBusInterface'
.../ccHEv6cl.ltrans0.ltrans.o: In function `DBusInterface::~DBusInterface()':
<artificial>:(.text+0x5aa3): undefined reference to `vtable for DBusInterface'
.../ccHEv6cl.ltrans0.ltrans.o: In function `kdemain':
<artificial>:(.text+0x7686): undefined reference to `DBusInterface::DBusInterface()'
<artificial>:(.text+0x7b64): undefined reference to `vtable for DBusInterface'
collect2: error: ld returned 1 exit status

See also <https://bugs.gentoo.org/655710>.

Reviewers: #dolphin, elvisangelaccio

Reviewed By: elvisangelaccio

Subscribers: elvisangelaccio, asturmlechner, kfm-devel

Tags: #dolphin

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

7 years agoRevert "Reverting Baloo-widgets version change in cmakelists, since this breaks the...
Nathaniel Graham [Thu, 17 May 2018 22:32:58 +0000 (16:32 -0600)]
Revert "Reverting Baloo-widgets version change in cmakelists, since this breaks the information panel"
Sorry, this was actually correct, and the rest of us were using old baloo-widgets.

Anyone experiencing issues with Information Panel content in Dolphin master should
Compile and deploy baloo-widgets from git master too.

CCMAIL: elvis.angelaccio@kde.org
CCMAIL: kde@privat.broulik.de

This reverts commit 58edb20a999e335fcefec013806be0a778f7960f.

7 years agoReverting Baloo-widgets version change in cmakelists, since this breaks the informati...
Nathaniel Graham [Thu, 17 May 2018 14:32:20 +0000 (08:32 -0600)]
Reverting Baloo-widgets version change in cmakelists, since this breaks the information panel
Let's find another way to do this.

CCMAIL: elvis.angelaccio@kde.org
CCMAIL: kde@privat.broulik.de

7 years agoRe-add "Open With" items to context menu for files in search view
Nathaniel Graham [Mon, 14 May 2018 22:51:11 +0000 (16:51 -0600)]
Re-add "Open With" items to context menu for files in search view

7 years agoRemove duplicated entry
Antonio Larrosa [Sun, 13 May 2018 09:08:13 +0000 (11:08 +0200)]
Remove duplicated entry

Summary:
This gave a warning when running the script, and the value was
overwritten a few lines below, so just remove the unused value.

Reviewers: #dolphin, elvisangelaccio

Reviewed By: #dolphin, elvisangelaccio

Subscribers: kfm-devel

Tags: #dolphin

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

7 years agoMerge branch 'Applications/18.04'
Elvis Angelaccio [Sun, 13 May 2018 11:28:00 +0000 (13:28 +0200)]
Merge branch 'Applications/18.04'

7 years agoAdd missing i18n call
Melanie Genz [Sun, 13 May 2018 11:23:58 +0000 (13:23 +0200)]
Add missing i18n call

The string was already part of dolphin but was not exposed for
translation.

BUG: 394194

7 years agoFix broken build without baloo-widgets master
Elvis Angelaccio [Sat, 12 May 2018 18:52:15 +0000 (20:52 +0200)]
Fix broken build without baloo-widgets master

D11245 introduced a dependency on baloo-widgets master, but
baloo-widgets is only an optional dependency.

7 years agoGIT_SILENT made messages (after extraction)
l10n daemon script [Fri, 11 May 2018 04:27:59 +0000 (06:27 +0200)]
GIT_SILENT made messages (after extraction)

7 years agoGIT_SILENT made messages (after extraction)
l10n daemon script [Fri, 11 May 2018 01:37:42 +0000 (03:37 +0200)]
GIT_SILENT made messages (after extraction)

7 years agoDisable all the 'create new' items when in the Trash
Nathaniel Graham [Sun, 6 May 2018 20:06:16 +0000 (14:06 -0600)]
Disable all the 'create new' items when in the Trash

Summary:
Disable all the items in the 'create new' menu when the active view is in the trash,
because they're not useful and don't even work. We don't disable the entire menu
because it's useful to be able to see what specific things are disabled.

This can be reverted once T8234 is implemented.

BUG: 332463
FIXED-IN: 18.08.0

Test Plan:
- Enter the trash with and without a split view; the 'create new' menu items are all disabled
- Be looking at something other than the trash with and without a split view; the 'create new' menu items are all enabled
- Toggle between split views (one in the trash, one elsewhere); menu is correct for both cases

Out of the trash:
{F5837042}

In the trash:
{F5837043}

Reviewers: #dolphin, broulik, elvisangelaccio, markg

Reviewed By: #dolphin, elvisangelaccio, markg

Subscribers: markg, elvisangelaccio

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

7 years agoGIT_SILENT Upgrade KDE Applications version to 18.04.1.
Christoph Feck [Wed, 2 May 2018 12:16:23 +0000 (14:16 +0200)]
GIT_SILENT Upgrade KDE Applications version to 18.04.1.

7 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Mon, 30 Apr 2018 05:09:04 +0000 (07:09 +0200)]
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"

7 years agoGIT_SILENT made messages (after extraction)
l10n daemon script [Mon, 30 Apr 2018 04:08:03 +0000 (06:08 +0200)]
GIT_SILENT made messages (after extraction)

7 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Mon, 30 Apr 2018 03:25:52 +0000 (05:25 +0200)]
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"

7 years agoGIT_SILENT made messages (after extraction)
l10n daemon script [Mon, 30 Apr 2018 01:29:21 +0000 (03:29 +0200)]
GIT_SILENT made messages (after extraction)

7 years agoMerge branch 'Applications/18.04'
Antonio Rojas [Sun, 29 Apr 2018 17:41:29 +0000 (19:41 +0200)]
Merge branch 'Applications/18.04'

7 years agoDon't filter out duplicated entries from places panel
Antonio Rojas [Sun, 29 Apr 2018 17:39:15 +0000 (19:39 +0200)]
Don't filter out duplicated entries from places panel

This can lead to crashes and is inconsistent with the KIO file picker dialog, which shows duplicated entries.
BUG: 393528

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

7 years agoUse QGuiApplication::applicationDisplayName()
Elvis Angelaccio [Sun, 29 Apr 2018 15:13:18 +0000 (17:13 +0200)]
Use QGuiApplication::applicationDisplayName()

Same result with less code.

7 years agoBundle dolphinui.rc also in dolphinmainwindowtest
Elvis Angelaccio [Sun, 29 Apr 2018 15:07:18 +0000 (17:07 +0200)]
Bundle dolphinui.rc also in dolphinmainwindowtest

Otherwise the test executable will not be able to find the .rc file
while creating a DolphinMainWindow instance.

We also need to force the component name to `dolphin`, otherwise kxmlgui
will default to the name of the binary (which in this case would be
dolphinmainwindowtest rather than dolphin).

7 years agoDolphinTabPage: deactivate secondary view after closing split view
Elvis Angelaccio [Wed, 25 Apr 2018 11:42:18 +0000 (13:42 +0200)]
DolphinTabPage: deactivate secondary view after closing split view

We deactivate the previously active view container whenever we change the active
split view, but we never do the same when we close the split view.

Long term we should probably even delete the secondary view after
closing the split view, because it will never be used again and the
pointer will be overwritten the next time the user opens the split view.

7 years agoMerge branch 'Applications/18.04'
Elvis Angelaccio [Wed, 25 Apr 2018 10:50:12 +0000 (12:50 +0200)]
Merge branch 'Applications/18.04'

7 years agoUpdate window title after closing split view
Robert Jennings [Wed, 25 Apr 2018 10:35:29 +0000 (12:35 +0200)]
Update window title after closing split view

Summary:

In dolphintabpage.cpp:

Through the connections set up in createViewContainer(), m_primaryViewContainer->setActive(true), at line 98,
ends up triggering slotViewActivated().

Because m_primaryViewActive is true, oldActiveView is not set to the view needed in this particular situation.
Both oldActiveView and newActiveView end up pointing to the same view and the connections are not set up.

BUG: 385111
FIXED-IN: 18.04.1

Test Plan:
1. Open split view
2. Make left panel active
3. Close split view
4. Navigate to various directories

Window title now updates to show current directory

Also tried with multiple tabs/combinations

Reviewers: #dolphin, ngraham

Reviewed By: #dolphin, ngraham

Subscribers: elvisangelaccio, ngraham

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

7 years agoAdd failing test case for bug #385111
Elvis Angelaccio [Wed, 25 Apr 2018 10:34:02 +0000 (12:34 +0200)]
Add failing test case for bug #385111

Will be fixed by D12446.

CCBUG: 385111

7 years agoMove "Open" actions to the top of the context menu for files
Nathaniel Graham [Mon, 2 Apr 2018 14:05:47 +0000 (08:05 -0600)]
Move "Open" actions to the top of the context menu for files

Summary:
This patch moves the "Open", "Open With", and "Open in" items to the top of the context menu to reap the following benefits:
- Move the "Open" and "Open With" items closer to the top since they're commonly used items, and right now they're buried in the middle of the menu
- Group related functionality
- Consistency with other common platforms (macOS Finder and Windows Explorer both have these items at the top of the context menu)

For folders, the "Open With" entries are moved higher, but not all the way to the top, since the "open in New tab/folder" entries are more useful.

Test Plan:
Tested all menu items in the context menu for files, folders, and links; all still work.

Context menu for single file:
{F5806809}

Context menu for multiple files:
{F5806810}

Context menu for single folder:
{F5806811}

Context menu for multiple folders:
{F5806812}

Context menu for symlink to folder:
{F5806815}

Reviewers: #dolphin, #vdg, elvisangelaccio, abetts

Reviewed By: #dolphin, #vdg, elvisangelaccio, abetts

Subscribers: markg, abetts, elvisangelaccio

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

7 years agoMerge branch 'Applications/18.04'
Nathaniel Graham [Fri, 20 Apr 2018 01:01:01 +0000 (19:01 -0600)]
Merge branch 'Applications/18.04'

7 years agoFix inconsistent preview spacing and icon wiggly-ness when toggling previews in Icon...
Nathaniel Graham [Thu, 19 Apr 2018 19:03:35 +0000 (13:03 -0600)]
Fix inconsistent preview spacing and icon wiggly-ness when toggling previews in Icon mode

Summary:
Dolphin had some code to change the grid spacing when previews were toggled, in an attempt to optimize the view for 3:2 landscape photos. This was problematic for many reasons:
- Conceptually, it was a bad idea to optimize the view for one specific use case. Previews are useful for more than just landscape photos, and this optimization would be inapplicable to any other set of files.
- Folders entirely full of images commonly have some portrait-orientation images included too, so even if the goal were appropriate, it was a bad idea to optimize for only having landscape images.
- For small sizes and medium icons (< 96px), the preview grid size was virtually identical to the non-preview grid size, so it had essentially no effect, and only made the icons wiggle strangely when previews were toggled.
- For large large sizes (>= 96px), all it did was unnecessarily increase the horizontal grid spacing, actually //reducing// usability for browsing through folders of images.

Therefore, let's just remove this code.

BUG: 393306
FIXED-IN: 18.04.1

Test Plan:
- Go to {nav Settings > View Modes > Icons} and make the icon size and preview size identical for 64px
- Toggle previews on and off
- Change both sizes to 112x
- Toggle previews on and off

In both cases, the grid spacing does not change and the icons do not wiggle strangely. The only visual change is that previews turn on or off.

Dolphin still works fine for viewing  3:2 landscape photos. 80px icons:
{F5813467}

192px icons:
{F5813465}

In fact, it's vastly //improved// for the >=96px use case since the grid spacing is no longer excessively wide

Reviewers: #dolphin, hein

Reviewed By: hein

Subscribers: broulik

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

7 years agoConvert hard coded shortcuts to standard keys
Roman Inflianskas [Sat, 10 Mar 2018 19:50:29 +0000 (22:50 +0300)]
Convert hard coded shortcuts to standard keys

Test Plan: Check all changed shortcuts on all platforms.

Reviewers: #dolphin, rizzitello, elvisangelaccio

Reviewed By: #dolphin, rizzitello, elvisangelaccio

Subscribers: anthonyfieroni, ngraham, elvisangelaccio, rizzitello, #dolphin

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

7 years agoMerge branch 'Applications/18.04'
Antonio Rojas [Thu, 12 Apr 2018 20:50:55 +0000 (22:50 +0200)]
Merge branch 'Applications/18.04'

7 years agoFix untranslated places panel entries
Antonio Rojas [Thu, 12 Apr 2018 20:49:05 +0000 (22:49 +0200)]
Fix untranslated places panel entries

Load the places panel entries strings from the kio5 catalog, where they live now

BUG: 392822
Differential Revision: https://phabricator.kde.org/D12119

7 years agoinfopanel: Add choice of date display formats
Michael Heidelbach [Thu, 15 Mar 2018 14:38:14 +0000 (15:38 +0100)]
infopanel: Add choice of date display formats

Summary:
Let user choose date display format via checkbox in context menu

[[ https://phabricator.kde.org/file/info/PHID-FILE-5xjr7tvypj3jaczjtzrz | Example ]]

Depends on D11242

FEATURE: 392352

Test Plan: visual inspection

Reviewers: #dolphin, markg, ngraham

Reviewed By: markg, ngraham

Subscribers: broulik, markg, ngraham

Tags: #dolphin, #kde_applications

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

7 years agoSelect and scroll to the file for "Open path" and "Open Path in New Window" operations
Nathaniel Graham [Mon, 26 Mar 2018 00:06:46 +0000 (18:06 -0600)]
Select and scroll to the file for "Open path" and "Open Path in New Window" operations

Summary:
After performing a search and using  the "Open path" or "Open Path in New Window"  present in the context menu, make sure the file is selected and visible in the resulting view.

Cannot implement the same fix for "Open Path in New Tab" because of a limitation in how the contents of inactive tabs are rendered; will need to fix that separately in another patch.

BUG: 377510

Test Plan: Search for an item, and choose {nav Open Path} or {nav Open path in new window}

Reviewers: #dolphin, elvisangelaccio

Reviewed By: #dolphin, elvisangelaccio

Subscribers: elvisangelaccio, broulik

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

7 years agoAdd more tab access functions
Nathaniel Graham [Sun, 8 Apr 2018 04:35:38 +0000 (22:35 -0600)]
Add more tab access functions

Summary: These new functions to access the next and previous tabs are not used by anything yet, but it is envisioned that they would be useful for a variety of purposes--such as the "open path in new tab" feature from D11703

Test Plan: Dolphin still compiled and runs; new code is not actually used anywhere

Reviewers: #dolphin, elvisangelaccio

Reviewed By: #dolphin, elvisangelaccio

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

7 years agoGIT_SILENT Upgrade KDE Applications version to 18.04.0.
Christoph Feck [Mon, 9 Apr 2018 20:40:50 +0000 (22:40 +0200)]
GIT_SILENT Upgrade KDE Applications version to 18.04.0.

7 years agouse the same bound check as setCurrentItem when setting m_currentItem manually
Fabian Kosmale [Fri, 6 Apr 2018 15:57:38 +0000 (17:57 +0200)]
use the same bound check as setCurrentItem when setting m_currentItem manually

Summary:
This patch basically adds the check that would normally be done to the
itemInserted method, which seems to be good idea in general.
However, the fact that this is needed there might be an indicator of a logic bug
in the function – though, as I'm not familiar with the code base I cannot judge
this.

Test Plan:
Without this patch, dolphin when started from a terminal prints the following
warning (number can be different):
qt.accessibility.core: Cannot create accessible child interface for object:  PlacesView(0x563e863e35c0)  index:  10
After applying the patch, the warning doesn't appear anymore. Dolphin still
works still as it did before.

Reviewers: elvisangelaccio, #dolphin

Reviewed By: elvisangelaccio

Subscribers: #dolphin

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

7 years agoMerge branch 'Applications/18.04'
Elvis Angelaccio [Thu, 5 Apr 2018 21:29:29 +0000 (23:29 +0200)]
Merge branch 'Applications/18.04'

7 years agoImprove QDialogButtonBox::Yes override text
Elvis Angelaccio [Mon, 2 Apr 2018 21:06:41 +0000 (23:06 +0200)]
Improve QDialogButtonBox::Yes override text

Summary:
We are asking the users whether they are sure they want to quit.

But the "Quit" button can be ambiguous (am I quitting dolphin or just
this dialog?). If we use a "Quit Dolphin" button instead, that clearly
shows what will happen after triggering the action.

Test Plan: Close dolphin while multiple tabs are open.

Reviewers: #dolphin

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

7 years ago[RenameDialog] Fix crash when renaming single items
Elvis Angelaccio [Thu, 5 Apr 2018 20:33:34 +0000 (22:33 +0200)]
[RenameDialog] Fix crash when renaming single items

Summary:
`m_spinBox` is initialized only when renaming multiple items.

This commit restores the single-item rename logic which was wrongly
removed by commit c5eb4e31161ccf422.

BUG: 392743
FIXED-IN: 18.03.90

Test Plan: Disable inline renaming and try to rename single or multiple items (and also to undo the jobs).

Subscribers: #dolphin

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

7 years agoShow folder previews for items that have a Places Panel entry
Nathaniel Graham [Mon, 2 Apr 2018 22:52:08 +0000 (16:52 -0600)]
Show folder previews for items that have a Places Panel entry

Summary:
informationpanelcontent.cpp currently has an explicit check for whether or not a URL has a Places panel entry, and if it does, no folder preview is generated. It's not clear why this is done, but it was reported as a bug: https://bugs.kde.org/show_bug.cgi?id=392621. Removing the logic fixes the bug.

BUG: 392621
FIXED-IN: 18.08.0

Test Plan:
Before:
{F5782793}

After:
{F5782794}

Detailed test procedure:
- Open the Information Panel
- Turn on previews
- Put some pictures in ~/Pictures
- Hover over it and see that the Information Panel shows a preview of its contents
- Add ~/Pictures to the Places panel
- Hover over it again and see that previews are no longer displayed
- Apply the patch and restart Dolphin
- Hover over it once more and see that there are now previews, yay!

Reviewers: #dolphin, markg, elvisangelaccio

Reviewed By: markg, elvisangelaccio

Subscribers: markg, broulik

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

7 years agoMerge branch 'Applications/18.04'
Antonio Rojas [Tue, 3 Apr 2018 20:50:29 +0000 (22:50 +0200)]
Merge branch 'Applications/18.04'

7 years agoInitialize m_konsolePartMissingMessage
Antonio Rojas [Tue, 3 Apr 2018 20:48:25 +0000 (22:48 +0200)]
Initialize m_konsolePartMissingMessage

Otherwise it just crashes when trying to open the terminal panel

BUG: 392660
Differential Revision: https://phabricator.kde.org/D11904

7 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Tue, 3 Apr 2018 05:12:29 +0000 (07:12 +0200)]
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"

7 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Tue, 3 Apr 2018 03:25:54 +0000 (05:25 +0200)]
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"

7 years agoGIT_SILENT Upgrade KDE Applications version to 18.03.90.
Christoph Feck [Mon, 2 Apr 2018 19:18:14 +0000 (21:18 +0200)]
GIT_SILENT Upgrade KDE Applications version to 18.03.90.

7 years agoSplit Image Size into Width/Height
Julian Schraner [Sun, 1 Apr 2018 17:26:49 +0000 (11:26 -0600)]
Split Image Size into Width/Height

Summary:
This patch splits the single property "Image Size" into "Width" and "Height", providing more fine-tuned control for power users.

FEATURE: 374559

Test Plan:
- Sorting works correctly
- No real change, only exposed differently

Reviewers: #dolphin, elvisangelaccio, ngraham

Reviewed By: #dolphin, elvisangelaccio, ngraham

Subscribers: ngraham, elvisangelaccio

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

7 years agoFix detaching
Elvis Angelaccio [Sun, 1 Apr 2018 10:23:08 +0000 (12:23 +0200)]
Fix detaching

7 years agoUse QHash rather than QMap
Elvis Angelaccio [Sun, 1 Apr 2018 10:14:34 +0000 (12:14 +0200)]
Use QHash rather than QMap

As recommended by the clazy qmap-with-pointer-key check.

7 years agoUse rightRef() instead of right()
Elvis Angelaccio [Sun, 1 Apr 2018 10:08:23 +0000 (12:08 +0200)]
Use rightRef() instead of right()

As recommended by the clazy qstring-ref check.

7 years agoFix minor typos
Yuri Chornoivan [Fri, 30 Mar 2018 05:19:37 +0000 (08:19 +0300)]
Fix minor typos

7 years agoFix alignment of icons in Places panel and Compact view mode
Scott Harvey [Wed, 28 Mar 2018 13:46:12 +0000 (07:46 -0600)]
Fix alignment of icons in Places panel and Compact view mode

Summary:
Adjust calculation of icon pixmap Y value; now based off center of text label bounding rectangle. Previously, icons appeared top-aligned when text size was larger than icon size.

Centering is done by obtaining the center point of the text frame (`m_textRect.center().y()`) and setting the top `Y` point of the icon to one-half of the scaled icon height (`m_scaled_PixmapSize.height()`)  Division is done by `2.0`, to ensure calculations are done with floating-point math, in keeping with `QPointF`, which returns floating-point values.

Also includes an adjustment named `midlineShift` (contributed by @zzag), which takes into account the font's midline in respect to the center of the text frame. Certain fonts (i.e. Noto Sans) can have a slightly offset midline, resulting in imperfect alignment of the icon. This small adjustment resolves that potential issue.

See before and after screenshots.
{F5764918}
Before, showing misalignment (with and without debugging wireframes)

{F5764920}
After, showing correction

BUG: 390771

Test Plan:
-- Compile Dolphin with patch
-- Increase system font size by several points (i.e. 15pt)
-- Check that Places panel icons remain centered with the text label
-- Select Compact View mode
-- Adjust icon size slider to minimum
-- Ensure that icons also remain centered in file listing
-- Check several combinations of icon size & font size to ensure centering is consistent

Reviewers: #dolphin, ngraham, cfeck, elvisangelaccio

Reviewed By: #dolphin, ngraham, elvisangelaccio

Subscribers: zzag, elvisangelaccio, #dolphin

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

7 years agoMerge branch 'Applications/18.04'
Elvis Angelaccio [Thu, 29 Mar 2018 20:33:37 +0000 (22:33 +0200)]
Merge branch 'Applications/18.04'

7 years agoFix enum-compare-switch clang warnings
Elvis Angelaccio [Thu, 29 Mar 2018 20:29:56 +0000 (22:29 +0200)]
Fix enum-compare-switch clang warnings

We were comparing a value of type `KStandardItemListView::ItemLayout`
with values of type `KStandardItemListWidget::Layout`.

7 years agoUpdate dolphin docbook to 18.04
Burkhard Lück [Thu, 29 Mar 2018 16:47:28 +0000 (18:47 +0200)]
Update dolphin docbook to 18.04

proofread + update
bump date + releaseinfo
add missing option + new shortcuts

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

7 years ago[KItemListView] Check if KItemListStyleOption actually changed before emitting a...
Kai Uwe Broulik [Thu, 29 Mar 2018 07:21:17 +0000 (09:21 +0200)]
[KItemListView] Check if KItemListStyleOption actually changed before emitting a change

This avoids work being done when it doesn't need to be.
For instance, the preview generator waits for everything to have settled using a 200ms timer before generating a preview.
This timer fired also in response to onStyleOptionChanged and needlessly delayed preview generation when navigating between folders
despite the style option (e.g. icon size, view mode) not having changed.

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

7 years ago[DolphinContextMenu] Fix excluding ourself from Open With menu
Kai Uwe Broulik [Wed, 21 Mar 2018 14:53:59 +0000 (15:53 +0100)]
[DolphinContextMenu] Fix excluding ourself from Open With menu

The desktop file name changed to org.kde.dolphin a long time ago. To avoid this breaking again, just use qApp->desktopFileName()

BUG: 391997

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

7 years agoMerge branch 'Applications/18.04'
Nathaniel Graham [Thu, 22 Mar 2018 12:52:46 +0000 (06:52 -0600)]
Merge branch 'Applications/18.04'

7 years agoFix missing entries in context menu for links
Nathaniel Graham [Wed, 21 Mar 2018 23:00:17 +0000 (17:00 -0600)]
Fix missing entries in context menu for links

Summary: https://cgit.kde.org/dolphin.git/commit/?id=86f4fcb8cd574f6d886627fc5e01c9edfc84e977 introduced a regression: the context menu for links no longer shows various items that were gated behind being a directory. However, a link can be both a link and a directory, from KIO's perspective. This patch resolves the issue.

Test Plan:
- Context menus for files, folders, and file links are unchanged.
- The missing context menu items for folder links have returned: {F5761809}

I should have tested that patch better, and for that I apologize and offer to fix this regression here. I will endeavor to up my reviewing game.

Reviewers: rominf, michaelh, #dolphin, rkflx

Reviewed By: rominf, rkflx

Subscribers: rkflx

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

7 years ago[DolphinContextMenu] Fix excluding ourself from Open With menu
Kai Uwe Broulik [Wed, 21 Mar 2018 14:53:59 +0000 (15:53 +0100)]
[DolphinContextMenu] Fix excluding ourself from Open With menu

The desktop file name changed to org.kde.dolphin a long time ago. To avoid this breaking again, just use qApp->desktopFileName()

BUG: 391997

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

7 years agoMerge branch 'Applications/18.04'
David Faure [Wed, 21 Mar 2018 14:34:36 +0000 (15:34 +0100)]
Merge branch 'Applications/18.04'

7 years agoFix compilation with -DQT_NO_URL_CAST_FROM_STRING
David Faure [Wed, 21 Mar 2018 14:30:51 +0000 (15:30 +0100)]
Fix compilation with -DQT_NO_URL_CAST_FROM_STRING

7 years agoGIT_SILENT Upgrade KDE Applications version to 18.07.70.
Albert Astals Cid [Mon, 19 Mar 2018 22:50:00 +0000 (23:50 +0100)]
GIT_SILENT Upgrade KDE Applications version to 18.07.70.

7 years agoGIT_SILENT Upgrade KDE Applications version to 18.03.80.
Albert Astals Cid [Mon, 19 Mar 2018 22:35:33 +0000 (23:35 +0100)]
GIT_SILENT Upgrade KDE Applications version to 18.03.80.

7 years agoIntroduce singleton for KFilePlacesModel
Kai Uwe Broulik [Mon, 19 Mar 2018 08:57:24 +0000 (09:57 +0100)]
Introduce singleton for KFilePlacesModel

There are various places where Dolphin created a new KFilePlacesModel which would then query all storage devices and do other expensive work.

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

7 years agoAdd "Show Target" into symlink context menu and file menu
Roman Inflianskas [Sun, 18 Mar 2018 10:55:24 +0000 (13:55 +0300)]
Add "Show Target" into symlink context menu and file menu

Summary:
Add "Show Target" into symlink context menu and file menu

FEATURE: 215069

Reviewers: ngraham, elvisangelaccio

Reviewed By: ngraham, elvisangelaccio

Subscribers: rkflx, ngraham, elvisangelaccio, markg, #dolphin

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

7 years agoShow "Empty Trash" button inside trash directory
Roman Inflianskas [Sun, 11 Mar 2018 17:21:24 +0000 (20:21 +0300)]
Show "Empty Trash" button inside trash directory

Summary:
Show "Empty Trash" button inside trash directory.

FEATURE: 163306

Test Plan: {F5734949}

Reviewers: ngraham, rkflx, markg, elvisangelaccio

Reviewed By: ngraham, markg, elvisangelaccio

Subscribers: markg, emateli, broulik, elvisangelaccio, rkflx, mmustac, ngraham, #dolphin

Tags: #dolphin

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

7 years agoAdd "Open symlink destination folder" into symlink's context menu
Roman Inflianskas [Sat, 3 Mar 2018 13:36:44 +0000 (16:36 +0300)]
Add "Open symlink destination folder" into symlink's context menu

Summary:
This is not complete. I'm wondering about "Open symlink destination folder in new tab/window".

Feature wants also "Copy symlink destination". I dislike this, because then it's good to have "Cut symlink destination" and that's too much.

FEATURE: 215069

Reviewers: #dolphin, ngraham

Reviewed By: #dolphin, ngraham

Subscribers: rkflx, ngraham, elvisangelaccio, markg, #dolphin

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

7 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Tue, 13 Mar 2018 04:14:09 +0000 (05:14 +0100)]
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"

7 years agoShow a message if Konsole part is not installed
Roman Inflianskas [Wed, 7 Mar 2018 11:35:17 +0000 (14:35 +0300)]
Show a message if Konsole part is not installed

Summary:
Show a message if Konsole part is not installed

BUG: 371822
FIXED-IN: 18.04.0

{F5749731}

Reviewers: ngraham, progwolff, elvisangelaccio

Reviewed By: ngraham, progwolff, elvisangelaccio

Subscribers: rkflx, ngraham, elvisangelaccio, broulik, progwolff, #dolphin

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

7 years agoUpdate trash icon after restore operation
Roman Inflianskas [Sat, 10 Mar 2018 19:29:26 +0000 (22:29 +0300)]
Update trash icon after restore operation

Summary:
After restoring all the files from the trash, the trash icon remain 'full'. This patch fixes this.

BUG: 252483

Reviewers: elvisangelaccio

Reviewed By: elvisangelaccio

Subscribers: elvisangelaccio, #dolphin

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

7 years agoRemoved unused variables spotted by clazy
Elvis Angelaccio [Sun, 11 Mar 2018 16:14:07 +0000 (17:14 +0100)]
Removed unused variables spotted by clazy

7 years agoAlign minimum ECM and KF5 versions
Elvis Angelaccio [Sun, 11 Mar 2018 16:09:11 +0000 (17:09 +0100)]
Align minimum ECM and KF5 versions

It doesn't make sense to require 1.6.0 which is years old.

7 years agoAdd missing this parameter
Elvis Angelaccio [Sun, 11 Mar 2018 16:07:20 +0000 (17:07 +0100)]
Add missing this parameter

Forgot to mention it while reviewing D11012.

7 years agoAdd Trash (empty, isEmpty, emptinessChanged)
Roman Inflianskas [Sat, 3 Mar 2018 16:44:56 +0000 (19:44 +0300)]
Add Trash (empty, isEmpty, emptinessChanged)

Summary: Add `Trash` class to handle all trash operations.

Reviewers: elvisangelaccio, markg, ngraham

Reviewed By: elvisangelaccio, markg, ngraham

Subscribers: ngraham, markg, rkflx, elvisangelaccio, #dolphin

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

7 years agoFix some compile warnings
Roman Inflianskas [Thu, 8 Mar 2018 09:21:13 +0000 (12:21 +0300)]
Fix some compile warnings

Reviewers: markg, elvisangelaccio

Reviewed By: markg, elvisangelaccio

Subscribers: chehrlic, rkflx, elvisangelaccio, #dolphin

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

7 years agoFix build without Baloo
Kai Uwe Broulik [Wed, 7 Mar 2018 07:55:04 +0000 (08:55 +0100)]
Fix build without Baloo

That include IS used

7 years agoRevert "Fix some compile warnings"
Elvis Angelaccio [Mon, 5 Mar 2018 20:56:15 +0000 (21:56 +0100)]
Revert "Fix some compile warnings"

This reverts commit 533f050855a50212bba7be57a1590f9ce743e26d.

D10995 has not been approved.

7 years agoRemove unused #include
Roman Inflianskas [Sun, 4 Mar 2018 13:38:16 +0000 (16:38 +0300)]
Remove unused #include

Summary: I used CLion inspection to hunt all unused #include

Reviewers: #dolphin, elvisangelaccio, markg

Reviewed By: #dolphin, elvisangelaccio, markg

Subscribers: bcooksley, markg, elvisangelaccio, #dolphin

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

7 years agoFix some compile warnings
Roman Inflianskas [Sat, 3 Mar 2018 17:39:43 +0000 (20:39 +0300)]
Fix some compile warnings

Reviewers: #dolphin, markg

Reviewed By: markg

Subscribers: elvisangelaccio, #dolphin

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

7 years agoRemove unused #include
Roman Inflianskas [Sat, 3 Mar 2018 07:48:57 +0000 (10:48 +0300)]
Remove unused #include

Summary: I used CLion inspection to hunt all unused #include

Reviewers: #dolphin, elvisangelaccio, markg

Reviewed By: #dolphin, elvisangelaccio, markg

Subscribers: markg, elvisangelaccio, #dolphin

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

7 years agoModernize the syntax of shortcuts
Roman Inflianskas [Sat, 3 Mar 2018 08:46:14 +0000 (11:46 +0300)]
Modernize the syntax of shortcuts

Reviewers: #dolphin, markg

Reviewed By: markg

Subscribers: markg, elvisangelaccio, #dolphin

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

7 years agoAdd an option to confirm trash emptying into settings
Roman Inflianskas [Fri, 2 Mar 2018 11:41:36 +0000 (14:41 +0300)]
Add an option to confirm trash emptying into settings

Summary:
Add an option to confirm trash emptying into settings.

BUG: 340572

Reviewers: #dolphin, ngraham, markg

Reviewed By: #dolphin, ngraham, markg

Subscribers: markg, ngraham, rkflx, #dolphin

Tags: #dolphin

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

7 years agoAdd default shortcut "/" for opening filter panel
Roman Inflianskas [Fri, 2 Mar 2018 07:52:47 +0000 (10:52 +0300)]
Add default shortcut "/" for opening filter panel

Summary:
Add default shortcut "/" for opening filter panel.

FEATURE: 156381

Reviewers: #dolphin, ngraham

Reviewed By: #dolphin, ngraham

Subscribers: ngraham, #dolphin

Tags: #dolphin

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