| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-02-27 | SVN_SILENT made messages (after extraction) | l10n daemon script | |
| 2015-02-25 | Merge branch 'Applications/14.12' | Emmanuel Pescosta | |
| 2015-02-21 | SVN_SILENT made messages (after extraction) | l10n daemon script | |
| 2015-02-21 | SVN_SILENT made messages (after extraction) | l10n daemon script | |
| 2015-02-20 | Missed a saveBookmarks call in the PlacesItemModel's deconstructor (see ↵ | Emmanuel Pescosta | |
| commit 2a79feaea0088730bbf4fd4b65baa1c4a91b84b9) | |||
| 2015-02-19 | Merge branch 'Applications/14.12' | Emmanuel Pescosta | |
| 2015-02-19 | Increase the version number to 14.12.3 | Emmanuel Pescosta | |
| 2015-02-19 | Sync bookmark manager only if the change was done by the current process | Emmanuel Pescosta | |
| Adoption of http://commits.kde.org/kdelibs/2b5c6e42fc8114c6854ce490b9cdd4356be683d9 FIXED-IN: 14.12.3 BUG: 343620 BUG: 310080 REVIEW: 122640 | |||
| 2015-02-09 | SVN_SILENT made messages (after extraction) | l10n daemon script | |
| 2015-02-05 | SVN_SILENT made messages (.desktop file) | l10n daemon script | |
| 2015-02-05 | SVN_SILENT made messages (.desktop file) | l10n daemon script | |
| 2015-01-25 | SVN_SILENT made messages (.desktop file) | l10n daemon script | |
| 2015-01-24 | SVN_SILENT made messages (.desktop file) | l10n daemon script | |
| 2015-01-23 | SVN_SILENT made messages (.desktop file) | l10n daemon script | |
| 2015-01-21 | SVN_SILENT made messages (.desktop file) | l10n daemon script | |
| 2014-12-26 | SVN_SILENT made messages (.desktop file) | l10n daemon script | |
| 2014-12-25 | SVN_SILENT made messages (.desktop file) | l10n daemon script | |
| 2014-11-26 | Set version number to 14.11.97 for the KDE Applications 14.12 RC | Emmanuel Pescosta | |
| 2014-11-22 | SVN_SILENT made messages (after extraction) | l10n daemon script | |
| 2014-11-21 | Merge branch 'Applications/14.12' | Frank Reininghaus | |
| 2014-11-21 | Update Dolphin version to 4.14.98 for Release Candidate | Frank Reininghaus | |
| Using KDE_VERSION_STRING as the Dolphin version was convenient, but it does not make sense anymore because it is fixed at 4.14.3 now. REVIEW: 121195 | |||
| 2014-11-17 | SVN_SILENT made messages (after extraction) | l10n daemon script | |
| 2014-11-11 | SVN_SILENT made messages (after extraction) | l10n daemon script | |
| 2014-11-10 | Merge branch 'Applications/14.12' | Emmanuel Pescosta | |
| 2014-11-09 | Make sure that m_selectionToggle is not 0 before calling deleteLater() | Frank Reininghaus | |
| Commit 1938ad54d4ee640f04d24bad3b690095bc9b8668 replaced delete by deleteLater(). However, the latter cannot be used safely with null pointers. This commit adds a safety check in order to make sure that we do not get a crash. Thanks to Christoph Feck for pointing out this issue. | |||
| 2014-11-09 | Use deleteLater() to delete the selection toggle in KItemListWidget | Frank Reininghaus | |
| This patch should make a crash with a backtrace as provided in the bug report impossible. I'm not sure if this would really prevent the crash - it looks like the actual cause of the problem could be in QGraphicsView or anywhere else, but it's hard to tell because the bug was reported just once and does not seem reproducible. But I'm pretty sure that this change doesn't make anything worse. BUG: 334785 REVIEW: 121087 | |||
| 2014-11-09 | Ensure input is a valid regexp before enabling regexp filter mode | Arjun AK | |
| Checking whether the input contains '*', '?' or '[' alone will not do since there can be files with '[' in their name. REVIEW: 120986 BUG: 340470 FIXED-IN: 14.12 | |||
| 2014-11-09 | SVN_SILENT made messages (after extraction) | l10n daemon script | |
| 2014-11-09 | SVN_SILENT made messages (after extraction) | l10n daemon script | |
| 2014-11-07 | SVN_SILENT made messages (after extraction) | l10n daemon script | |
| 2014-11-04 | SVN_SILENT made messages (after extraction) | l10n daemon script | |
| 2014-10-29 | Merge branch 'KDE/4.14' | Emmanuel Pescosta | |
| 2014-10-29 | Hide the video player when the video has finished. | Emmanuel Pescosta | |
| BUG: 339882 FIXED-IN: 4.14.3 REVIEW: 120776 | |||
| 2014-10-24 | Merge remote-tracking branch 'origin/KDE/4.14' | Frank Reininghaus | |
| 2014-10-24 | Make the view/Terminal Panel synchronization less error-prone | Frank Reininghaus | |
| The previous solution could cause problems if the user navigates to a different URL in one view, and then activates another split view very quickly: the new active view might be switched to the same URL as the first view, which is unwanted. To fix this problem, we record a history of "cd" commands that Dolphin sends to the Terminal Panel in a queue. If a currentDirectoryChanged signal is received, and the new terminal directory is "dir", this patch does the following: 1. If the queue is empty, change the view URL to "dir". 2. Otherwise, take the queue's head, and check if it is equal to "dir". If that is the case, ignore the signal and return. 3. Go back to step 1. This ensures that every currentDirectoryChange signal that is caused by a "cd" that was sent from Dolphin to the terminal is ignored. BUG: 339009 BUG: 314038 REVIEW: 120768 | |||
| 2014-10-24 | Fix the information panel video player in Dolphin. | Andrey Bondrov | |
| Patch from ROSA Linux. BUG: 337107 BUG: 337033 BUG: 334924 CCBUG: 339882 REVIEW: 120745 FIXED-IN: 4.14.3 | |||
| 2014-10-23 | Merge branch 'KDE/4.14' | Frank Reininghaus | |
| 2014-10-23 | Connect to the currentDirectoryChanged signal after the shell setup | Frank Reininghaus | |
| This fixes the problem that the view URL may be reset to the Home URL when opening the Terminal Panel while browsing a remote URL. Moreover, it fixes crashes that can occur when the signal is received during the shell setup if the DolphinMainWindow does not have a valid m_activeViewContainer yet. BUG: 339502 BUG: 340233 REVIEW: 120726 FIXED-IN: 4.14.3 | |||
| 2014-10-16 | Merge remote-tracking branch 'origin/KDE/4.14' | Frank Reininghaus | |
| 2014-10-16 | Update "About" dialog after maintainership change | Frank Reininghaus | |
| See http://lists.kde.org/?t=140990649300001&r=1&w=2 REVIEW: 120608 | |||
| 2014-10-13 | Made the free space indicator and zoom slider a little bit larger. (was ↵ | Emmanuel Pescosta | |
| reduced by an older commit) BUG: 339768 FIXED-IN: 4.14.3 | |||
| 2014-10-12 | SVN_SILENT made messages (.desktop file) | l10n daemon script | |
| 2014-10-12 | SVN_SILENT made messages (after extraction) | l10n daemon script | |
| 2014-10-12 | SVN_SILENT made messages (.desktop file) | l10n daemon script | |
| 2014-10-12 | SVN_SILENT made messages (after extraction) | l10n daemon script | |
| 2014-10-09 | SVN_SILENT made messages (after extraction) | l10n daemon script | |
| 2014-10-09 | SVN_SILENT made messages (after extraction) | l10n daemon script | |
| 2014-09-21 | Merge branch 'KDE/4.14' | Luca Beltrame | |
| 2014-09-21 | Do not allow files or folders inside trash to be added to dolphin's places panel | Arjun AK | |
| REVIEW: 120286 BUG: 339204 FIXED-IN: 4.14.2 | |||
| 2014-09-11 | Merge branch 'KDE/4.14' | Emmanuel Pescosta | |
