| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-05-27 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-05-26 | Expand or collapse all selected folders on Key Right/Left | Méven Car | |
| CCBUG: 196772 | |||
| 2023-05-26 | KDirectoryContentsCounter: show intermediate dir size counting results, ↵ | Méven Car | |
| improve stopping, improve data caching Two user visible changes: * we can see the dir size changing as it is updated. * This makes the file counting a lot more reactive, when changing directories for instance. `KDirectoryContentsCounterWorker::walkDir` is not recursive anymore. The cache is now shared and only a single thread is used to count size recursively. | |||
| 2023-05-26 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-05-25 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-05-24 | Revert "Restrict attaching instances to those on the same activity or same ↵ | Méven Car | |
| virtual desktop" This reverts commit b99f6f50eef395a3ceb88fb3d4b7357cbbc13c85. BUG: 408919 Reintroduces: CCBUG: 408919 | |||
| 2023-05-24 | Revert "global.cpp: Ensure qApp does not emit signal because of local ↵ | Méven Car | |
| QEventLoop" This reverts commit dec80fb0f940ff4e71032c2d3544f0d60a05c4ce. | |||
| 2023-05-24 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-05-23 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-05-19 | global.cpp: Ensure qApp does not emit signal because of local QEventLoop | Méven Car | |
| BUG: 469656 | |||
| 2023-05-16 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-05-14 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-05-11 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-05-10 | Add a TODO KF6 to solve bug 464722 | Méven Car | |
| CCBUG: 464722 | |||
| 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-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 | |
| 2023-04-17 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-04-14 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-04-13 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-04-12 | GIT_SILENT Update Appstream for new release | Heiko Becker | |
| (cherry picked from commit fb084ec1a14e2cc0b8842056c8b34d20f4d86484) | |||
| 2023-04-12 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-04-11 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-04-10 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-04-09 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-04-08 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-04-07 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
| 2023-04-06 | GIT_SILENT Sync po/docbooks with svn | l10n daemon script | |
