]> cloud.milkyroute.net Git - dolphin.git/log
dolphin.git
5 years agoRevert "D-Bus activation systemd service"
Elvis Angelaccio [Wed, 4 Nov 2020 00:12:48 +0000 (01:12 +0100)]
Revert "D-Bus activation systemd service"

This reverts commit eb441b11885fc44dcba1bef693b95819657ed753.

We'll push it again after we branch 20.12. We don't want to push a too
recent version of KF5 on distros.

!27

5 years agoCompute text width taking into account the zoom level
Méven Car [Tue, 3 Nov 2020 10:03:45 +0000 (10:03 +0000)]
Compute text width taking into account the zoom level

This makes the icon view less crowded.

5 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Tue, 3 Nov 2020 05:20:03 +0000 (06:20 +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"

5 years agoFolderPanel: prevents scanning directory tree recursively
Méven Car [Sat, 31 Oct 2020 11:40:57 +0000 (12:40 +0100)]
FolderPanel: prevents scanning directory tree recursively

KFileItemListView contents are periodically scanned by KFileItemModelRolesUpdater.
It uses then KDirectoryContentsCounter to scan directories to determine their size possibly recursively.

Introduce a scanDirectories setting to disable directory scanning by KFileItemModelRolesUpdater.

BUG: 426617
FIXED-IN: 20.08.3

5 years agoGIT_SILENT made messages (after extraction)
l10n daemon script [Tue, 3 Nov 2020 01:35:33 +0000 (02:35 +0100)]
GIT_SILENT made messages (after extraction)

5 years agoFix PlacesItemModelTest
Elvis Angelaccio [Mon, 2 Nov 2020 00:09:55 +0000 (01:09 +0100)]
Fix PlacesItemModelTest

Since 3dfa0c1c2f87bf1e6bc9 in kio timeline:// is no longer in the places
model.

5 years agoservicemenuinstaller: use Q_GLOBAL_STATIC
Elvis Angelaccio [Sun, 1 Nov 2020 23:03:20 +0000 (00:03 +0100)]
servicemenuinstaller: use Q_GLOBAL_STATIC

Global statics should be avoided when possible.
This fixes a clazy warning.

5 years agoPort away from deprecated QWheelEvent::delta()
Elvis Angelaccio [Sun, 1 Nov 2020 22:42:46 +0000 (23:42 +0100)]
Port away from deprecated QWheelEvent::delta()

QWheelEvent::angleDelta() returns a QPoint instead of int, so we need to
use its y() value to get the number of steps.

5 years agoUse QString::rightRef() as suggested by clazy
Elvis Angelaccio [Sun, 1 Nov 2020 22:31:58 +0000 (23:31 +0100)]
Use QString::rightRef() as suggested by clazy

5 years agomake sure we use valid icons
Martin T. H. Sandsmark [Fri, 25 Sep 2020 16:40:20 +0000 (18:40 +0200)]
make sure we use valid icons

5 years agoFix warnings about scaling pixmaps
Martin T. H. Sandsmark [Fri, 25 Sep 2020 14:33:25 +0000 (16:33 +0200)]
Fix warnings about scaling pixmaps

5 years agoGIT_SILENT Update Appstream for new release
Christoph Feck [Sat, 31 Oct 2020 16:58:54 +0000 (17:58 +0100)]
GIT_SILENT Update Appstream for new release

(cherry picked from commit 92d41a743399f6f38ff55b9cb59657f5c5a5a510)

5 years agoPort from QStandardPaths::DataLocation to QStandardPaths::AppDataLocation
David Faure [Sat, 31 Oct 2020 13:31:22 +0000 (14:31 +0100)]
Port from QStandardPaths::DataLocation to QStandardPaths::AppDataLocation

They are the same on Linux (but DataLocation is deprecated). On Windows this enables the use of the roaming path.

NO_CHANGELOG

5 years agoDisable session management for daemon
Nate Graham [Thu, 29 Oct 2020 21:00:39 +0000 (15:00 -0600)]
Disable session management for daemon

We don't need to autostart the daemon if it was running at logout.

BUG: 417219
FIXED-IN: 20.12

5 years agoFix wrong parameter in function call
Lothar Paltins [Tue, 27 Oct 2020 14:54:03 +0000 (15:54 +0100)]
Fix wrong parameter in function call

In KDirectoryContentsCounterWorker::CountResult, the first parameter in
the call of walkDir was wrong. It should be path without conversion,
because the conversion is done in the called function.

BUG: 428282

5 years agoUse mutable iterators where required
Alexander Lohnau [Sat, 24 Oct 2020 14:46:34 +0000 (16:46 +0200)]
Use mutable iterators where required

5 years agoCompile with QT_NO_KEYWORDS
Alexander Lohnau [Fri, 23 Oct 2020 17:51:33 +0000 (19:51 +0200)]
Compile with QT_NO_KEYWORDS

5 years agoCompile without foreach
Alexander Lohnau [Fri, 23 Oct 2020 17:48:22 +0000 (19:48 +0200)]
Compile without foreach

5 years agoDolphinTabWidget: prefer QUrl::toDisplayString() for tooltips
Elvis Angelaccio [Fri, 23 Oct 2020 17:15:07 +0000 (19:15 +0200)]
DolphinTabWidget: prefer QUrl::toDisplayString() for tooltips

This is better for remote urls.

!35

5 years agoKItemListSizeHintResolver: remove no longer used member
Elvis Angelaccio [Tue, 20 Oct 2020 22:37:27 +0000 (00:37 +0200)]
KItemListSizeHintResolver: remove no longer used member

5 years agoDon't session-restore invalid paths
Nate Graham [Tue, 13 Oct 2020 19:37:11 +0000 (13:37 -0600)]
Don't session-restore invalid paths

When session restore is populating the main window, it's unconditional;
you'll get whatever was there before. This can be a problem if any of
those things are now missing. For example, maybe you were browsing files
on a removable disk, then quit Dolphin, and finally removed the disk. The
next time you launch Dolphin again, it will try to show you the
view from the now-missing removable disk.

To prevent this, we now look at all the URLs in all of the view
containers that were created after session-restore has finished doing
its thing; if any of them are invalid local URLs, we change the URL to
the home folder instead to avoid showing the user a view with an invalid
location in it.

BUG: 427619
FIXED-IN: 20.12

5 years agoShow home folder if needed after unmounting mounted disk
Nate Graham [Tue, 13 Oct 2020 17:51:59 +0000 (11:51 -0600)]
Show home folder if needed after unmounting mounted disk

Right now, when you unmount a device that any active view containers are
displaying, nothing in the view changes. As a result, it's possible to
try to navigate to files or folders in that view, which cannot be done
because the disk that the files or folders are located on has been
unmounted!

With this commit, we detect that case and switch the view containers
to show the home folder after the disk whose contents they are displaying
gets unmounted.

BUG: 158934
FIXED-IN: 20.12

5 years agoFix DolphinMainWindow::viewContainers() to take into account split views
Nate Graham [Sat, 17 Oct 2020 00:35:54 +0000 (18:35 -0600)]
Fix DolphinMainWindow::viewContainers() to take into account split views

The function was previously assuming that each tab view has exactly one
view container, which is not necessarily accurate; some could have a
split view open.

5 years agoIf include is define in .h remove it if it's defined in .cpp too (scripted)
Laurent Montel [Fri, 23 Oct 2020 05:43:43 +0000 (07:43 +0200)]
If include is define in .h remove it if it's defined in .cpp too (scripted)

5 years agoD-Bus activation systemd service
Henri Chain [Wed, 21 Oct 2020 10:20:56 +0000 (10:20 +0000)]
D-Bus activation systemd service

Correctly scopes dolphin in systemd service `app-org.kde.dolphin.service` when dbus-activated (while still working if systemd is not present), as per https://systemd.io/DESKTOP_ENVIRONMENTS/

uses new ECM modules:
- https://invent.kde.org/frameworks/extra-cmake-modules/-/merge_requests/5 to simplify the systemd service templating + install
- https://invent.kde.org/frameworks/extra-cmake-modules/-/merge_requests/17 to generate the dbus service file automatically

needs https://invent.kde.org/frameworks/extra-cmake-modules/-/merge_requests/25

5 years agoRemove not implmemented method
Laurent Montel [Sat, 17 Oct 2020 16:04:55 +0000 (18:04 +0200)]
Remove not implmemented method

5 years agoGIT_SILENT made messages (after extraction)
l10n daemon script [Sat, 17 Oct 2020 00:34:34 +0000 (02:34 +0200)]
GIT_SILENT made messages (after extraction)

5 years agoPort away from QTimeLine::setCurveShape()
Elvis Angelaccio [Wed, 14 Oct 2020 23:27:28 +0000 (01:27 +0200)]
Port away from QTimeLine::setCurveShape()

As recommended, we now set `easingCurve` directly.

5 years agoStop using QVariant < operator
Elvis Angelaccio [Wed, 14 Oct 2020 22:07:12 +0000 (00:07 +0200)]
Stop using QVariant < operator

It will be removed in Qt 6 without porting strategy:
https://github.com/qt/qtbase/commit/f43cb31ba00a431c6d0a0b17750483a72ae03bb0

We know that that variants will be either ints (for `count`) or longs (for `size`),
so just convert them to longs (to avoid overflows) and compare those.

5 years agoDrop obsolete version check
Elvis Angelaccio [Wed, 14 Oct 2020 21:53:00 +0000 (23:53 +0200)]
Drop obsolete version check

We require Qt 5.14 now.

5 years agoPort to non-deprecated QLabel::pixmap()
Elvis Angelaccio [Wed, 14 Oct 2020 21:46:40 +0000 (23:46 +0200)]
Port to non-deprecated QLabel::pixmap()

Quoting from:
https://github.com/qt/qtbase/commit/714409b23ce5ec33e56adce5ba1966aad67c3b34

```
The QLabel changes to the pixmap/picture getters provide the following
migration path:

QPixmap *ppix = l->pixmap(); // up to 5.15, warns in 5.15
QPixmap pval = l->pixmap(Qt::ReturnByValue); // new in 5.15, works in 6
QPixmap pixmap = l->pixmap(); // from Qt 6 on
```

Since we can't require 5.15 yet in dolphin, the port is done only when
building with Qt >= 5.15

5 years agoPort to non-deprecated QString::split() variant
Elvis Angelaccio [Wed, 14 Oct 2020 21:26:05 +0000 (23:26 +0200)]
Port to non-deprecated QString::split() variant

This requires Qt 5.14, which we now depend on.

5 years agoPort away from QList::toSet()
Elvis Angelaccio [Thu, 28 May 2020 17:42:23 +0000 (19:42 +0200)]
Port away from QList::toSet()

The QSet range constructor requires Qt 5.14.

In `DolphinView::slotHeaderContextMenuRequested()` the conversion from
QList to QSet was pointless, so we just use a QList now.

5 years agoAdd tooltip to tabbar
tolu schr [Wed, 8 Jul 2020 08:59:11 +0000 (10:59 +0200)]
Add tooltip to tabbar

5 years agoShow "Open With" menu items even for empty dirs
Nate Graham [Tue, 13 Oct 2020 00:16:53 +0000 (18:16 -0600)]
Show "Open With" menu items even for empty dirs

We found some legitimate use cases for this after all! :)

This reverts 14f0cd52f61de7539e2d9c751966594708ed0281

BUG: 427573
FIXED-IN: 5.12

5 years agoWhen restoring former window state, append any URLs passed as args
Nate Graham [Tue, 6 Oct 2020 18:16:25 +0000 (12:16 -0600)]
When restoring former window state, append any URLs passed as args

Before, when Dolphin was closed but opened with any URLs, it would open
a new window with only those URLs, rather than restoring any window
state (if the user has this feature enabled).

Now, Dolphin will first restore state (if enabled) and then append any
URLs, rather than replacing the existing set of URLs.

The "new instance" case was previously handled automatically and now
needs to be explictly handled by checking for it, to make sure that new
instances give you a clean window rather than a state-restored window.

BUG: 427274
FIXED-IN: 20.12

5 years agoGIT_SILENT made messages (after extraction)
l10n daemon script [Sat, 10 Oct 2020 00:33:01 +0000 (02:33 +0200)]
GIT_SILENT made messages (after extraction)

5 years agoUpdate README.md to gitlab :D
Carl Schwan [Tue, 6 Oct 2020 16:02:54 +0000 (16:02 +0000)]
Update README.md to gitlab :D

5 years agoMerge branch 'release/20.08' into master
Nate Graham [Mon, 5 Oct 2020 21:19:04 +0000 (15:19 -0600)]
Merge branch 'release/20.08' into master

5 years agoWhen an invalid protocol is used, reset the navigator location to the previous url
Jan Paul Batrina [Sat, 3 Oct 2020 13:15:34 +0000 (13:15 +0000)]
When an invalid protocol is used, reset the navigator location to the previous url

BUG: 413478

5 years agoDon't trigger rubberband with back/foward mouse buttons
Ahmad Samir [Thu, 1 Oct 2020 16:21:18 +0000 (18:21 +0200)]
Don't trigger rubberband with back/foward mouse buttons

Right now the back/foward mouse buttons work, but also if you hold either
of them and move the mouse the rubberband selection is triggered.

This is the correct fix (instead of commit d0c71a1435bc9d), to match the
original code before the touch events patches,  we need to check the
back/foward buttons after mouseButtonPressed is emitted and before
triggering the rubberbad selection.

5 years agoDon't warn when closing multiple tabs if restoring window state
Nate Graham [Sat, 3 Oct 2020 15:39:16 +0000 (09:39 -0600)]
Don't warn when closing multiple tabs if restoring window state

When we're using the "restore window state" feature, there's no need to
warn when closing multiple tabs, because they're saved and you can just
re-open the window.

5 years agoGIT_SILENT Update Appstream for new release
Christoph Feck [Sat, 3 Oct 2020 12:10:19 +0000 (14:10 +0200)]
GIT_SILENT Update Appstream for new release

(cherry picked from commit 38f32d52326bc39b9e27319e9f4e89f94a09bb77)

5 years agoGIT_SILENT Update Appstream for new release
Christoph Feck [Sat, 3 Oct 2020 12:10:19 +0000 (14:10 +0200)]
GIT_SILENT Update Appstream for new release

5 years agoGIT_SILENT Upgrade release service version to 20.08.2.
Christoph Feck [Sat, 3 Oct 2020 10:47:40 +0000 (12:47 +0200)]
GIT_SILENT Upgrade release service version to 20.08.2.

5 years agoGIT_SILENT made messages (after extraction)
l10n daemon script [Fri, 2 Oct 2020 06:21:10 +0000 (08:21 +0200)]
GIT_SILENT made messages (after extraction)

5 years agoGIT_SILENT made messages (after extraction)
l10n daemon script [Fri, 2 Oct 2020 00:29:19 +0000 (02:29 +0200)]
GIT_SILENT made messages (after extraction)

5 years agoFix build failure after last commit
Elvis Angelaccio [Sat, 26 Sep 2020 15:12:39 +0000 (17:12 +0200)]
Fix build failure after last commit

5 years agoAllow interaction with folder/files with the stylus again
Steffen Hartleib [Sat, 26 Sep 2020 14:53:57 +0000 (14:53 +0000)]
Allow interaction with folder/files with the stylus again

This Patch works for Wayland and X.

BUG: 426582

5 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Thu, 24 Sep 2020 08:10:10 +0000 (10:10 +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"

5 years agoSelect/Unselect dialogue: Retain a history of entries made there
Jonathan Marten [Wed, 23 Sep 2020 11:07:29 +0000 (11:07 +0000)]
Select/Unselect dialogue: Retain a history of entries made there

It's a very useful facilitity, and having a history of entries and being
able to recall earlier ones makes it even more useful for repetitive
operations.

5 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Wed, 23 Sep 2020 04:39:00 +0000 (06:39 +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"

5 years agoMake "Show hidden files" action follow HIG
Nate Graham [Fri, 18 Sep 2020 00:34:11 +0000 (18:34 -0600)]
Make "Show hidden files" action follow HIG

The action is a toggle action, for which the HIG prescribes that the
text should describe the action's checked state, and neither the text
nor the icon should change when the action is checked. Other toggle
actions in Dolphin follow these rules, but this one does not.

This commit makes the action follow those rules.

5 years agoCheck protocol Class before creating a StatJob
Ahmad Samir [Mon, 14 Sep 2020 14:01:47 +0000 (16:01 +0200)]
Check protocol Class before creating a StatJob

StatJob::mostLocalUrl only works with ":local" protocols, adjust the code
accordingly.

Make the code async.

Remove activeContainerLocalPath() method as it isn't needed anymore.

Drive-by change: minimum required version of Qt should be 5.12 because
that's what KF >= 5.73 already requires.

5 years agoFix mouse back/forward buttons
Ahmad Samir [Sun, 20 Sep 2020 16:38:29 +0000 (18:38 +0200)]
Fix mouse back/forward buttons

We need to emit mouseButtonPressed (now in the onPress method) before the
check needed to not select items on back/foward mouse button press events.

5 years agoExclude trash settings from windows
Alexander Lohnau [Sun, 20 Sep 2020 08:11:37 +0000 (10:11 +0200)]
Exclude trash settings from windows

5 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Sun, 20 Sep 2020 07:20:49 +0000 (09:20 +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"

5 years agoFix unused variable warning
Ayushmaan jangid [Fri, 18 Sep 2020 17:21:37 +0000 (17:21 +0000)]
Fix unused variable warning

5 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Mon, 14 Sep 2020 07:58:23 +0000 (09:58 +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"

5 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Mon, 14 Sep 2020 04:15:19 +0000 (06:15 +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"

5 years agoGIT_SILENT made messages (after extraction)
l10n daemon script [Mon, 14 Sep 2020 00:33:22 +0000 (02:33 +0200)]
GIT_SILENT made messages (after extraction)

5 years agoFix style, not space between method name and (; improve wording
Ahmad Samir [Sun, 13 Sep 2020 20:14:34 +0000 (22:14 +0200)]
Fix style, not space between method name and (; improve wording

GIT_SILENT

5 years agoImprove Touch support
Steffen Hartleib [Sun, 13 Sep 2020 18:53:32 +0000 (18:53 +0000)]
Improve Touch support

With this patch dolphin now supports the following touch gestures:

* Tap gesture to interact/open with directories, files and so on
* TapAndHold and release gesture for access to the context menu (main window, panel folder, places and information)
* TapAndHold and moving gesture for drag and drop action (main windows, panel folder and places)
* pinch gesture for zoom in main window
* kinetic scrolling (QScroller) for main window, panel folder, panel places, panel information, setting preview and service
* two fingers swipe gesture to left, right and up as shortcut to navigate back, forward and up
* two finger tap gesture to toggle item selection, similar to Ctrl and left mouse click

FEATURE: 385066
FIXED-IN: 20.11.80

 You are currently rebasing branch 'touch' on '85241a924'.

5 years agoFix wreorder warning
Ayushmaan jangid [Sun, 13 Sep 2020 17:52:09 +0000 (17:52 +0000)]
Fix wreorder warning

5 years agoTerminalPanel: StatJob::mostLocalUrl only works with ":local" protocols
Ahmad Samir [Sun, 13 Sep 2020 13:28:33 +0000 (15:28 +0200)]
TerminalPanel: StatJob::mostLocalUrl only works with ":local" protocols

StatJob::mostLocalUrl was changed to cancel the job automatically if the
protocol Class isn't ":local", mostLocalUrl only makes sense with ioslaves
that actually set UDS_LOCAL_PATH (which should have calss ":local").

I tested that kio-fuse still works, when having the terminal panel open and
changing direcotries in Dolphin, with an sftp:// server.

5 years agoUpdate org.kde.dolphin.appdata.xml homepage url
Carl Schwan [Sun, 13 Sep 2020 06:53:44 +0000 (06:53 +0000)]
Update org.kde.dolphin.appdata.xml homepage url

5 years agoDo not build KCMs on windows
Alexander Lohnau [Wed, 9 Sep 2020 08:39:52 +0000 (10:39 +0200)]
Do not build KCMs on windows

5 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Thu, 10 Sep 2020 08:12:36 +0000 (10: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"

5 years agoGIT_SILENT made messages (after extraction)
l10n daemon script [Thu, 10 Sep 2020 06:53:28 +0000 (08:53 +0200)]
GIT_SILENT made messages (after extraction)

5 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Thu, 10 Sep 2020 04:35:50 +0000 (06:35 +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"

5 years agoGIT_SILENT made messages (after extraction)
l10n daemon script [Thu, 10 Sep 2020 00:35:51 +0000 (02:35 +0200)]
GIT_SILENT made messages (after extraction)

5 years agoPort to modern SPDX identifier
Carl Schwan [Wed, 9 Sep 2020 21:39:03 +0000 (21:39 +0000)]
Port to modern SPDX identifier

5 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Wed, 9 Sep 2020 04:36:13 +0000 (06:36 +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"

5 years agoGIT_SILENT made messages (after extraction)
l10n daemon script [Wed, 9 Sep 2020 00:44:30 +0000 (02:44 +0200)]
GIT_SILENT made messages (after extraction)

5 years agoMerge branch 'release/20.08' into master
Nate Graham [Tue, 8 Sep 2020 19:38:38 +0000 (13:38 -0600)]
Merge branch 'release/20.08' into master

5 years agoFix untranslated spinbox suffix strings
Nate Graham [Mon, 7 Sep 2020 22:07:41 +0000 (16:07 -0600)]
Fix untranslated spinbox suffix strings

BUG: 426286
FIXED-IN: 20.08.2

5 years agoMerge branch 'release/20.08' into master
Elvis Angelaccio [Sat, 5 Sep 2020 20:55:59 +0000 (22:55 +0200)]
Merge branch 'release/20.08' into master

5 years agoRevert "Set a better defaultDropAction for dragging"
Elvis Angelaccio [Sat, 5 Sep 2020 20:50:48 +0000 (22:50 +0200)]
Revert "Set a better defaultDropAction for dragging"

This reverts commit 4440e961a07aaee5b5da7c8967ff05de14808ad4.

BUG: 425757
BUG: 426196
FIXED-IN: 20.08.2

5 years agoClear services model after KNS entries changed
Alexander Lohnau [Sat, 5 Sep 2020 17:32:48 +0000 (17:32 +0000)]
Clear services model after KNS entries changed

We can not know if a service got deleted, so we clear
the model and reload the services. The issue that the entries are
not uninstalled has already been solved, this is just a patch to
fix the state of the UI.

CCBUG: 420312

5 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Thu, 3 Sep 2020 04:10:45 +0000 (06:10 +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"

5 years agoGIT_SILENT made messages (after extraction)
l10n daemon script [Thu, 3 Sep 2020 00:33:12 +0000 (02:33 +0200)]
GIT_SILENT made messages (after extraction)

5 years agoGIT_SILENT made messages (after extraction)
l10n daemon script [Wed, 2 Sep 2020 00:39:58 +0000 (02:39 +0200)]
GIT_SILENT made messages (after extraction)

5 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Tue, 1 Sep 2020 08:13:23 +0000 (10:13 +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"

5 years agoGIT_SILENT made messages (after extraction)
l10n daemon script [Tue, 1 Sep 2020 06:46:02 +0000 (08:46 +0200)]
GIT_SILENT made messages (after extraction)

5 years agoSVN_SILENT made messages (.desktop file) - always resolve ours
l10n daemon script [Tue, 1 Sep 2020 04:25:15 +0000 (06: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"

5 years agoPort away from deprecated Qt::MidButton
Laurent Montel [Mon, 31 Aug 2020 19:24:03 +0000 (21:24 +0200)]
Port away from deprecated Qt::MidButton

5 years agoGIT_SILENT Update Appstream for new release
Christoph Feck [Mon, 31 Aug 2020 18:52:32 +0000 (20:52 +0200)]
GIT_SILENT Update Appstream for new release

5 years agoGIT_SILENT Update Appstream for new release
Christoph Feck [Mon, 31 Aug 2020 18:52:32 +0000 (20:52 +0200)]
GIT_SILENT Update Appstream for new release

(cherry picked from commit 6ffa7f460e397b48af7dc1651351e29f23883a58)

5 years agoGIT_SILENT Upgrade release service version to 20.08.1.
Christoph Feck [Mon, 31 Aug 2020 18:33:01 +0000 (20:33 +0200)]
GIT_SILENT Upgrade release service version to 20.08.1.

5 years agoDo not build KNS installer and KNS button on Windows
Alexander Lohnau [Wed, 26 Aug 2020 07:59:26 +0000 (09:59 +0200)]
Do not build KNS installer and KNS button on Windows

5 years agoAllow Open Terminal action on Windows
Alexander Lohnau [Wed, 26 Aug 2020 08:58:56 +0000 (10:58 +0200)]
Allow Open Terminal action on Windows

5 years agoMerge branch 'release/20.08'
Alexander Lohnau [Sun, 30 Aug 2020 16:49:22 +0000 (18:49 +0200)]
Merge branch 'release/20.08'

5 years agoFix file preview for desktop files with absolute icon paths
Alexander Lohnau [Tue, 23 Jun 2020 06:22:42 +0000 (08:22 +0200)]
Fix file preview for desktop files with absolute icon paths

BUG: 423326
FIXED-IN: 20.08.1

5 years agoText style fixes
Nikita Churaev [Wed, 26 Aug 2020 00:37:31 +0000 (03:37 +0300)]
Text style fixes

5 years agoMerge branch 'release/20.08' into master
Elvis Angelaccio [Tue, 25 Aug 2020 22:49:00 +0000 (00:49 +0200)]
Merge branch 'release/20.08' into master

5 years agoFix nullptr crash on Windows
Alexander Lohnau [Tue, 25 Aug 2020 14:15:31 +0000 (16:15 +0200)]
Fix nullptr crash on Windows

5 years agoOutput of licensedigger + manual cleanup afterwards.
Elvis Angelaccio [Tue, 25 Aug 2020 17:07:38 +0000 (17:07 +0000)]
Output of licensedigger + manual cleanup afterwards.

Unfortunately licensedigger does not strip the trailing * characters.
While at it, use a common style for all source files.

5 years agoChange group spacing from 18px to 12px
Nate Graham [Mon, 24 Aug 2020 18:35:08 +0000 (12:35 -0600)]
Change group spacing from 18px to 12px

This is the value used in QML-based software, so now Dolphin's form
layout settings dialogs look consistent.

5 years agoMerge branch 'release/20.08' into master
Elvis Angelaccio [Sun, 23 Aug 2020 21:54:23 +0000 (23:54 +0200)]
Merge branch 'release/20.08' into master

5 years agoFix 'show space' setting not being re-applied
Nazar Kalinowski [Sun, 23 Aug 2020 18:10:23 +0000 (21:10 +0300)]
Fix 'show space' setting not being re-applied

BUG: 425542