┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-02-22GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-02-21Fix a crash in DolphinSearchBox::hideEvent()Vlad Zahorodnii
BUG: 481553
2024-02-21GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-02-20GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-02-19GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-02-19GIT_SILENT made messages (after extraction)l10n daemon script
2024-02-18Add documentationFelix Ernst
2024-02-18GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-02-18GIT_SILENT made messages (after extraction)l10n daemon script
2024-02-17Improve DnD handling in read-only dirsJin Liu
1. Places panel and tabbar update drag status in read-only dir 2. Don't create drop job in readonly directories
2024-02-16GIT_SILENT Update Appstream for new releaseHeiko Becker
(cherry picked from commit 1228582f92f7482937a47b5662dd0a3731ccebb8)
2024-02-14GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-02-14GIT_SILENT made messages (after extraction)l10n daemon script
2024-02-11GIT_SILENT made messages (after extraction)l10n daemon script
2024-02-10GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-02-10GIT_SILENT made messages (after extraction)l10n daemon script
2024-02-09GIT_SILENT Update Appstream for new releaseHeiko Becker
(cherry picked from commit 2510ec245ec055852d9958d7ea910cf0b7ed38af)
2024-02-09GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-02-09GIT_SILENT made messages (after extraction)l10n daemon script
2024-02-08GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-02-06GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-02-06GIT_SILENT made messages (after extraction)l10n daemon script
2024-02-05GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-02-05GIT_SILENT made messages (after extraction)l10n daemon script
2024-02-04GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-02-04GIT_SILENT made messages (after extraction)l10n daemon script
2024-02-03GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-02-02org.kde.dolphin.appdata: Add developer_nameTimothée Ravier
Fixes the following lint errors for Flathub: ``` { "errors": [ "appstream-missing-developer-name" ] } ``` See: https://github.com/flathub/org.kde.dolphin/pull/207 See: https://github.com/flathub-infra/flatpak-builder-lint/issues/274 See: https://freedesktop.org/software/appstream/docs/chap-Metadata.html#tag-developer See: https://freedesktop.org/software/appstream/docs/chap-Metadata.html#tag-developer_name
2024-02-02flatpak: Use specific tag for balooCarl Schwan
2024-02-02Fix flatpakCarl Schwan
Update with the state of the manifest on github and install icons at the correct location
2024-02-02Fix flatpakCarl Schwan
Update with the state of the manifest on github and install icons at the correct location
2024-02-02GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-02-01Fix focus chainFelix Ernst
Prior to this commit pressing Tab repeatedly would bring the focus to the end of the status bar but not further. This commit makes sure the tab focus doesn't get stuck on the invisible tab bar by explicitly removing the DolphinTabBar from the focus chain while it is hidden. I don't understand why pressing Tab doesn't do anything for the invisible tab bar, but removing an invisible and currently useless widget from the focus chain seems sensible in any case. Improve the accessibility autotest to prevent regressions concerning this.
2024-02-01Speed up autoSaveSession testFelix Ernst
Normally, the session is only saved after a few seconds. The autotest waits for that to happen. This commit reduces the time until the session is saved to a fraction of a seconds which means that the autotest will complete faster.
2024-01-31GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-01-30Add test cases for right-to-left keyboard navigationFelix Ernst
This commit reuses our test cases for keyboard navigation to also test the right-to-left layout direction under various conditions. There is also a small change to make the error output more human-readable.
2024-01-30Improve arrow key navigation for right-to-left languagesFelix Ernst
While using right-to-left languages most of Dolphin is mirrored. However, the logic of what happens when the arrow keys are pressed to move between items in the main view was never adapted to account for that. Basically nothing works as expected because of this. It's more like dealing with a psychopath who misinterprets every command you give: Left is right, right is left, up is most of the time right but sometimes not, down is most the time left but sometimes not. This commit fixes and adapts the logic if a right-to-left layout is used. This fully fixes icon view mode and improves compact view mode, though compact view mode still has more issues which aren't addressed here. This work for the benefit of the minority that use right-to-left languages both in Europe and the world is sponsored by NLnet and the European Commission which I think is beautfiul. BUG: 453933
2024-01-30GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-01-28GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-01-27GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-01-26GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-01-25GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-01-24GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-01-23Slightly refactor count resortingFelix Ernst
The bug fix 8f043b2958477d3fe2ef094b7e42f792f4cf0b02 introduced a secondary code path to trigger a resort of items. However, the previous way to trigger it only required a small bug fix to work and gives us a couple of optimisations for free. This commit removes the secondary code path and fixes the primary one. CCBUG: 473999
2024-01-23GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-01-22Avoid sorting too frequentlyFelix Ernst
d98037745fe6b5efbe9b145da7d20fa2f731b6a6 changed the time from 500 ms to 50 ms. This commit changes it to 100 ms. Information relevant for sorting might change repeatedly. Prior to this commit here we would resort within 50 ms of sorting being requested. If a lot of resorts would be requested in a short time frame, this could lead to the item order changing within the view up to 20 times a second which would lead to a lot of unnecessary movement and make it impossible to read even file names during the repeated sorting. 100 ms is half as bad in that regard. Bigger values might be even better but it is a trade-off.
2024-01-22GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-01-21dolphintabbar: only open tab on double left clickYifan Zhu
A new tab should be opened only if the double click comes from the left button. BUG: 480098 FIXED-IN: 24.02
2024-01-21GIT_SILENT Sync po/docbooks with svnl10n daemon script
2024-01-20rolesupdater: set isExpandable to false when dir is emptyMéven Car
Signed-off-by: Méven Car <[email protected]>