| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-05-10 | Add a TODO KF6 to solve bug 464722 | Méven Car | |
| CCBUG: 464722 | |||
| 2023-05-09 | Fix a typo, take 2 | Méven Car | |
| 2023-05-09 | Fix a typo | Méven Car | |
| 2023-05-09 | Fix build without KF5Activities | Heiko Becker | |
| 2023-05-09 | Disable Qt6 CI build in master, use kf6 branch for Qt6 | Méven Car | |
| 2023-05-09 | Fix a bunch of Qt6/Kf6 warnings | Méven Car | |
| 2023-05-09 | Fix dolphinvcs_export.h export path | Méven Car | |
| 2023-05-09 | Fix for KUserFeedbackQt6 includes | Méven Car | |
| 2023-05-09 | Fix for KUserFeedbackQt6 includes | Méven Car | |
| 2023-05-09 | Ensure good export of dolphinvcs headers | Méven Car | |
| 2023-05-08 | Merge branch 'master' into kf6 | Méven Car | |
| 2023-05-08 | Revert "partially Improve kuserfeedback import" | Méven Car | |
| This reverts commit 047bf33d9050b89243479adb22aaa354b10878a4. | |||
| 2023-05-08 | Improve kuserfeedback import | Méven Car | |
| 2023-05-08 | Fix baloo-widgets import take 3 | Méven Car | |
| 2023-05-08 | Fix baloo-widgets import take 2 | Méven Car | |
| 2023-05-08 | Fix baloo-widgets imports | Méven Car | |
| 2023-05-08 | Update libraries versions to latest-kf6 | Méven Car | |
| 2023-05-08 | Fix kuserfeedback version | Méven Car | |
| 2023-05-08 | Clean a debug message | Méven Car | |
| 2023-05-08 | Fix typo | Méven Car | |
| 2023-05-08 | Fix libraries versions | Méven Car | |
| 2023-05-08 | Correct baloo-widgets version used | Méven Car | |
| 2023-05-08 | Fix baloo-widgets dep | Méven Car | |
| 2023-05-08 | Fetch latest baloo-widgets | Méven Car | |
| 2023-05-08 | Build CI only on Qt6 | Méven Car | |
| 2023-05-08 | Improve CI | Méven Car | |
| 2023-05-07 | Port to Qt6 | Méven Car | |
| 2023-05-06 | GIT_SILENT Update Appstream for new release | Heiko Becker | |
| (cherry picked from commit 3fb0380fd45b723c4fec414bf08b33bf81a08f95) | |||
| 2023-05-04 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-04-30 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-04-29 | KFileItemModelRolesUpdater: test isSlow in `startDirectorySizeCounting` | Méven Car | |
| NO_CHANGELOG | |||
| 2023-04-29 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-04-26 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-04-25 | Fix test regression in DolphinMainWindowTest::testGoActions | Méven Car | |
| 2023-04-25 | Revert "Adapt autotest to new expected "Space" key behaviour" | Felix Ernst | |
| This reverts commit df5cf6fe851021a73159fdd3487fe629c1ea8376. The autotest was orginally changed to adapt to new behaviour when the Space key is pressed. This change used to be implemented in KItemListController which meant that the KItemListControllerTest needed changing, but this is no longer the case. Instead the new behaviour when the Space key is pressed is now implemented further up the hierarchy, so the KItemListController change could be reverted in 7b6a67e520c04f56b4b05fa26b252177398df6df and as such we can also revert this autotest change. | |||
| 2023-04-25 | Fix activating the Selection Mode with a keyboard shortcut | Eugene Popov | |
| If a spacebar is used as a keyboard shortcut to activate the Selection Mode, then allow this shortcut to be triggered only if the view has a keyboard focus. BUG: 465489 | |||
| 2023-04-25 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-04-24 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-04-23 | Add DolphinTabPage::inactiveViewContainer() | Eugene Popov | |
| 2023-04-23 | Improve copying and moving items between panels | Eugene Popov | |
| Currently, copying the selected items between panels is performed by the active panel, which is wrong, because the inactive panel cannot select the copied items after the operation is completed (as it happens when drag'n'dropping or copying using keyboard shortcuts). | |||
| 2023-04-23 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-04-22 | FilterBar: improve keyboard behavior and tab ordering | Eugene Popov | |
| With this MR, when the filterbar has the keyboard focus: - pressing the Tab key moves the keyboard focus to the view - pressing the Down, PageDown, Up and PageUp keys moves the focus to the view and emulate pressing the same key in it (you can navigate directly from the filterbar) | |||
| 2023-04-22 | TerminalPanel: rename currentWorkingDirectoryIsParentOf to ↵ | Méven Car | |
| currentWorkingDirectoryIsChildOf NO_CHANGELOG | |||
| 2023-04-22 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-04-21 | TerminalPanel: better check if terminal needs to change its ↵ | Méven Car | |
| currentWorkingDirectory when unmounting CCBUG: 467403 | |||
| 2023-04-21 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-04-20 | DolphinView: allow selectUrls to be considered for selection in more cases | Méven Car | |
| * when there is some selection already (some files were created previously) * when the model has not yet insert all the selectedUrls Also * Rename DolphinView::slotCopyingDone to slotItemCreatedFromJob BUG: 407161 | |||
| 2023-04-20 | Reuse existing proxy style | Felix Ernst | |
| Before this commit, a new QProxyStyle was created every time the selection mode was enabled. The previously used one was automatically deleted in the process because of the std::unique_ptr re-assignment. This isn't really a problem in itself, but I strongly assume that the sudden deletion of the old style shortly before setting a new style might be the cause of the crash/bug 468548. This commit simply re-uses the previously created proxy style which doesn't seem to cause any behaviour change even when the application style has been changed in the time since the proxy style was created. Another potential solution might be to simply use deleteLater() on the old proxy style instead of letting std::unique_ptr delete the old proxy style instantly while it is still in use. That seems more involved than simply re-using the old style though. BUG: 468548 FIXED-IN: 23.08 | |||
| 2023-04-20 | Restrict attaching instances to those on the same activity or same virtual ↵ | Méven Car | |
| desktop CCBUG: 408919 | |||
| 2023-04-20 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
