┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-10-29Merge branch 'KDE/4.14'Emmanuel Pescosta
2014-10-29Hide the video player when the video has finished.Emmanuel Pescosta
BUG: 339882 FIXED-IN: 4.14.3 REVIEW: 120776
2014-10-24Merge remote-tracking branch 'origin/KDE/4.14'Frank Reininghaus
2014-10-24Make the view/Terminal Panel synchronization less error-proneFrank 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-24Fix 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-23Merge branch 'KDE/4.14'Frank Reininghaus
2014-10-23Connect to the currentDirectoryChanged signal after the shell setupFrank 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-16Merge remote-tracking branch 'origin/KDE/4.14'Frank Reininghaus
2014-10-16Update "About" dialog after maintainership changeFrank Reininghaus
See http://lists.kde.org/?t=140990649300001&r=1&w=2 REVIEW: 120608
2014-10-13Made 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-12SVN_SILENT made messages (.desktop file)l10n daemon script
2014-10-12SVN_SILENT made messages (after extraction)l10n daemon script
2014-10-12SVN_SILENT made messages (.desktop file)l10n daemon script
2014-10-12SVN_SILENT made messages (after extraction)l10n daemon script
2014-10-09SVN_SILENT made messages (after extraction)l10n daemon script
2014-10-09SVN_SILENT made messages (after extraction)l10n daemon script
2014-09-21Merge branch 'KDE/4.14'Luca Beltrame
2014-09-21Do not allow files or folders inside trash to be added to dolphin's places panelArjun AK
REVIEW: 120286 BUG: 339204 FIXED-IN: 4.14.2
2014-09-11Merge branch 'KDE/4.14'Emmanuel Pescosta
2014-09-10Set the focus to the active view if the current tab has been changed.Emmanuel Pescosta
BUG: 338892 FIXED-IN: 4.15.0 REVIEW: 120125
2014-09-02Rename "Recently Accessed" to "Recently Saved"kdeuser 56
In dolphin the Section that leads you to timeline claims to show "Recently Accessed", which is not true, it shows "Recently Saved" instead. BUG: 304854 REVIEW: 119986
2014-09-01Make it possible to open archives via the command lineFrank Reininghaus
This used to work before afcf8961f6666a912e0e6e5072a000837f7cf6aa (only if "Open archives as folder" was enabled in the settings though). The reason why this commit broke it is that the mime type of a file is not determined automatically any more before asking KProtocolManager::protocolForArchiveMimetype for the correct protocol, so the determination of the protocol may fail. Keeping the isMimeTypeKnown() check in DolphinView::openItemAsFolderUrl still makes sense, because it prevents GUI blocking if the user tries to open many files at the same time. Therefore, we now call determineMimeType() in DolphinViewContainer::slotUrlIsFileError(const KUrl&) and then try to determine the correct protocol and use it to open the archive in the view, rather than hoping that slotItemActivated(item) will do the right thing. BUG: 333078 REVIEW: 119877 FIXED-IN: 4.14.1
2014-08-31Only keep the active view container connected with the main window, all inactiveEmmanuel Pescosta
view containers are disconnected. Changing the connections is done whenever the active view has been changed, so we can always guarantee that the active view is connected. The problem with restoring saved sessions is, that we create a new view container in DolphinTabPage::restoreState() when split view was used in the previous session, but this view container isn't connected to the main window slots because DolphinMainWindow::connectViewSignals() is not called for this container. This leads to these strange problems: no context menu, ... BUG: 338549 REVIEW: 119961 FIXED-IN: 4.14.1
2014-08-24SVN_SILENT made messages (after extraction)l10n daemon script
2014-08-22Merge branch 'KDE/4.14'Emmanuel Pescosta
2014-08-22Hide an already visible KMessageWidget message before showing a new oneArjun AK
1. Do some operation that causes the KMessageWidget to show an error message 2. Immediately Repeat the same action. The user has no way to know whether the error message is from the second operation or is a leftover from the first one. By hiding the widget first and then showing it using animatedShow(), the user can clearly see that a new message was generated. Also once the directory successfully loads, the widget should be hidden. BUG: 323077 FIXED-IN: 4.14.1 REVIEW: 119401
2014-08-20Save the view states in addition to the view urls and splitter state in ↵Emmanuel Pescosta
DolphinTabPage. Also added version numbers to view and tab state. REVIEW: 119792
2014-08-14Merge branch 'KDE/4.14'Emmanuel Pescosta
Conflicts: dolphin/src/dolphin.appdata.xml
2014-08-14Fixes display issues of Dolphin statusbar widgets when a high DPI value is ↵Mathieu Tarral
used (>= 196 for example). BUG: 334271 REVIEW: 119701 FIXED-IN: 4.14.1
2014-08-14Merge branch 'master' of git://anongit.kde.org/kde-baseappsEmmanuel Pescosta
2014-08-14SVN_SILENT made messages (after extraction)l10n daemon script
2014-08-13React on the redirection signal from DolphinView to properly update the tab ↵Emmanuel Pescosta
and window titles. REVIEW: 119697 BUG: 305721
2014-08-13Use DolphinTabPage saveState/restoreState to remember and re-open closed tabs.Emmanuel Pescosta
REVIEW: 118968
2014-08-13SVN_SILENT made messages (after extraction)l10n daemon script
2014-08-12Merge branch 'KDE/4.14'Frank Reininghaus
2014-08-12Always clear DolphinView's m_currentItemUrl member in updateViewState()Frank Reininghaus
Before this patch, we still kept the URL in m_currentItemUrl if the URL was not found in the model. This could cause problems the next time updateViewState() was called, because the current index would then be set to 0, which could cause other issues. For example, all items between the first item in the view and a folder which was expanded in Details View could be selected. In principle, it is possible that updateViewState() is called multiple times if many large files are being pasted in the view, but since the item which should be made the current item (and which the view should be scrolled to) should always be the first pasted item, this change will most likely not cause any other problems. BUG: 329377 REVIEW: 119703 FIXED-IN: 4.14.0
2014-08-12Fix crash when restoring a session stored with Dolphin 4.13 or earlierFrank Reininghaus
Since DolphinTabPage::saveState() and DolphinTabPage::restoreState(const QByteArray& state) save and restore the state of each tab in a different format than DolphinMainWindow did before the refactoring, we can run into problems: the first time a user logs into a session that has Dolphin 4.14, Dolphin might read session data that does not contain the QByteArray that DolphinTabPage wants to read the data from. In restoreState, isSplitViewEnabled will thus have the value false, and no secondary view will be created. Later on, m_primaryViewActive will also be set to false, but the else branch of the following "if (m_primaryViewActive)" then tries to activate the secondary view, which does not exist -> we get a crash. The easiest solution is to not restore the tab state if no session data in the new format is found. BUG: 338187 REVIEW: 119718 FIXED-IN: 4.14.0
2014-08-10Implemented DolphinTabWidget class to encapsulate the tab handling from ↵Emmanuel Pescosta
DolphinMainWindow. REVIEW: 119115
2014-08-10SVN_SILENT made messages (after extraction)l10n daemon script
2014-08-10SVN_SILENT made messages (after extraction)l10n daemon script
2014-08-04Fix wrong text eliding in some corner cases.Emmanuel Pescosta
BUG: 337104 FIXED-IN: 4.14.0 REVIEW: 119546
2014-08-03Merge branch 'KDE/4.14'Frank Reininghaus
2014-08-03Fix warning on launch "QPixmap::scaled: Pixmap is a null pixmap"Michael Reeves
If Dolphin is launched with the information panel on and set to display previews, PixmapViewer::paintEvent is called three times before any pixmap is set. Each time the above warning message is output. REVIEW: 119553 FIXED-IN: 4.14.0
2014-08-03SVN_SILENT made messages (.desktop file)l10n daemon script
2014-08-03SVN_SILENT made messages (after extraction)l10n daemon script
2014-08-03SVN_SILENT made messages (.desktop file)l10n daemon script
2014-08-03SVN_SILENT made messages (after extraction)l10n daemon script
2014-08-02SVN_SILENT made messages (after extraction)l10n daemon script
2014-08-02SVN_SILENT made messages (after extraction)l10n daemon script
2014-08-01SVN_SILENT made messages (after extraction)l10n daemon script