┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-06-13SVN_SILENT made messages (.desktop file) - always resolve oursl10n daemon script
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"
2022-06-13GIT_SILENT made messages (after extraction)l10n daemon script
2022-06-12Bump KF5_MIN_VERSION after e9bd295b make 5.92 necessaryMéven Car
2022-06-11Fix install/load plugins from kf<version>Laurent Montel
2022-06-09SVN_SILENT made messages (.desktop file) - always resolve oursl10n daemon script
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"
2022-06-09GIT_SILENT made messages (after extraction)l10n daemon script
2022-06-07KItemListView fix valgrind issue "Conditional jump or move depends on ↵Marius P
uninitialised value" KItemListView::setAlternateBackgrounds(bool) (kitemlistview.cpp:489) In C++, a data member of an object is not automatically initialized to "zero". In this case a bool had random values such as the integer 255.
2022-06-07SVN_SILENT made messages (.desktop file) - always resolve oursl10n daemon script
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"
2022-06-07GIT_SILENT made messages (after extraction)l10n daemon script
2022-06-06SVN_SILENT made messages (.desktop file) - always resolve oursl10n daemon script
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"
2022-06-04GIT_SILENT Update Appstream for new releaseHeiko Becker
(cherry picked from commit d0fc5bcd3d5c66611ec706c810103920e47c6038)
2022-06-03GIT_SILENT Update Appstream for new releaseHeiko Becker
(cherry picked from commit 716d814019b077246fd60c59630e4dfd1c9e1f89)
2022-06-02We depend against qt5.15Laurent Montel
2022-06-02SVN_SILENT made messages (.desktop file) - always resolve oursl10n daemon script
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"
2022-06-01Add Qt6 CI supportLaurent Montel
2022-06-01GIT_SILENT made messages (after extraction)l10n daemon script
2022-05-31It's enabled by default in qt6Laurent Montel
2022-05-31We depend against kf5.91 => remove checkLaurent Montel
2022-05-31Fix building KF6 with PackageKit-QtAhmad Samir
2022-05-31Fix build with Qt6 QFont::setWeight()Ahmad Samir
In Qt5 it takes an int, in Qt6 it takes a QFont::Weight.
2022-05-31Add missing includes needed to build with KF6Ahmad Samir
Apparently KPluginMetaData was implicitly included by something else.
2022-05-31KServiceTypeTrader has been deprecated since KService 5.90Ahmad Samir
2022-05-31Fix version macro with respect to finding "KFileItemAction/Plugin" servicesAhmad Samir
GIT_SILENT
2022-05-31Port away from deprecated KNewStuff APIAhmad Samir
2022-05-31Merge two relevant ifdef blocksAhmad Samir
GIT_SILENT
2022-05-31Fix building kfileitemmodeltest with KF6Ahmad Samir
- Fix kio_version.h include - Explicitly create a QSet for QCOMPARE
2022-05-31Port away from copying QEvent when building with Qt6Ahmad Samir
Copying QEvent in Qt6 isn't allowed, instead use clone().
2022-05-31Kdelibs4ConfigMigrator is deprecated in KF6Ahmad Samir
2022-05-31Port away from deprecated ThumbCreator APIAhmad Samir
Configurability of individual preview plugins has been deprecated since KIO 5.87.
2022-05-31Migrate old custom view font config entriesAhmad Samir
2022-05-31Simplify custom font settingsAhmad Samir
Instead of having 3 separate config keys, use the KConfig QFont de/serilaization.
2022-05-31kfileitemmodel: sortRoleCompare: allow to sort by access time.Méven Car
We had all sorts of weird behavior when sorting by access time. The comparison was simply missing in sortRoleCompare.
2022-05-31GIT_SILENT made messages (after extraction)l10n daemon script
2022-05-29Allow OpenTerminalHere to work for recentlyused:/ and recentdocuments:/Méven Car
2022-05-29SVN_SILENT made messages (.desktop file) - always resolve oursl10n daemon script
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"
2022-05-28SVN_SILENT made messages (.desktop file) - always resolve oursl10n daemon script
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"
2022-05-28GIT_SILENT made messages (after extraction)l10n daemon script
2022-05-27Remove hover highlight before opening view context menuFelix Ernst
If one was fast to open the right-click context menu on the row of an item in details view mode, the hover highlight would persist while the context menu for the view was open. This one-liner makes it so the highlight on the row is always removed before the right-click context menu for the view is opened so it is as clear as possible that the newly opened context menu has no relation to the fileItem.
2022-05-27Fix paste on row while in details view modeFelix Ernst
Before this change, right-clicking the row of an unselected item in details view mode would be in a weird state: - It didn't really count as a click on the item because the item didn't get selected by this click before opening the context menu. - It didn't really count as a click on the view background either because the actions that showed up depended on the item in that row. This commit fixes this by considering a right-click in the same row as an unselected item as a click on the view background. The behaviour of right-clicking the icon or name of a file directly is unchanged. This fixes the following bugs: - The Paste action that shows up when right-clicking in the unselected row of a folder now works (instead of doing nothing). It now pastes the clipboard contents onto the view background. - When right-clicking the unselected row of a file (not a folder) a Paste action once again shows up.
2022-05-26Extend selection rectangle to left edgeTravis Burrows
This commit changes it so the sizes of selection rectangles and hover highlights in compact and details view mode is identical for all items. Before this commit, selection rectangles in lists would have varying indentation of the left edge of the selection rectangle depending on the preview image's width-to-height ratio. This would cause a sort of "ragged edge" in both compact and details list view when multiple items were selected. This commit doesn't change anything about icon view mode. BUG: 453046
2022-05-26Change wording "Leading Column Padding" to "Side Padding"Jin Liu
Since it actually adds padding on both left and right sides, "Side Padding" might be more accurate. This change is also propagated to variable and method names. BUG: 453172
2022-05-24fix: Dolphin right click and compress doesn't scrollAndrey Butirsky
For newly created items being selected, we had updateViewState() called twice, and the first call blocked work execution needed in the other one
2022-05-24prevent excessive tab openingAndrey Butirsky
Without this, KIO::highlightInFileManager() will open additional tab even if file to be highlighted is already present in current view
2022-05-23Add ki18n_install and kdoctools_installAlbert Astals Cid
2022-05-22SVN_SILENT made messages (.desktop file) - always resolve oursl10n daemon script
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"
2022-05-21fix name of uninstall command (without extension)Christian Hartmann
fixing a minor typo allows using "uninstall" command (variant **without** extension) on de-installation of a service menu
2022-05-21fix: service-menu-installer ignoring symlinks on un-installChristian Hartmann
service-menu-installer ignores <package-name>.tar.gz-dir/uninstall.sh if this is actualy just a symbolic link to install.sh in the same directory (hardlinks and copies work) canonicalPath() is used to get the name of the file on disk and returns install.sh in the case of a symbolic link. install.sh without any arguments is called instead of uninstall.sh consequently and no de-installation takes place. replace canonicalPath() with absolutePath() as used in the rest of source file resolves: BUG: 452289
2022-05-20Fix QDirIterator wildcard when fallback install script is searched forAlexander Lohnau
Otherwise, we do not find scripts like "install-user.sh". BUG: 453870
2022-05-20GIT_SILENT made messages (after extraction)l10n daemon script
2022-05-18Add tooltip to free space info widget showing full disk capacityShubham
BUG: 452867 FIXED-IN: 22.08