┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/main.cpp
AgeCommit message (Collapse)Author
2015-04-22Add dbus interface to dolphinAshish Bansal
Implemented org.freedesktop.FileManager1 dbus interface in dolphin http://www.freedesktop.org/wiki/Specifications/file-manager-interface/ REVIEW: 123313 BUG: 343016
2015-03-25Enable high DPI pixmaps in DolphinDavid Edmundson
2015-02-25Bump the Qt version to 5.4 and the KF5 version to 5.7Emmanuel Pescosta
Added all required components Reviewed-By: David Edmundson
2015-02-24Fix build on Jenkins (or with BUILD_TESTING=ON)Hrvoje Senjan
2015-02-24Fix the build temporarilyLuca Beltrame
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: [email protected]
2015-02-24Replace kDebug/kWarning by categorized logging (org.kde.dolphin)Emmanuel Pescosta
2015-02-10Assume links passed via cmdline args are local filesArjun AK
If not, when the user types 'dolphin nonexistantfile' he will be taken to 'http://nonexistantfile' BUG: 343906
2015-02-09Construct URLs passed via cmdline args using QUrl::fromUserInput()Arjun AK
Otherwise user will have to type "dolphin file:///tmp" instead of "dolphin /tmp" REVIEW: 122475 BUG: 343906
2015-02-06Migrate settingsMontel Laurent
2015-02-04Add dolphin dbus serviceEmmanuel Pescosta
2015-02-04Port Dolphin away from KApplication, KCmdLineArgs and K4AboutDataMathieu Tarral
2014-11-20Fix Exports.Andrius da Costa Ribas
REVIEW: 121078
2014-10-18Fix includesMontel Laurent
2014-10-16Merge remote-tracking branch 'origin/master' into frameworksFrank Reininghaus
Conflicts: dolphin/src/main.cpp kdepasswd/kcm/kcm_useraccount.desktop plasma/applets/folderview/folderview.cpp
2014-10-16Update "About" dialog after maintainership changeFrank Reininghaus
See http://lists.kde.org/?t=140990649300001&r=1&w=2 REVIEW: 120608
2014-06-04Change the Dolphin version in frameworks to 4.60Frank Reininghaus
Since the KF5 libraries and the applications will not have a synchronized release schedule any more, it does not make sense to continue using KDE_VERSION_STRING as the Dolphin version.
2014-05-05Allow compiling Dolphin with KF5Alex Richardson
This does not work properly yet, there are probably quite a few bad signal/ slot connections due to KUrl -> QUrl. However dolphin starts without crashing. Accessibility is not ported since that changed quite a lot from Qt4 -> Qt5 and I have no idea how it is supposed to be used. This is the first commit for review 117395
2014-01-12Update copyright yearFrank Reininghaus
2013-06-26Use the KDE SC version also as the Dolphin versionsFrank Reininghaus
This has some advantages: (a) The version actually changes for every bug fix release, making it easier to find out which version a bug reporter has used. (b) No changes in Dolphin's source code are required to keep the version always up to date. (c) It is more transparent for users because there are not two different versions any more.
2013-05-11Update copyright yearFrank Reininghaus
2013-02-17Update Dolphin version to 2.2.60Frank Reininghaus
2013-01-30Merge remote-tracking branch 'origin/KDE/4.10'Frank Reininghaus
Conflicts: dolphin/src/tests/kfileitemmodeltest.cpp
2013-01-29Update Dolphin version to 2.2 for KDE 4.10.0Frank Reininghaus
2013-01-16Merge remote-tracking branch 'origin/KDE/4.10'Luca Beltrame
2013-01-15Update Dolphin version to 2.1.98 for KDE 4.10 RC 3Frank Reininghaus
2013-01-13Update Dolphin's About dialogFrank Reininghaus
Emmanuel has contributed a lot of useful patches to Dolphin. Thank you very much for that! The Dolphin community is looking forward to further contributions from you. CCMAIL: [email protected]
2012-12-27Increase Dolphin version to 2.1.97 for the 2nd release candidateFrank Reininghaus
2012-12-07Merge remote-tracking branch 'origin/KDE/4.9'Frank Reininghaus
2012-12-07Update Dolphin version to 2.1.95 for KDE 4.10 RC 1Frank Reininghaus
2012-12-05Added curly brackets around DolphinApplication creation and execution, to ↵Hugo Pereira Da Costa
make sure it is deleted before "return 0;" is called. This might prevent random crashes due to the de-allocation chain in Qt at exit. CCBUG: 311092
2012-11-24Update Dolphin version to 2.1.85 for KDE 4.10 Beta 2Frank Reininghaus
2012-11-12Update Dolphin version to 2.1.80Frank Reininghaus
2012-07-10Change of Dolphin Maintainership (patch by Peter Penz)Frank Reininghaus
2012-06-24Increase version to 2.1Peter Penz
2012-03-19Fix translation issue in context-menuPeter Penz
Thanks to Alexander Potashev for the patch! BUG: 290620 FIXED-IN: 4.8.2
2012-01-07Revert patch using the native graphicssystem as defaultPeter Penz
I'm trusting Christoph Feck's advice here. Additionally the smooth scaling has been activated to fix bug 290865. BUG: 290865 FIXED-IN: 4.8.0
2012-01-07Use the native graphicssystem per defaultPeter Penz
The scaling of pixmaps is just way too slow with the raster graphicssystem (see KPixmapModifier::scalePixmap()). It is of course still possible to run Dolphin with the raster graphicssystem, but this has to be done explicitly then. CCBUG: 290865
2011-12-23Increased version numberPeter Penz
2011-11-05Add Frank Reininghaus and Sebastian Trüg to the About-dialogPeter Penz
2011-07-30Merged very early alpha-version of Dolphin 2.0Peter Penz
Dolphin 2.0 will get a new view-engine with the following improvements: - Better performance - Animated transitions - No clipped filenames due to dynamic item-sizes - Grouping support for all view-modes - Non-rectangular selection areas - Simplified code for better maintenance More details will be provided in a blog-entry during the next days. Please note that the code is in a very early alpha-stage and although the most tricky parts have been implemented already very basic things like drag and drop or selections have not been pushed yet. Those things are rather trivial to implement but this still will take some time.
2011-04-12Let each DolphinMainWindow run in a custom processPeter Penz
A possible crash in one Dolphin window should not result in crashing other Dolphin windows. Beside this it also prevents issues with modal dialogs or notifications. BUG: 269950 BUG: 206053 BUG: 196034 FIXED-IN: 4.7.0
2011-02-09Use capitalized includes of recently committed kdelibs headersPeter Penz
2011-02-04Update e-mail address from [email protected] to [email protected]Peter Penz
2011-02-04Use capitalized KDE includesPeter Penz
2011-01-30Updated copyright informationPeter Penz
2011-01-01Increase version to 1.6.9Peter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1210665
2010-08-13Update version and e-mail addressPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1163344
2010-07-26Re-revert hodge-podge commits by `markuss` with bogus or without commit ↵Martin Tobias Holmedahl Sandsmark
messages. (White space changes, breaking of copyright headers, fudging of dates in copyright notices, re-assignments of copyrights to fictitious entities, and more.) Commits reverted: markuss * r1154942 runtime/trunk/KDE/kdebase/runtime/kdesu/FAQ: markuss * r1154943 workspace/trunk/KDE/kdebase/workspace/plasma/README: markuss * r1154952 apps/trunk/KDE/kdebase/apps/dolphin/src/main.cpp: markuss * r1154953 apps/trunk/KDE/kdebase/apps/kfind/main.cpp: markuss * r1154955 apps/trunk/KDE/kdebase/apps/konsole/src/main.cpp: markuss * r1154956 apps/trunk/KDE/kdebase/apps/kwrite/kwritemain.cpp: markuss * r1154957 runtime/trunk/KDE/kdebase/runtime/kcmshell/main.cpp: markuss * r1154958 runtime/trunk/KDE/kdebase/runtime/kde-menu/kde-menu.cpp: markuss * r1154960 runtime/trunk/KDE/kdebase/runtime/kdesu/kdesu/kdesu.cpp: markuss * r1154961 runtime/trunk/KDE/kdebase/runtime/kquitapp/kquitapp.cpp: markuss * r1154962 workspace/trunk/KDE/kdebase/workspace/kinfocenter/main.cpp: markuss * r1154963 workspace/trunk/KDE/kdebase/workspace/klipper/klipper.cpp: markuss * r1154965 workspace/trunk/KDE/kdebase/workspace/powerdevil/ (3 files in 2 dirs): markuss * r1154969 workspace/trunk/KDE/kdebase/workspace/systemsettings/app/main.cpp: svn path=/trunk/KDE/kdebase/apps/; revision=1154990
2010-07-26Slightly modified 'About' window to:Markus Meik Slopianka
a.) Carry the "Copyright" term (legally required) b.) Use Unicode (© and en-dash) To the module owner: Please consider bumping the copyright year to 2011 (SC 4.6 will be released then) svn path=/trunk/KDE/kdebase/apps/; revision=1154952
2010-07-26Revert r1154600: Modified (some) 'About' windows to carry legally ↵Alex Merry
enforceable Copyright messages. Also looks better than '(c)'. ;-) Also fixed a few typos where I noticed them. Please don't do huge sweeping changes of KAboutData things without talking to the authors first. I'm sure they don't appreciate having their names removed from the about dialogs. Note that (a) the unicode copyright character is no more enforcible than (c) (b) while "the KDE developers" is not a legal entity, neither is "Dolphin authors" (c) it was decided a while back that we don't care about whether the copyrights in about dialogs are meaningful, since they can't hope to encompass everyone who holds copyrights on the application code or any of the libraries it is linked to; the copyright headers in the source files are the important ones. I realise that I'm reverting more than necessary, but that's just a reason for breaking up commits :-) CCMAIL: [email protected] CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=1154884