| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-04-14 | GIT_SILENT Upgrade release service version to 21.04.0. | Heiko Becker | |
| 2021-04-09 | GIT_SILENT Upgrade release service version to 21.03.90. | Heiko Becker | |
| 2021-04-09 | Remove dead variable | Méven Car | |
| 2021-04-08 | Not necessary to forward class if we include file | Laurent Montel | |
| 2021-04-08 | Update screenshots and docs on the Preferences | Yuri Chornoivan | |
| 2021-04-08 | Add the new option to the docs on the status bar configuration | Yuri Chornoivan | |
| 2021-04-08 | Merge branch 'release/21.04' | Méven Car | |
| 2021-04-07 | Add option to hide entire status bar | Michael Lang | |
| 2021-04-06 | Fix deprecated method calls when using KIO >= 5.82 | David Faure | |
| 2021-04-05 | KFileItemModel: DetailsModeSettings::directorySizeCount forces m_sortDirsFirst | Méven Car | |
| Before this patch when !m_sortDirsFirst and DetailsModeSettings::directorySizeCount() == true, the ordering of folders before files would be affected by the sortOrder. I.e descending order would put the folders after the files. | |||
| 2021-04-05 | Check the version of the plugins before trying to load them | Martin T. H. Sandsmark | |
| 2021-04-05 | Port the VCS plugin system to KPluginLoader | Tobias Fella | |
| The loader looks for the plugins in ${QT_PLUGIN_PATH}/dolphin/vcs. The old method of loading the plugins is kept around for now, to support external, legacy plugins. | |||
| 2021-04-05 | appstream: fix homepage url | Elvis Angelaccio | |
| 2021-04-05 | appstream: fix homepage url | Elvis Angelaccio | |
| 2021-04-01 | GIT_SILENT made messages (after extraction) | l10n daemon script | |
| 2021-04-01 | GIT_SILENT made messages (after extraction) | l10n daemon script | |
| 2021-03-31 | Merge branch 'release/21.04' | Nate Graham | |
| 2021-03-31 | Fix crash calling openDirectories() in various cases | Nate Graham | |
| This can cause a crash when called with a single url and split view, or when the last URL is not shown, because the iterator gets mutated in the loop, so we need to make sure it hasn't gone out of bounds. This check was erroneously removed in 175538020824355115cd98637ce83ecc53badd44 and needs to be brought back. | |||
| 2021-03-30 | Remove the KInit dependency | Christophe Giboudeaux | |
| Amends 9e8e58147 | |||
| 2021-03-28 | Port away from KInit | Nicolas Fella | |
| KInit is planned to go away https://phabricator.kde.org/T14298 | |||
| 2021-03-28 | GIT_SILENT made messages (after extraction) | l10n daemon script | |
| 2021-03-27 | Merge branch 'release/21.04' | Nate Graham | |
| 2021-03-26 | Don't re-open already-open URLs when using session-restore feature | Nate Graham | |
| If Dolphin would be asked to open a location that is already open, don't open it again in a new tab; instead switch to that view. Supports tabs and split view. BUG: 434911 FIXED-IN: 21.04 | |||
| 2021-03-16 | GIT_SILENT made messages (after extraction) | l10n daemon script | |
| 2021-03-15 | Merge branch 'release/21.04' | Nate Graham | |
| 2021-03-15 | Allow selecting filename in information panel | Nate Graham | |
| BUG: 434329 FIXED-IN: 21.04 | |||
| 2021-03-15 | GIT_SILENT made messages (after extraction) | l10n daemon script | |
| 2021-03-13 | GIT_SILENT Upgrade release service version to 21.07.70. | Albert Astals Cid | |
| 2021-03-13 | GIT_SILENT Upgrade release service version to 21.03.80. | Albert Astals Cid | |
| 2021-03-13 | Enable test mode in all test | Elvis Angelaccio | |
| 2021-03-13 | Add a note about creating custom 'Create New' submenu items | Yuri Chornoivan | |
| BUG: 191630 | |||
| 2021-03-07 | KFileModel: Let Sort dir first affect size sorting | Méven Car | |
| BUG: 433207 | |||
| 2021-03-07 | Remove not implement methods | Laurent Montel | |
| 2021-02-25 | GIT_SILENT made messages (after extraction) | l10n daemon script | |
| 2021-02-25 | GIT_SILENT Update Appstream for new release | Heiko Becker | |
| (cherry picked from commit 7fbe7474271f2805bc703a3d795a5cb2830ae740) | |||
| 2021-02-20 | KFileItemModelRolesUpdater: Avoid refreshing items when we receive their ↵ | Méven Car | |
| content count It concerns the detail view. It can cause multiple preview to be generated for the same file. This is visible for directories whose icons use a random value for their inner files thumbnails. Only the view needs to be updated for this model change. | |||
| 2021-02-19 | Use only enabled preview plugins in InformationPanelContent and ToolTipManager. | David Lerch | |
| 2021-02-18 | Do not run benchmark test automatically | Alexander Lohnau | |
| Same reasoning as https://invent.kde.org/frameworks/kio/-/merge_requests/301 and the commit series. | |||
| 2021-02-17 | Apply 1 suggestion(s) to 1 file(s) | Stefan Brüns | |
| 2021-02-15 | [FileItemRolesUpdater] Use STL-style iterator instead of iterating a copy | Stefan Brüns | |
| QSet<T>::erase(it) is the save way of erasing from a QSet while iterating it. This saves creating a copy of the QSet, lookup of a node by value in `QSet<T>::remove(item)`, and repeated rehashing caused by `remove`. | |||
| 2021-02-15 | [FileItemRolesUpdater] Reserve space in two temporary lists | Stefan Brüns | |
| Reserve sufficient space to avoid reallocation later. Overallocating actually requires less memory than growing and copying it, and it is freed immediately after anyway. | |||
| 2021-02-15 | [FileItemRolesUpdater] Fix reservation size | Stefan Brüns | |
| The code below always adds the visible range, up to 5 pages before and after the visible range (each capped to ResolveAllItemsLimit/2) and the very first and last page (each up to m_maximumVisibleItems). Use this number to avoid growing the list later. | |||
| 2021-02-15 | [FileItemRolesUpdater] Fix calculation of requested indexes | Stefan Brüns | |
| In case the last and/or first page (a page being n=m_maximumVisibleItems items) overlapped the already inserted items, one item for each range would be inserted a second time, e.g. for the first page and last page: `beginExtendedVisibleRange == 0` => `endFirstPage := 0` => `0 <= 0` is inserted again. `count == 100; endExtendedVisibleRange == 99; m_maximumVisibleItems == 20` => `beginLastPage := 99` => `99 < 100` is inserted again. | |||
| 2021-02-14 | [Status Bar] Hide zoomLabel also in menu handler | Kai Uwe Broulik | |
| 2021-02-14 | Remove a missing emit KEYWORD | Méven Car | |
| NO_CHANGELOG | |||
| 2021-02-11 | GIT_SILENT made messages (after extraction) | l10n daemon script | |
| 2021-02-10 | Port away from deprecated KToolInvocation::invokeTerminal | Nicolas Fella | |
| 2021-02-10 | Remove item move animation on view resize | Felix Ernst | |
| This commit removes an animation that happens when the view is resized. Before this commit, whenever the geometry of the view changed, the items in the view drifted towards their new position in the layout after a 300 ms delay. It would look like the items are slow to find their position. This commit simply moves them to their new position in an instant which will abort any ongoing move animations. | |||
| 2021-02-09 | Build with QT_NO_KEYWORDS | Nicolas Fella | |
| 2021-02-09 | Require C++17 | Nicolas Fella | |
| Not only does C++17 bring many nice things, it also will be required with Qt6. Many KDE projects already require 17 without issues. | |||
