]>
cloud.milkyroute.net Git - dolphin.git/log
Harald Sitter [Fri, 21 Aug 2015 10:12:54 +0000 (12:12 +0200)]
Merge branch 'Applications/15.08'
Conflicts:
CMakeLists.txt
Harald Sitter [Wed, 19 Aug 2015 08:59:46 +0000 (10:59 +0200)]
do not install namelink for private library
there are no headers being installed for the private library so it cannot
be linked anyway, so we can also skip the namelink creation (.so symlink)
REVIEW: 124812
David Faure [Wed, 12 Aug 2015 20:23:37 +0000 (22:23 +0200)]
Symlinking from .so.5 to .so.14.12.95 makes very little sense, name them 5.0.0
This can be changed to 5.1 or 6.0 on its own schedule
(although libdolphinprivate is really private, no headers installed)
CCMAIL: emmanuelpescosta099@gmail.com
Albert Astals Cid [Tue, 11 Aug 2015 23:11:34 +0000 (01:11 +0200)]
GIT_SILENT Upgrade KDE Applications version to 15.08.0.
Albert Astals Cid [Wed, 5 Aug 2015 19:43:10 +0000 (21:43 +0200)]
GIT_SILENT Upgrade KDE Applications version to 15.07.90.
Emmanuel Pescosta [Mon, 27 Jul 2015 20:04:59 +0000 (22:04 +0200)]
Remove unused KBookmarkManager::bookmarksChanged signal-slot connection, because we don't use KBoomark's D-Bus signaling anymore.
REVIEW: 124497
Ragnar Thomsen [Wed, 29 Jul 2015 20:54:54 +0000 (22:54 +0200)]
Enable automatic update of version number
Use CMake variables autoupdated by release script. Dolphin version is
automatically updated to KDE Applications version.
David Faure [Wed, 29 Jul 2015 20:53:06 +0000 (22:53 +0200)]
Fix "make install" with ninja.
The custom command name must differ from the name of the generated file.
Christian Butcher [Mon, 27 Jul 2015 20:29:00 +0000 (22:29 +0200)]
Change the Dolphin places icons:
* folder-txt => folder-text
* folder-video => folder-videos
* folder-image => folder-images
Thanks to andreas_k and Christian Butcher!
BUG: 347257
FIXED-IN: 15.08.0
l10n daemon script [Mon, 27 Jul 2015 11:01:31 +0000 (11:01 +0000)]
SVN_SILENT made messages (after extraction)
l10n daemon script [Mon, 27 Jul 2015 07:54:02 +0000 (07:54 +0000)]
SVN_SILENT made messages (after extraction)
l10n daemon script [Sun, 26 Jul 2015 21:43:38 +0000 (21:43 +0000)]
SVN_SILENT made messages (.desktop file)
l10n daemon script [Sun, 26 Jul 2015 19:57:51 +0000 (19:57 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours
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"
l10n daemon script [Fri, 3 Jul 2015 08:27:31 +0000 (08:27 +0000)]
SVN_SILENT made messages (after extraction)
l10n daemon script [Wed, 24 Jun 2015 10:34:19 +0000 (10:34 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours
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"
l10n daemon script [Sat, 20 Jun 2015 09:39:15 +0000 (09:39 +0000)]
SVN_SILENT made messages (after extraction)
l10n daemon script [Tue, 16 Jun 2015 13:31:20 +0000 (13:31 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours
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"
l10n daemon script [Thu, 4 Jun 2015 11:19:31 +0000 (11:19 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours
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"
l10n daemon script [Sun, 31 May 2015 10:13:13 +0000 (10:13 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours
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"
Burkhard Lück [Thu, 28 May 2015 07:53:27 +0000 (09:53 +0200)]
update screenshots to kf5
l10n daemon script [Wed, 13 May 2015 11:01:45 +0000 (11:01 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours
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"
Raymond Wooninck [Mon, 11 May 2015 19:45:07 +0000 (21:45 +0200)]
Remove unneeded include to fix build
CCMAIL: me@vhanda.in
Vishesh Handa [Tue, 5 May 2015 14:32:23 +0000 (16:32 +0200)]
Move away from Baloo::Term
Baloo is set to become a framework and wants to only export the bare
minimum number of classes as it will need to provide ABI + API
guarentees forever. The Term class is now no longer exported. It can be
added back again.
REVIEW: 123643
Frank Reininghaus [Thu, 7 May 2015 20:09:01 +0000 (21:09 +0100)]
Fix KFileItemModel performance regression
Commit
119f7a3f fixed a crash that was caused by the porting of the
natural sorting code to QCollator. QCollator is not thread-safe, so
every thread needs its own instance. However, that commit made every
recursive call in the sorting code create a new deep-copied QCollator
instance, which is quite expensive and thus made inserting any items
into the model very slow (this could also be seen in the KFileItemModel
benchmark).
This commit avoids unnecessary QCollator copying by forcing all sorting
functions which are called in the same thread to pass the 'lessThan'
object by const reference, such that no unnecessary copying of that
object, including a deep copy of the QCollator, takes place.
REVIEW: 123620
Frank Reininghaus [Thu, 7 May 2015 20:06:42 +0000 (21:06 +0100)]
Simplify the KFileItemModel benchmark
The benchmark inserted KFileItemLists of different sizes in the model.
The intention was to verify that an O(N^2) complexity issue was fixed.
However, now that this original problem does not exist any more, the
benchmark results are much easier to read, and regressions are much
easier to spot at first sight, if only a single list size is used.
l10n daemon script [Thu, 7 May 2015 08:33:58 +0000 (08:33 +0000)]
SVN_SILENT made messages (after extraction)
Ashish Bansal [Wed, 6 May 2015 10:17:18 +0000 (15:47 +0530)]
Scroll by page if Shift Key is pressed
If shift key is pressed along with scroll, scroll up/down by whole page.
REVIEW: 123596
l10n daemon script [Tue, 5 May 2015 14:00:14 +0000 (14:00 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours
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"
l10n daemon script [Mon, 4 May 2015 10:09:13 +0000 (10:09 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours
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"
Gregor Mi [Sun, 3 May 2015 18:40:04 +0000 (20:40 +0200)]
Remove SpaceInfoToolsMenu and use KMoreToolsMenuFactory instead
Reduces the amount of needed code.
NEW: by using KMoreTools the menu is now user-configurable and
will automatically extended when KMoreToolsPresets gets new tools.
REVIEW: 122911
Vishesh Handa [Wed, 29 Apr 2015 12:41:25 +0000 (14:41 +0200)]
SearchBox: Baloo now only searches through Files
We no longer need to explicitly state files
Emmanuel Pescosta [Mon, 27 Apr 2015 11:41:57 +0000 (13:41 +0200)]
Use KPropertiesDialog::showDialog(urls) in DBusInterface::ShowItemProperties
instead of showing a new properties dialog for each url.
REVIEW: 123524
Emmanuel Pescosta [Mon, 27 Apr 2015 12:16:45 +0000 (14:16 +0200)]
Use user-places.xbel instead of bookmarks.xml in places model.
REVIEW: 123526
CCBUG: 345174
FIXED-IN: 15.08.0
Emmanuel Pescosta [Mon, 27 Apr 2015 11:01:18 +0000 (13:01 +0200)]
Reorder code in main.cpp ("cluster definitions and setters")
Emmanuel Pescosta [Mon, 27 Apr 2015 10:55:53 +0000 (12:55 +0200)]
Simplify startup split view handling
* Instead of setting and resetting GeneralSettings's split view option, just pass it on to openFiles/openDirectories.
* Require at least one url in openFiles/openDirectories
REVIEW: 123395
l10n daemon script [Sun, 26 Apr 2015 09:44:42 +0000 (09:44 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours
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"
l10n daemon script [Fri, 24 Apr 2015 09:52:38 +0000 (09:52 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours
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"
Frank Reininghaus [Thu, 23 Apr 2015 23:44:31 +0000 (01:44 +0200)]
Remove obsolete benchmark for inserting many child items
I added this benchmark quite a long time ago in order to check that the
changes in
dc6322dc090bcaec40d75522debad1edfb25b27a do not make
inserting many child items into the model slower. The test tries to
insert child items of different subfolders at the same time, which
cannot happen during normal usage because KDirLister only tells us about
one subfolder at a time.
The code was commented out a long time ago because it is no longer
compatible with the (greatly improved) new internal structure of
KFileItemModel. I think that it's not worth porting the benchmark
because it fulfilled its intended purpose a long time ago. Even if
someone decides to make a simplified working new benchmark out of it at
some point, it does not make much sense to keep this commented-out code
around for years. It can still be found in the git history - after all,
that's what version control systems are for.
Lasse Liehu [Thu, 9 Apr 2015 23:53:05 +0000 (02:53 +0300)]
Enable translation scripting for date groups
This allows to work around limitations in Qt's date formatting.
Examples:
* Uppercasing the first character in a string because it's a title:
Day of the week and month names returned by QDateTime::toString
are usually lowercase.
* Correcting the noun case of a month name from "of [month]" to
"in [month]" in Finnish: "of [month]" is correct when talking
about a specific day, but wrong when talking about a specific month.
REVIEW: 123278
Lasse Liehu [Thu, 9 Apr 2015 23:41:00 +0000 (02:41 +0300)]
Rewrap lines in KFileItemModel::dateRoleGroups
Now they are under 100 characters.
Ashish Bansal [Wed, 22 Apr 2015 13:29:39 +0000 (18:59 +0530)]
Add dbus interface to dolphin
Implemented org.freedesktop.FileManager1 dbus interface in dolphin
http://www.freedesktop.org/wiki/Specifications/file-manager-interface/
REVIEW: 123313
BUG: 343016
l10n daemon script [Sat, 18 Apr 2015 08:56:17 +0000 (08:56 +0000)]
SVN_SILENT made messages (after extraction)
l10n daemon script [Sat, 4 Apr 2015 11:02:00 +0000 (11:02 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours
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"
David Edmundson [Tue, 31 Mar 2015 13:19:51 +0000 (15:19 +0200)]
Remove deprecated X scaling of QPixmaps
QPixmaps are no longer X pixmaps so this won't ever work anymore
REVIEW: 123138
Kai Uwe Broulik [Tue, 31 Mar 2015 10:30:36 +0000 (12:30 +0200)]
Show kdeconnect devices under "Devices"
We probably need a more sophisticated heuristic for identifying devices in the places
panel but given we already did that for Bluetooth should do for the foreseeable future.
REVIEW: 123189
BUG: 337222
David Edmundson [Mon, 30 Mar 2015 11:39:17 +0000 (13:39 +0200)]
Merge branch 'davidedmundson/highdpi'
REVIEW: 123137
David Edmundson [Fri, 27 Mar 2015 14:43:06 +0000 (15:43 +0100)]
review comments
David Edmundson [Thu, 26 Mar 2015 15:06:52 +0000 (16:06 +0100)]
Make KPixmapModifier::applyFrame handle high DPI images
David Edmundson [Wed, 25 Mar 2015 11:43:56 +0000 (12:43 +0100)]
Paint icons at the correct size
David Edmundson [Wed, 25 Mar 2015 11:41:57 +0000 (12:41 +0100)]
squash me with a some other commit in kitemlistwidgetinformant
David Edmundson [Wed, 25 Mar 2015 11:41:18 +0000 (12:41 +0100)]
Copy device pixel ratio from original pixmap inside KPixmapModifier::scale
David Edmundson [Thu, 5 Mar 2015 14:12:52 +0000 (15:12 +0100)]
Create drag pixmaps which match the device pixel ratio
David Edmundson [Wed, 25 Mar 2015 11:38:55 +0000 (12:38 +0100)]
Provide scaled pixmaps in the main file model
David Edmundson [Wed, 25 Mar 2015 11:38:02 +0000 (12:38 +0100)]
Enable high DPI pixmaps in Dolphin
David Edmundson [Wed, 11 Mar 2015 16:16:49 +0000 (17:16 +0100)]
Center align pixmaps in a high DPR friendly way
Emmanuel Pescosta [Sat, 21 Mar 2015 16:39:20 +0000 (17:39 +0100)]
Save bookmarks when adding them via the context menu.
CCBUG: 345347
REVIEW: 123080
Yuri Chornoivan [Thu, 19 Mar 2015 18:13:40 +0000 (20:13 +0200)]
Fix some EBN issues
l10n daemon script [Sun, 15 Mar 2015 09:54:53 +0000 (09:54 +0000)]
SVN_SILENT made messages (.desktop file) - always resolve ours
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"
David Rosca [Sat, 14 Mar 2015 10:26:10 +0000 (11:26 +0100)]
Make obexftp places group under devices
REVIEW: 122935
l10n daemon script [Thu, 12 Mar 2015 10:17:33 +0000 (10:17 +0000)]
SVN_SILENT made messages (.desktop file)
l10n daemon script [Thu, 12 Mar 2015 08:49:38 +0000 (08:49 +0000)]
SVN_SILENT made messages (after extraction)
l10n daemon script [Wed, 11 Mar 2015 09:43:09 +0000 (09:43 +0000)]
SVN_SILENT made messages (.desktop file)
l10n daemon script [Tue, 10 Mar 2015 13:14:42 +0000 (13:14 +0000)]
SVN_SILENT made messages (.desktop file)
l10n daemon script [Mon, 9 Mar 2015 09:36:36 +0000 (09:36 +0000)]
SVN_SILENT made messages (.desktop file)
Montel Laurent [Sun, 8 Mar 2015 17:57:23 +0000 (18:57 +0100)]
Use new KDE_ macro
l10n daemon script [Sun, 8 Mar 2015 09:41:37 +0000 (09:41 +0000)]
SVN_SILENT made messages (.desktop file)
l10n daemon script [Sun, 8 Mar 2015 08:09:58 +0000 (08:09 +0000)]
SVN_SILENT made messages (after extraction)
Chusslove Illich (Часлав Илић) [Sat, 7 Mar 2015 11:01:42 +0000 (12:01 +0100)]
i18n: All visible text must be wrapped.
l10n daemon script [Sat, 7 Mar 2015 10:01:52 +0000 (10:01 +0000)]
SVN_SILENT made messages (.desktop file)
l10n daemon script [Sat, 7 Mar 2015 08:32:09 +0000 (08:32 +0000)]
SVN_SILENT made messages (after extraction)
Albert Astals Cid [Fri, 6 Mar 2015 21:44:23 +0000 (22:44 +0100)]
Use the same doc folder name everyone else uses
l10n daemon script [Fri, 6 Mar 2015 04:32:04 +0000 (04:32 +0000)]
SVN_SILENT made messages (.desktop file)
Hrvoje Senjan [Fri, 27 Feb 2015 19:17:59 +0000 (20:17 +0100)]
Fix build in a kdelibs4-free enviroment
If one had kdelibs includes in /usr, they would get magically
picked up, so the build would succeed.
Emmanuel Pescosta [Fri, 27 Feb 2015 10:30:27 +0000 (11:30 +0100)]
Merge branch 'frameworks'
Emmanuel Pescosta [Fri, 27 Feb 2015 07:58:46 +0000 (08:58 +0100)]
Merge branch 'master' of git://anongit.kde.org/dolphin
Emmanuel Pescosta [Fri, 27 Feb 2015 07:16:15 +0000 (08:16 +0100)]
Fixed TODO Remove the if/endif lines if Dolphin is split.
l10n daemon script [Fri, 27 Feb 2015 01:58:33 +0000 (01:58 +0000)]
SVN_SILENT made messages (after extraction)
Heiko Becker [Thu, 26 Feb 2015 14:36:51 +0000 (15:36 +0100)]
Use QT_GUILESS_MAIN
REVIEW: 122730
Emmanuel Pescosta [Thu, 26 Feb 2015 16:40:06 +0000 (17:40 +0100)]
Port away from KDELibs4Support (we only use KDELibs4Support when baloo isn't present, because KFileMetaDataWidget is in KDELibs4Support)
Reviewed-By: Vishesh Handa
Emmanuel Pescosta [Thu, 26 Feb 2015 16:15:18 +0000 (17:15 +0100)]
Next QUrl porting bug found: search include directories
Emmanuel Pescosta [Thu, 26 Feb 2015 16:09:46 +0000 (17:09 +0100)]
Revert "Use the Baloo Query Builder widget to add syntax-highlighting in Dolphin search"
The natural query parser is too unstable for the release atm, we'll readd the
query parser when the code is mature enough.
This reverts commit
e3578ee3b770a1b8f359ed1a3cc6e3ac7f6c700e .
Emmanuel Pescosta [Thu, 26 Feb 2015 13:38:55 +0000 (14:38 +0100)]
Merge branch 'master' into frameworks
Emmanuel Pescosta [Thu, 26 Feb 2015 13:37:18 +0000 (14:37 +0100)]
added .reviewboardrc
Emmanuel Pescosta [Wed, 25 Feb 2015 20:55:46 +0000 (21:55 +0100)]
Merge branch 'master' into frameworks
Emmanuel Pescosta [Wed, 25 Feb 2015 20:53:21 +0000 (21:53 +0100)]
Merge branch 'Applications/14.12'
Emmanuel Pescosta [Wed, 25 Feb 2015 20:45:19 +0000 (21:45 +0100)]
Bump the Qt version to 5.4 and the KF5 version to 5.7
Added all required components
Reviewed-By: David Edmundson
David Edmundson [Wed, 25 Feb 2015 20:40:24 +0000 (21:40 +0100)]
Fix DolphinVcs cmake to be findable
Reviewed-By: Emmanuel Pescosta
Emmanuel Pescosta [Wed, 25 Feb 2015 16:32:30 +0000 (17:32 +0100)]
readded missing isVersioned check in VersionControlObserver::actions()
Emmanuel Pescosta [Wed, 25 Feb 2015 11:12:55 +0000 (12:12 +0100)]
Move the KVersionControlPlugin2 interface from konqlib to Dolphin and remove the deprecated KVersionControlPlugin interface from konqlib
REVIEW: 122687
Hrvoje Senjan [Tue, 24 Feb 2015 16:07:55 +0000 (17:07 +0100)]
Fix build on Jenkins (or with BUILD_TESTING=ON)
Emmanuel Pescosta [Tue, 24 Feb 2015 14:52:45 +0000 (15:52 +0100)]
Fix the build of kde-baseapps temporarily (categorized logging in DolphinPart)
Luca Beltrame [Tue, 24 Feb 2015 13:14:36 +0000 (14:14 +0100)]
Fix the build temporarily
The port of Dolphin to categorized logging created errors in one
specific point only, in main.cpp:
undefined reference to `DolphinDebug()'
I couldn't spot any obvious error, so for now I did it the bad way
(warnings should not be commented out!) to keep it building while a
real solution is found.
CCMAIL: emmanuelpescosta099@gmail.com
Emmanuel Pescosta [Tue, 24 Feb 2015 12:07:35 +0000 (13:07 +0100)]
Replace kDebug/kWarning by categorized logging (org.kde.dolphin)
Emmanuel Pescosta [Tue, 24 Feb 2015 11:51:24 +0000 (12:51 +0100)]
Removed unused KGlobal includes and use KIO/Job instead of KIO/JobClasses
Emmanuel Pescosta [Tue, 24 Feb 2015 11:25:28 +0000 (12:25 +0100)]
include KFileItem instead of KFileItemList
Emmanuel Pescosta [Tue, 24 Feb 2015 11:22:16 +0000 (12:22 +0100)]
Port away from KLocale
l10n daemon script [Sat, 21 Feb 2015 06:26:31 +0000 (06:26 +0000)]
SVN_SILENT made messages (after extraction)
l10n daemon script [Sat, 21 Feb 2015 01:59:29 +0000 (01:59 +0000)]
SVN_SILENT made messages (after extraction)
Emmanuel Pescosta [Wed, 18 Feb 2015 12:17:42 +0000 (13:17 +0100)]
Fix a QDateTime porting bug (different format expressions) in KFileItemModel::dateRoleGroups
REVIEW: 122625
Emmanuel Pescosta [Fri, 20 Feb 2015 09:47:23 +0000 (10:47 +0100)]
Missed a saveBookmarks call in the PlacesItemModel's deconstructor (see commit
2a79feaea0088730bbf4fd4b65baa1c4a91b84b9 )