Paste P588

changelog v20.03.90 .. v20.04.0
ActivePublic

Authored by cfeck on Apr 17 2020, 10:51 AM.
####################### akonadiconsole
commit 423cc560303d1da3091013f088f860e3132c5499
Author: Heiko Becker <heirecka@exherbo.org>
Date: Tue Apr 7 09:26:50 2020 +0200
Fix build with Qt >= 5.15.0-beta3
46ebd11e6 in qtbase removed the (int, QString) overload again and
un-deprecated the int overload.
commit 856e01e07f01c393567cf157809a6a97a307b74c
Author: Laurent Montel <montel@kde.org>
Date: Sat Apr 4 13:47:43 2020 +0200
Fix compilation with more recent Qt 5.15
####################### akonadi-contacts
commit 07255b4b5e4465ccf4c1b2710bef39d62dc09437
Author: Laurent Montel <montel@kde.org>
Date: Sat Apr 4 13:44:55 2020 +0200
Fix compilation with more recent Qt 5.15
####################### akonadi
commit 440931615c9df18f02f918713a1f0b473b106c71
Author: Laurent Montel <montel@kde.org>
Date: Mon Apr 13 19:59:30 2020 +0200
Fix emit signal before class will be deleted
commit 88b3194e86861781308b017a66a76d67ddd2ea70
Author: Laurent Montel <montel@kde.org>
Date: Mon Apr 13 17:49:52 2020 +0200
Add signal when all settings was saved
####################### akregator
commit 1d6733056e1022a0b695a451f40f0c97734abdd2
Author: Laurent Montel <montel@kde.org>
Date: Mon Apr 6 13:20:30 2020 +0200
Inform when loading was done
####################### ark
commit eeee61d2471f50bd4402f2e6c6f6f1612ebcb9ec
Author: Ragnar Thomsen <rthomsen6@gmail.com>
Date: Sun Apr 12 16:07:35 2020 +0200
Forward errors from archive interface when batch-extracting
Errors from ExtractJob are not handled when called as a subjob of
BatchExtractJob. This can result in silently failing extractions.
CCBUG: 387996
Differential Revision: D28721
commit ec320540e6e3e2d69d19a517e67073168a054df5
Author: Ragnar Thomsen <rthomsen6@gmail.com>
Date: Sun Apr 12 15:56:16 2020 +0200
libzip: Enable progress when batch-extracting
Reimplement hasBatchExtractionProgress() in LibzipPlugin so progress
works when batch-extracting.
Partially resolves bug 382599.
CCBUG: 382599
Differential Revision: D28722
commit 918cb63a5bce22db0e30e8fc56561ad44fe4541a
Author: Aleix Pol <aleixpol@kde.org>
Date: Thu Apr 2 16:31:20 2020 +0200
Revert "Make it compile against last qt5.15 without deprecated method"
This reverts commit 9c901d16ae43240a4854dd5a28de3ef43a003387.
####################### dolphin-plugins
commit 4ea1d416415aad4cdfa1eba0e4732ba57d77bae9
Author: Nikolai Krasheninnikov <nkrasheninnikov@yandex.ru>
Date: Sun Apr 12 22:08:28 2020 +0300
[svn] Fixed items status inside unversioned directory.
Summary:
Added special checks for items inside unversioned dirs.
Previously those items was indicated as normal revision with a capability to launch SVN commands on it (SVN Delete, for example). Those commands ends up with an error.
Unversioned item is a special case because in any other cases 'svn status' will mark every file or dir as added, removed, conflicted and so on.
Test Plan:
Inside a repo create dir with a following structure:
{F8225757}
1) Check any SVN actions available only for "dir", selecting other dirs and files causes no actions available.
2) Check items status showing correct.
3) Do 'SVN Add' for dir, 'SVN Revert' for dir2.
4) Check dir (with dir1.txt, file1.txt) and dir/dir1 (with file2.txt) and dir/dir1/dir2 has SVN Actions while dir/dir1/dir2/dir3 don't.
5) Check items status showing correct.
Reviewers: meven, elvisangelaccio, #dolphin
Reviewed By: meven, elvisangelaccio, #dolphin
Differential Revision: https://phabricator.kde.org/D28681
####################### dolphin
commit a995a80302a91595e5ce9b6798e3859da3cf6dc2
Author: Nate Graham <nate@kde.org>
Date: Tue Apr 14 09:49:12 2020 -0600
Sort services list alphabetically
BUG: 419938
FIXED-IN: 20.04.0
commit 8de24d5802f8b1806ac26ad270e81cff1cae2111
Author: Antonio Prcela <antonio.prcela@gmail.com>
Date: Tue Apr 14 09:12:04 2020 -0600
Display readable titlebar text while using search and full paths in titlebar
Summary:
BUG: 406624
FIXED-IN: 20.08
Reviewers: #vdg, #dolphin, iasensio, elvisangelaccio, ngraham, meven
Reviewed By: #vdg, #dolphin, ngraham, meven
Subscribers: meven, kfm-devel
Tags: #dolphin
Differential Revision: https://phabricator.kde.org/D28815
commit 514d9c8fc9705f76fda8f22c70730fb9c383c95a
Author: Alexander Lohnau <alexander.lohnau@gmx.de>
Date: Mon Apr 13 15:29:50 2020 +0200
Dolphin Services: Launch Deb/Rpm archives with QDesktopServices
Summary:
When you are inside the services store and you choose to install a deb/rpm package
they open in the default application (mostlikely a package installer utility like discover).
PS: I have written some ideas/questions, maybe you can comment on them :-) ?
Test Plan:
Tests still pass, try out what was described in the summary.
A product which has a deb/rpm package is for example: `Jetbrains Dolphin Plugin`
Reviewers: #dolphin, elvisangelaccio, ngraham, aspotashev
Subscribers: kfm-devel
Tags: #dolphin
Differential Revision: https://phabricator.kde.org/D28795
commit 35b4c6d4df1281afd621374e686f19e654ad7bae
Author: Martin T. H. Sandsmark <martin.sandsmark@kde.org>
Date: Tue Apr 7 17:14:59 2020 +0200
Fix crashing on starting and quitting
QCollator (especially with Qt 5.14 and ICU 65.1) is very unhappy with
threads.
To avoid having to lock and unlock the mutex everywhere (and ensure it
is unlocked before calling other things that might lock it, etc.), we do
it as locally as possible. Even if for some reason Qt and ICU make
QCollator threadsafe in the future locking here should have minimal
impact.
BUG: 419585
Differential Revision: https://phabricator.kde.org/D28659
commit d868568d81c74e91c37955876242ac1bed79133a
Author: Aleix Pol <aleixpol@kde.org>
Date: Tue Mar 31 15:35:33 2020 +0200
Revert "Port deprecated signal (qt5.15)"
This reverts commit e545efee73a869aef4276baef0535169f03933de.
(Cherry-picked from c01d1b4c0e909af716801e4b82862c50e8def4a4)
commit 9b82b08fb18724662c69ed288b1a36a215548539
Author: Nate Graham <nate@kde.org>
Date: Mon Mar 23 13:42:48 2020 -0600
Use same logic for "no extension" case with Duplicate feature
Summary:
In the "no extension" case, we weren't separating out the path and the original filename,
breaking the feature for languages where the word "copy" would be at the beginning of the
filename, not after it (e.g. "copia de foo" in Spanish, and similar in other romance
languages). This patch fixes that by separating the original path and filename in the no
extension case as is done for the other case, which should solve the issue.
BUG: 419070
FIXED-IN: 20.04.0
Test Plan:
No changes in English; should fix the issue in Spanish once new translations are done
(see https://bugs.kde.org/show_bug.cgi?id=419070 for details)
Reviewers: #dolphin, elvisangelaccio, arojas, meven, pino, #localization
Reviewed By: #dolphin, elvisangelaccio
Subscribers: aacid, kfm-devel
Tags: #dolphin
Differential Revision: https://phabricator.kde.org/D28227
####################### elisa
commit 9c91190b61763789f3cdaeca4f90241e7ffa762e
Author: Matthieu Gallien <matthieu_gallien@yahoo.fr>
Date: Mon Apr 6 23:11:40 2020 +0200
add automated tests to ViewManager and fix one bug in it
Opening all artists from a genre was never implemented even though a
test was supposed to exist. Fix that.
####################### eventviews
commit a53e22c34d2025f8b0c8a6455004a6aa177dd90b
Author: Igor Poboiko <igor.poboiko@gmail.com>
Date: Mon Mar 30 16:48:29 2020 +0300
[IncidenceTreeModel] Update UID if it was changed
Summary:
If one creates a Todo inside KOrganizer, it sets some default generated UID.
Such UID can be changed by the resource afterwards. The model should handle this case.
This patch adds a simple check: if the uid has changed inside `onDataChange, then just update the hashes.
Test Plan:
1) Add a Todo to Google Tasklist
2) Add a subtodo instantly (without reloading the view)
3) (without patch) Subtodo is added at the top level (parent was not recognized)
4) (with patch) Subtodo is added below the parent todo
Reviewers: dvratil
Subscribers: kde-pim
Tags: #kde_pim
Differential Revision: https://phabricator.kde.org/D28436
####################### grantleetheme
commit 57241104c8a3ad8cccb2e17252215e7f1d89b90d
Author: Laurent Montel <montel@kde.org>
Date: Tue Apr 7 07:19:56 2020 +0200
Use QLatin1Char('/') here
####################### gwenview
commit 80ba1c83d19e2bd6b06b06cf4e995ba3b1438642
Author: Aleix Pol <aleixpol@kde.org>
Date: Tue Mar 31 17:09:50 2020 +0200
Revert "Port deprecated signal"
This reverts commit b1ae993cac2d5b3607a8752305aa590d701ed9cb.
commit be6dbb62642985686dcf501c5a02c6ab17d044fa
Author: Martin T. H. Sandsmark <martin.sandsmark@kde.org>
Date: Sat Mar 28 14:19:31 2020 +0100
Improve responsiveness when showing single image without thumbnail bar
Editing an image in a huge folder before this patch is pretty
frustrating because there's a ton of (unnecessary) stuff happening in
the background.
In this case it is the thumbnail delegates that constantly fetch and
convert qmodelindexes to positions to check if they need to update their
hover ui, even if the hover ui things are off. Further improvements
would be to actually check if the hover stuff is used, but with this
patch things seem pretty smooth at least.
Differential Revision: https://phabricator.kde.org/D28373
commit ce981b5489ed2ad6405e22fd239f3e8dbeb40bb3
Author: Martin T. H. Sandsmark <martin.sandsmark@kde.org>
Date: Sat Mar 28 14:47:38 2020 +0100
Fix hang on exit when viewing huge folder
Even if thumbnail storing is turned off in the settings gwenview still
stores them and instead deletes them on exit. I have a separate fix for
that, but this also meant that it hung for a long time when exiting
because it didn't try to shut down the thumbnail writer thread.
Differential Revision: https://phabricator.kde.org/D28374
####################### incidenceeditor
commit 7ba473fef78978aee6cdda0cdcead3fa65d3c62b
Author: David Faure <faure@kde.org>
Date: Sat Apr 4 15:57:27 2020 +0200
Fix "Only resources can modify remote identifiers" when re-editing event
Summary:
... before the resource had time to create it and notify korganizer
about it.
This seems to be a better fix than akonadi commit fbcd065c0dbb,
which for some reason isn't enough (I had the error again in January
2020).
BUG: 407965
Test Plan:
Create event in korganizer, double-click it immediately,
change something, click OK.
Reviewers: dvratil
Reviewed By: dvratil
Differential Revision: https://phabricator.kde.org/D28559
####################### kaddressbook
commit 90069398e4770a6b3aae96376a510a85b92f9f62
Author: Laurent Montel <montel@kde.org>
Date: Tue Apr 7 07:34:34 2020 +0200
Use QLatin1Char('/') here
(cherry picked from commit 212297ce5ca5d1c0d17ce2eee60c26fc0cb7cf2d)
commit e24aec98ab5430b9b4cd16ddaac64e2accc6b22d
Author: Laurent Montel <montel@kde.org>
Date: Mon Apr 6 13:22:57 2020 +0200
Inform when loading settings was done
####################### kanagram
commit 107628d6c4e1e6b7a2fa01f06d22c6a977340971
Author: Heiko Becker <heirecka@exherbo.org>
Date: Tue Apr 7 17:34:26 2020 +0200
Fix build with Qt >= 5.15.0-beta3
46ebd11e6 in qtbase removed the (int, QString) overload again and
un-deprecated the int overload.
####################### kate
commit 6c41a5b2b94cb78f4fd62f933833f4c3b16fa2ad
Author: Aleix Pol <aleixpol@kde.org>
Date: Sun Apr 5 02:33:07 2020 +0200
Revert premature porting
The signal we were porting to was removed in Qt 5.15
####################### kcron
commit 536102db8cbd8204643f044fd80ec98208b8c0f4
Author: Heiko Becker <heirecka@exherbo.org>
Date: Tue Apr 7 17:41:22 2020 +0200
Fix build with Qt >= 5.15.0-beta3
46ebd11e6 in qtbase removed the (int, QString) overload again and
un-deprecated the int overload.
####################### kdav
commit 5a7c75e455e6b0bcc12313cbda12d8bf538b0d97
Author: David Faure <faure@kde.org>
Date: Sun Apr 5 10:03:08 2020 +0200
Port DavCollectionsMultiFetchJob to KCompositeJob
Summary: It's a little bit simpler (two members removed)
Test Plan: New test still passes
Reviewers: vkrause, ervin
Reviewed By: ervin
Subscribers: kde-pim
Tags: #kde_pim
Differential Revision: https://phabricator.kde.org/D28572
commit 1081b967e3501734220a79f01df667d51e2c4f1b
Author: David Faure <faure@kde.org>
Date: Sat Apr 4 21:13:11 2020 +0200
autotests: add test for 404 error, make tests more robust
* Don't derive from QThread, encapsulate one instead (avoids
moveToThread(this))
* Allow client sockets to connect in any order they want.
Instead of requiring a fixed scenario order, we pick the scenario
corresponding to the first line of the client request
commit 13b36a650aaa6f84dd465cfacf7a5ecc91a52a55
Author: David Faure <faure@kde.org>
Date: Sat Apr 4 19:53:45 2020 +0200
Extend unittest to spy for DavCollectionsMultiFetchJob::collectionDiscovered()
commit 3986ff2234b1066c4c755c2fed5eef1779f3d8e1
Author: David Faure <faure@kde.org>
Date: Sat Apr 4 19:09:44 2020 +0200
KDAV: use a different port in each test
Summary: ctest -j4 works now
Reviewers: vkrause
Reviewed By: vkrause
Differential Revision: https://phabricator.kde.org/D28569
commit e8a66e1e39bcf2eac29fa80cf3077f62f89fd40a
Author: David Faure <faure@kde.org>
Date: Sat Apr 4 19:05:33 2020 +0200
Add unittest for DavCollectionsMultiFetchJob
Summary:
This also tests the XQuery and the expected XML response from the
server.
Test Plan: Passes (finally)
Reviewers: vkrause, mlaurent, dvratil, ervin
Reviewed By: vkrause
Subscribers: kde-pim
Tags: #kde_pim
Differential Revision: https://phabricator.kde.org/D28568
commit 7c8355c8ea31e547b213868e7d694006ee38bc43
Author: Volker Krause <vkrause@kde.org>
Date: Sat Apr 4 17:07:44 2020 +0200
Use enum rather than int as signal argument
Summary: This will need a similar adjustment in kdepim-runtime.
Reviewers: ervin
Subscribers: kde-pim
Tags: #kde_pim
Differential Revision: https://phabricator.kde.org/D28564
commit 517d7ea81d801700a0d400ca2fda1a6adeb8d712
Author: Volker Krause <vkrause@kde.org>
Date: Sat Apr 4 17:04:16 2020 +0200
Return a QString rather than a QLatin1String
Reviewers: ervin
Subscribers: kde-pim
Tags: #kde_pim
Differential Revision: https://phabricator.kde.org/D28563
commit 973de6e8a151232a26f08942f749814fd79caaa5
Author: Volker Krause <vkrause@kde.org>
Date: Sat Apr 4 17:01:27 2020 +0200
Unexport protected methods only needed internally here
Summary:
This will allow us to eventually hide those entirely on the private class
without breaking the ABI. Also, use unique_ptr rather than QScopedPointer
here for consistency among the public classes.
Reviewers: ervin
Subscribers: kde-pim
Tags: #kde_pim
Differential Revision: https://phabricator.kde.org/D28562
####################### kdeconnect-kde
commit fba0c2d55f67e66e8a527c133397da6f43797347
Author: Heiko Becker <heirecka@exherbo.org>
Date: Thu Apr 16 18:25:01 2020 +0200
Fix previous commit
KDE_INSTALL_DATADIR already points to PREFIX/share of course.
commit f1da4b4850cc58268df38bb347243bbc6952a492
Author: Heiko Becker <heirecka@exherbo.org>
Date: Thu Apr 16 10:11:21 2020 +0200
Use KDE_INSTALL_DATADIR
####################### kdenlive
commit 79e34cd5d2526e29fefa995c8f2099f7111e7e9b
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Fri Apr 17 01:54:56 2020 +0200
Fix possible crash and corruption on track insert/delete
commit b2e22d6272a47e584e0619f5f9ea4d5f6e0004a2
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Thu Apr 16 23:09:10 2020 +0200
Fix bin tooltip for color clips (remove path)
commit eab8d6cfff9f56befeca7d59931998fe34d1239f
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Thu Apr 16 21:53:05 2020 +0200
Fix crash on disable effect
commit 77839392cfcd2b94b5e9267f5b8506098edb381a
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Thu Apr 16 18:25:48 2020 +0200
Fix crash on cancel clip job & correctly handle abortion of stabilize job
commit d4ee47c29240da1751c8ace40bacd7aec58891fd
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Thu Apr 16 18:25:08 2020 +0200
Adjust space to disable bin rating
commit 7f78212319f55ed72cae8084e65a8f3e114bcf45
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Thu Apr 16 17:47:57 2020 +0200
Fix crash on clip job.
Fixes #637
commit 7313d42bdefb47440b402ef71b8ab0e145459418
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Thu Apr 16 11:09:48 2020 +0200
Fix effect param refresh issue and crash on undo add effect.
Fixes #633
commit 463060ab3795e024ca9f2b3a96f97b3c389a4a53
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Thu Apr 16 10:04:31 2020 +0200
Update splash image
commit 961059e8faa0a0d4117493e73cd1cabe7d5a3f5c
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Thu Apr 16 09:59:46 2020 +0200
Timeline track name: elide track name when collapsed or track height not sufficient
Related to #636
commit 9982db8b9153116e53fa7f4c0322bc1107b58a22
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Thu Apr 16 08:50:36 2020 +0200
Fix freeze when changing bin selection
BUG: 419604
commit 7a8561715ed2ab73f7308e0ef69c493db52f0851
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Wed Apr 15 23:04:33 2020 +0200
Ensure we have a writable storage folder for imported documents
commit 6c5c58af5c43b857b6bf02f412e872734e09fabd
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Wed Apr 15 11:24:10 2020 +0200
Remove unfinished/broken disable image scaling feature
Update Appdata version
commit 09363b857ed32d37eb9ea54defec6eb7cd8695fe
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Wed Apr 15 11:13:40 2020 +0200
Slightly larger default track height
commit 9a320f5eb78393766fb387fd153cbdc82fe1495f
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Wed Apr 15 11:00:40 2020 +0200
Try to fix Windows default track size
Related to #629
commit e55ef934b47b90c9d4754cd79fd165370f276b1a
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Wed Apr 15 10:39:34 2020 +0200
Fix timeline scrolling when dragging item on high zoom
commit 7d73e3a507df19817af87b4c85086b7f31ed4ec4
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Tue Apr 14 21:06:55 2020 +0200
Improve track default height / header width.
Related to #629
commit 1de7eb95573cde7136a9017383a9b9c925ec0886
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Tue Apr 14 23:32:36 2020 +0200
Don't delete all thumbnails when changing project resolution but keeping same dar
commit 9a2ad8a3b20aacc0b9337b886ff66992b81a25bb
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Tue Apr 14 18:46:17 2020 +0200
Small fixes for track rec audio level
Fixes !38
commit 3f1525e7db195c41fb4abbdc93cf0834c1948459
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Tue Apr 14 08:37:05 2020 +0200
Bin rating: reserve some space to reset to 0 stars
commit 6fdc79fc5ba1ca07a85dc70e21642b0a88a981ed
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Mon Apr 13 23:16:31 2020 +0200
Fix crash trying to import keyframes in rotoscoping effect
Related to #615
commit 1e2584e5642d3cab15a1d087179a7900a0abf700
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Mon Apr 13 22:41:43 2020 +0200
Fix project monitor update when fullscreen.
Fixes #306
commit 5500354110971782a12437754ed51af88d613aaf
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Mon Apr 13 22:08:23 2020 +0200
Fix editing effects, resizing clip breaks loop play.
Fixes #293
commit 98f77f0fbaebc8a153ed238e9bf7c04821e1a99a
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Mon Apr 13 18:51:15 2020 +0200
Fix default track height to allow visible record controls
Fixes #629
commit cace11e6d044b3125b6fdc816f3cc552d3c8ca13
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Mon Apr 13 16:04:30 2020 +0200
Export frame should use source resolution instead of project resolution
BUG: 419824
commit 56eac7f51867188a32609bd2ccfd678914ae0fe0
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Mon Apr 13 15:38:38 2020 +0200
Fix possible freeze on clip job deletion, ensure jobs are deleted when completed
commit 25976dc0e761b4788b4faeb64119f196d58e6d22
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Sun Apr 12 18:42:11 2020 +0200
Fix Windows build with cmake 3.17.0
commit 5f80bc77a99c1db04c7edb0ca76341a158843252
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Fri Apr 10 21:56:42 2020 +0200
Rubber selection should not always select bottom track compositions
commit e9456b2b2e8c2e08ce48dfae6c1f43aefa12b430
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Fri Apr 10 08:28:32 2020 +0200
Fix crash on folder import
Fixes #624
commit d3869fb10d21db8faefb95e5480b3a473d5de4d6
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Fri Apr 10 00:55:08 2020 +0200
Move scrollbars outside timeline, make vertical scroll slower
commit 1a5e5b5c33255b659f1c7e21e076cece0cf4b721
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Thu Apr 9 18:42:01 2020 +0200
Minor improvement to track name alignment
commit ac064e805a17a3aa1320c78d8a4976d6421c7636
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Thu Apr 9 18:23:24 2020 +0200
Fix rubberband selection sometimes corrupting vertical scroll
commit f0164c54047482c402c3384d3ec1385ed65e177b
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Thu Apr 9 12:24:11 2020 +0200
Adjust minimum timeline icon size to reduce artifacts
commit 42f21317fb4b56ae23ba20ad1a5b09e20fe20a63
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Thu Apr 9 11:33:53 2020 +0200
Fix marker dialog thumbnails with movit.
Fixes #618
commit 8be5b547075f1991f50aa046384ac83feaa41b20
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Thu Apr 9 10:12:43 2020 +0200
Don't pause on fullscreen toggle.
Fixes #621
commit 9a9f05f6bee26c6d2c422761f149c011b25a8ada
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Thu Apr 9 09:54:50 2020 +0200
Set minimum height for timeline track icons
commit ebe4291c4a57203144d5ec3dd105b8d57875b823
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Thu Apr 9 08:54:11 2020 +0200
Fix monitor scene not correctly showing/hiding on enable/disable effect
commit 3eb8ca517c00178130e30c5b4e95b67863101035
Author: Bruno Santos <bsantos@gmail.com>
Date: Wed Apr 8 14:53:01 2020 +0000
Add insert zone to timeline monitor in menu
commit dc44dc3c615826a732221ecdd5d4f17473050284
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Wed Apr 8 19:05:20 2020 +0200
Fix dragging bin clip zone onto itself creates duplicate, and 1 frame offset in zones.
Related to #287
commit 50d1e5780e3f6c2a9dff76e3121a6a12cd34bc77
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Wed Apr 8 14:38:10 2020 +0200
Another attempt to fix Windows timeline icons
commit 1189583dc32ca7c9299b5ae799d4eca80906518b
Author: Martin T. H. Sandsmark <martin.sandsmark@kde.org>
Date: Mon Apr 6 17:41:05 2020 +0200
Fix opening relative paths from the command line
The code didn't work as intended, and somewhere something was calling
QUrl::fromUserInput() when adding to recently used documents. And that
helpfully adds "http:" as scheme if none is set (e. g. if opening a
relative file). So a lot of things broke.
Test Plan: Opening relative paths from the command line works again
Differential Revision: https://phabricator.kde.org/D28628
commit 8984bf805c0ddf245e75385924d43254da8cc1fe
Author: Heiko Becker <heirecka@exherbo.org>
Date: Tue Apr 7 17:23:29 2020 +0200
Fix build with Qt 5.15.0-beta3
46ebd11e6 in qtbase removed the (int, QString) overload again and
un-deprecated the int overload.
commit 3ba0e4a3a2411725ed3c4b382146e29fee1b803c
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Tue Apr 7 16:31:00 2020 +0200
Fix crash on clip paste when we didn't have enough audio mirrors.
Fixes #616
commit 7ff90f5b328771cb8c0a4bbdb676dd02fe3e2427
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Tue Apr 7 14:49:21 2020 +0200
Fix some clips with fps like 60.06 incorrectly matched to profile
commit e4e086c4d71dfaffcf01a86618567b916bbe2a10
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Tue Apr 7 13:23:55 2020 +0200
Fix active track selection didn't update vertical scrolling
Fixes #612
commit cfba686149f79ee6526a6ae40769f537c207b8cc
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Tue Apr 7 13:06:33 2020 +0200
Fix possible crash on audio thumbs abort
CCBUG: 419603
commit 300aa1244f570244ea67632b214e9c4965667ffe
Author: Stefan Kobza <stefan.kobza@gmail.com>
Date: Sun Apr 5 01:27:14 2020 +0200
Delete key triggers Delete Script button.
commit 4c1fd0d2cc7f86138abbac48dd61394dae06b3dc
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Tue Apr 7 11:07:12 2020 +0200
Add line to indicate resize handle and focus of timeline.
Related to #593
commit 067917f7d5c214c09a2ea7cebc39f88edec3b94f
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Tue Apr 7 10:07:36 2020 +0200
Fix possible crash or freeze on multiple clip import.
CCBUG: 419603
commit 71d3bdb15a7b00c6dcf66b97893ef4ee35fe7215
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Fri Apr 3 16:40:20 2020 +0200
When monitor overlay is disabled, ensure we use the real fullscreen space (don't reserve space for the ruler).
Fixes #371
commit bf741db0592492b083c326394c8d33ac729fc637
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Fri Apr 3 16:06:19 2020 +0200
Hide "separate channel" menu from video tracks, minor ui fix
commit 7c282740cb521c19b513cad574dac2d7ecca49d1
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Fri Apr 3 15:16:39 2020 +0200
Fix fast forwards sometimes playing after last frame
commit 17d2786634198f694dcb4af2ee4cf60d788ce451
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Fri Apr 3 15:04:01 2020 +0200
Fix DVD Wizard crash on chapters
Fixes #379
commit 6fa5116d61a527cf40c400a480fa7aa8072f18ce
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Fri Apr 3 11:33:47 2020 +0200
Fix crash opening old project file
BUG: 419563
commit 8801314676773c68c97b196e5c6785c18b549c28
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Fri Apr 3 10:44:43 2020 +0200
Fix motion tracker filter broken on cut clips.
Should fix #437
commit e1cac1f5cc49131ccb452d8ba9cfee52e5a567a9
Author: Jean-Baptiste Mardelle <jb@kdenlive.org>
Date: Fri Apr 3 03:34:31 2020 +0200
Fix effects like tracker broken on some locales
####################### kdepim-addons
commit 753de754c52a7b0f59bfe443c292bdb82acd7446
Author: Laurent Montel <montel@kde.org>
Date: Thu Apr 9 13:39:57 2020 +0200
Use qDebug here
(cherry picked from commit 2a4ba7554f5369761b2e579d513a967939b856a6)
commit f74b0816350d1236dbd3c9446dbe50b670937d14
Author: Heiko Becker <heirecka@exherbo.org>
Date: Tue Apr 7 09:47:21 2020 +0200
Fix build with Qt >= 5.15.0-beta3
46ebd11e6 in qtbase removed the (int, QString) overload again and
un-deprecated the int overload.
commit a084d9f7b988ebbaa6e1ab79c8e74c8cc3b54dc6
Author: Laurent Montel <montel@kde.org>
Date: Tue Apr 7 07:31:46 2020 +0200
Use QLatin1Char('/') here
commit 80590e91e18c24443c5a188bcbe1b1b87c2d0b28
Author: Laurent Montel <montel@kde.org>
Date: Tue Apr 7 07:04:08 2020 +0200
Use QLatin1Char('/') here
commit ad08c4ade4651c574b3aca095542ace6674e042f
Author: Laurent Montel <montel@kde.org>
Date: Mon Apr 6 14:00:58 2020 +0200
React when we click on cancel
commit ffa655f69303bc83b1f0f8367e23589a6d6d393a
Author: Laurent Montel <montel@kde.org>
Date: Mon Apr 6 13:59:37 2020 +0200
Better to check if we click on ok/cancel
Revert "Not necessary to show messagebox when we click on cancel"
This reverts commit 6efd29c2d39b0b3660469eddd9f5cfb3fdcc2839.
commit 6efd29c2d39b0b3660469eddd9f5cfb3fdcc2839
Author: Laurent Montel <montel@kde.org>
Date: Mon Apr 6 07:07:41 2020 +0200
Not necessary to show messagebox when we click on cancel
commit f104c2d387dbee482211e679a83bcb978c15da3b
Author: Laurent Montel <montel@kde.org>
Date: Sat Apr 4 16:25:06 2020 +0200
Fix compilation with more recent Qt 5.15
####################### kdepim-apps-libs
commit 2d58992f9146ed41323b15e98724cad81a35f875
Author: Laurent Montel <montel@kde.org>
Date: Fri Apr 10 23:26:15 2020 +0200
Fix generate file
####################### kdepim-runtime
commit b66a9f3cd1808dd11933198eaf64433d3fbf0195
Author: Volker Krause <vkrause@kde.org>
Date: Sun Apr 5 10:46:59 2020 +0200
Register IMAP D-Bus interfaces before the service gets registered
Summary:
The account wizard accesses this right after the service is registered,
so we need to have this done in the ctor. I suspect this was done delayed,
as settings() is virtual and therefore calling that in the base ctor isn't
giving us the desired result. Calling it in every leaf ctor is ugly, but
given we want to phase out the Kolab resource anyway, this problem is going
away over time.
Reviewers: mlaurent
Subscribers: kde-pim
Tags: #kde_pim
Differential Revision: https://phabricator.kde.org/D28583
commit 2dfc3da0a0660660abd99c567168396a7d578d85
Author: Volker Krause <vkrause@kde.org>
Date: Sat Apr 4 17:12:02 2020 +0200
Adapt to KDAV changes
Reviewers: ervin
Subscribers: kde-pim
Tags: #kde_pim
Differential Revision: https://phabricator.kde.org/D28566
commit 30ca062f49fc1da87ecd064919d455718583b504
Author: Laurent Montel <montel@kde.org>
Date: Sat Apr 4 13:49:23 2020 +0200
Fix compilation with more recent Qt 5.15
####################### kfind
commit 1ac41b6b291321fd62e9940033ba9b22f9b2f5de
Author: Heiko Becker <heirecka@exherbo.org>
Date: Tue Apr 7 17:46:28 2020 +0200
Fix build with Qt >= 5.15.0-beta3
46ebd11e6 in qtbase removed the (int, QString) overload again and
un-deprecated the int overload.
####################### kidentitymanagement
commit d680381ccc21d314fa394782f4ef91d589adf405
Author: David Faure <faure@kde.org>
Date: Sat Apr 4 21:49:27 2020 +0200
Downgrade "There was no default identity" warning to debug
This happens on first run of kontact, no point in worrying the user.
####################### kio-extras
commit 7bb2c797c30b8f4901f5c3939f7360eabcd53074
Author: Harald Sitter <sitter@kde.org>
Date: Tue Apr 14 16:54:13 2020 +0200
sftp: extra verbosity when put fails
for not entirely clear reasons certain servers will fall over after we've
written our data. log internal sftp and ssh errors to aid in debugging
CCBUG: 418472
commit 08b2a24d010f25ebcd32a5aed3da4b3d85e66edc
Author: Harald Sitter <sitter@kde.org>
Date: Tue Apr 14 13:36:02 2020 +0200
smb: debug the smbc debug level
sometimes I need bug reporters to set a level, but there's no actual
indication if they did that correctly and since there is no GUI there's
ways this can easily go wrong
commit f4e0183adfd8bf4fd6b9f8e7edea6cb35362c206
Author: Alexander Saoutkin <a.saoutkin@gmail.com>
Date: Thu Apr 2 17:16:12 2020 +0100
Fix lifetime of slot in KIO-MTP
Summary:
This slot was incorrectly made to last the lifetime of the slave. In fact, this
slot should only be live for the lifetime of the event loop (one I/O operation).
This can cause issues with the data being emitted for data from other IO
operations. By making it live in the lifetime of the local event loop this
scenario cannot occur as LIBMTP only allows one operation at a time.
Test Plan:
Via the use of KIOFuse (as this is where the bug was noticed).
Before: Opening a file for the first time worked. Subsequent opens would fail
due to garbage output After: Opening any number of files at any time works.
Reviewers: akrutzler, dfaure, elvisangelaccio
Subscribers: kde-frameworks-devel, kfm-devel, fvogt
Tags: #dolphin, #frameworks
Differential Revision: https://phabricator.kde.org/D28520
commit f40191a147c9643717fda1cf9d1f42c526550893
Author: Harald Sitter <sitter@kde.org>
Date: Tue Mar 3 14:09:39 2020 +0100
smb: add hack to support spaces in workgroup names
Summary:
workgroup names are as best I can tell always still netbios names which
means they can contain a bunch of characters ordinarily not found in valid
host names. e.g. spaces
this causes trouble with the IANA SMB URI draft, as used by libsmbc,
since the workgroup would be the host field of the RI when browsing
a workgroup (i.e. filtering hosts that are member of a given workgroup)
because QUrl does not allow invalid hostnames in the host field.
to bypass this problem we now put the workgroup name into the query of the
url as `kio-workgroup`, should it cause trouble in the host field. SMBUrl
takes this query into account when constructing the url for smbc.
since the latter has uniquely exciting potential for breakage this entire
dance is only done when absolutely necessary and otherwise we continue with
all the same code and behavior as without this commit.
on a side note: the awkward name flexibility seems to not extend to
computer names anymore (supposedly because of LLMNR) so this entire
use case is already very niche as we (and libsmbclient) currently only
support workgroup browsing for NT1 networks, and NT1 is by default not
supported on windows10 or samba.
FIXED-IN: 20.04
BUG: 204423
Test Plan: builds, test passes, can browse workgroup with space in name
Reviewers: ngraham
Subscribers: kde-frameworks-devel, kfm-devel, thiago
Tags: #dolphin, #frameworks
Differential Revision: https://phabricator.kde.org/D27804
commit daec307b59e9ffcaec8898897ae0fa26ce11caea
Author: Harald Sitter <sitter@kde.org>
Date: Thu Apr 2 14:17:40 2020 +0200
smb: use prettyname.kio-discovery-wsd for hostname of wsdiscoveries
Summary:
previously we simply used the ip address. this is fairly awkward though.
instead try to deduce a resolvable host name from the pretty name.
at discovery time we now mark wsdiscovieres for special handling
at listDir time we then attempt to resolve the name.local and if that
fails strip the .local to get the presumed LLMNR/netbios name. this means
the (first) listDir may be slower while we try to find a working hostname
but discovery is still as fast as possible.
Test Plan: wsdd on linux server resolves as expected, wsd on win10 also resolves as expected
Reviewers: ngraham, meven
Reviewed By: ngraham, meven
Subscribers: kossebau, kde-frameworks-devel, kfm-devel
Tags: #dolphin, #frameworks
Differential Revision: https://phabricator.kde.org/D28513
commit a2a8facc3979a351d45b2c2875e3d1bf37c8c625
Author: Harald Sitter <sitter@kde.org>
Date: Mon Apr 6 11:21:40 2020 +0200
import license copies via reuse
for new code in smb source tree
####################### kiten
commit ae8546be8e5ea114b31c46d0f8022770ed9bcd29
Author: Heiko Becker <heirecka@exherbo.org>
Date: Tue Apr 7 17:29:15 2020 +0200
Fix build with Qt >= 5.15.0-beta3
46ebd11e6 in qtbase removed the (int, QString) overload again and
un-deprecated the int overload.
####################### kleopatra
commit b0fd83ba70dedc032d8fa8e4f978e2e29bf8065b
Author: David Faure <faure@kde.org>
Date: Sat Apr 4 11:58:45 2020 +0200
Qt 5.15 undeprecated QComboBox::currentIndexChanged(int)
(Cherry-picked from 8cc12d0389965751b6656a09e60fdb5365534ac3).
commit ac61b1074a580d7b1da3b1ae5827401b732c8364
Author: Laurent Montel <montel@kde.org>
Date: Tue Apr 7 07:22:02 2020 +0200
Use QLatin1Char('/') here
####################### kmail
commit 0ad5a7ac48ca69b82aea50e007e2a481be670ab8
Author: Laurent Montel <montel@kde.org>
Date: Thu Apr 16 07:28:31 2020 +0200
Fix Bug 419948 - Changing an individual folder to "Prefer HTML" or to "Prefer Plain Text" is not remembered after restarting KMail
FIXED-IN: 5.14.0
BUG: 419948
commit 0bb891f144442792a14470596ca911b361084429
Author: Laurent Montel <montel@kde.org>
Date: Wed Apr 15 13:44:44 2020 +0200
Refresh message when we change display format
CCBUG: 419948
commit 3fab426dfd0bea6fc6fb49e33fe939dc14d584a4
Author: Laurent Montel <montel@kde.org>
Date: Mon Apr 13 20:03:24 2020 +0200
Fix Bug 419948 - Changing an individual folder to "Prefer HTML" or to "Prefer Plain Text" is not remembered after restarting KMail
FIXED-IN: 5.14.0
BUG: 419948
commit 4b5d2d3610b36b63e7414f1fb62ae2854f21f50a
Author: Laurent Montel <montel@kde.org>
Date: Fri Apr 10 08:40:28 2020 +0200
Remove extra margin
commit fa89b9437d1567bff7f0fa83a3be5d2656fc67b0
Author: David Faure <faure@kde.org>
Date: Thu Apr 9 14:44:32 2020 +0200
Fix assert when removing the selected folder from the local subscription
ASSERT: "s->model() == etmIndex.model()" in file messagelib/messagelist/src/pane.cpp, line 536
commit 98765e8e53986f42dcf661b7098347f3fafa63ba
Author: Laurent Montel <montel@kde.org>
Date: Tue Apr 7 06:59:59 2020 +0200
Use QLatin1Char('/') here
commit ecdedd86551fe21bc737b33a9939bc9a46e9aa7c
Author: Laurent Montel <montel@kde.org>
Date: Mon Apr 6 09:04:36 2020 +0200
Show message info about restarting apps when we change a settings
commit 128766ee3daae9ef06ee7048b9b81c9527838752
Author: Laurent Montel <montel@kde.org>
Date: Sat Apr 4 15:51:05 2020 +0200
comment not implement userfeedback plugin
commit 79fd54f9a90dbfcdae9fa27c7ae88404501b757e
Author: Laurent Montel <montel@kde.org>
Date: Sat Apr 4 14:10:49 2020 +0200
Disable send again when we open directly an mbox
commit 9c045bc8af60d29f8a5170cfe2df065916b72dbe
Author: Laurent Montel <montel@kde.org>
Date: Sat Apr 4 12:20:57 2020 +0200
Fix generate pdf file
####################### knavalbattle
commit 4fecfa1a9fc34ffe0741173e0762826fb5fa6c5d
Author: Heiko Becker <heirecka@exherbo.org>
Date: Tue Apr 7 12:08:01 2020 +0200
Fix build with Qt >= 5.15.0-beta3
46ebd11e6 in qtbase removed the (int, QString) overload again and
un-deprecated the int overload.
####################### knights
commit bead1e9613eb10c5d6984bc5e5c681756acf054e
Author: Heiko Becker <heirecka@exherbo.org>
Date: Tue Apr 7 12:03:10 2020 +0200
Fix build with Qt >= 5.15.0-beta3
46ebd11e6 in qtbase removed the (int, QString) overload again and
un-deprecated the int overload.
####################### knotes
commit 1790e7fbfa99fe1b3bb97df361142d608cef9a2c
Author: Laurent Montel <montel@kde.org>
Date: Tue Apr 7 07:38:30 2020 +0200
Use QLatin1Char('/') here
####################### kolf
commit 2b063917bb181d40b6c4a0117b0851ce3b003122
Author: Heiko Becker <heirecka@exherbo.org>
Date: Tue Apr 7 12:58:21 2020 +0200
Fix build with Qt >= 5.15.0-beta3
46ebd11e6 in qtbase removed the (int, QString) overload again and
un-deprecated the int overload.
####################### konqueror
commit ad4d6f4a2600ad811fd770992c58adb095241121
Author: Stefano Crocco <stefano.crocco@alice.it>
Date: Mon Apr 13 10:53:06 2020 +0200
Fix crash due to changes in KBookmarkMenu
Summary:
Since version 5.69, KBookmarkMenu doesn't automatically create an action
collection. This causes Konqueror to crash when going on a submenu in
the Bookmarks menu. To avoid it, manually create the action collection.
Also, avoid calling the version of KBookmarkMenu construction which
takes a KActionCollection, as it's deprecated.
Test Plan:
Open the bookmarks menu and hover with the mouse on a submenu. Check
that it crashes. Do the same after this change and check it doesn't crash
anymore.
Reviewers: dfaure, nicolasfella
Reviewed By: nicolasfella
Subscribers: poboiko
Differential Revision: https://phabricator.kde.org/D28789
(cherry picked from commit 078f357bc7f318509902dda9b6ec79a12df25427)
####################### konquest
commit 9034ef5c9ec3a723e093df3536b6af283cb08968
Author: Heiko Becker <heirecka@exherbo.org>
Date: Tue Apr 7 13:05:22 2020 +0200
Fix build with Qt >= 5.15.0-beta3
46ebd11e6 in qtbase removed the (int, QString) overload again and
un-deprecated the int overload.
####################### konsole
commit 79ad055855cfaa578e9e49a39ca335e9a30a20b7
Author: Anton Karmanov <bergertroll@insiberia.net>
Date: Thu Mar 26 22:53:04 2020 +0500
Add ViewSplitter::showEvent()
New ViewSplitter showEvent() method override sets focus proxy before
showing the MainWindow. It is userful for background mode to keep active
terminal focused.
BUG: 411543
(cherry picked from commit b741e9cd67e9c7fd619f13ffccd6a90cb5dc5122)
commit dcf8cf3f2255293da170648f633873aa7c4afcf1
Author: Ahmad Samir <a.samirh78@gmail.com>
Date: Mon Apr 13 11:30:47 2020 +0200
[BookmarkMenu] Adapt the code to KBookmarks 5.69 changes
Starting from KBookmarks 5.69 the ctor that took a KActionCollection
parameter has been deprecated, and we need to manually add the various
bookmark actions to the actionCollection so that they show up in the
shortcusts editor.
Move the code that overrides the add bookmark shortcut, Ctrl+B, to the
BookmarkMenu class, so that all the relevant code is in one place.
BUG: 419981
(cherry picked from commit 6db7f8d2593ccb0238b2b547ed6eaf7da6a26c4c)
####################### kontact
commit 079699f349cce10389de99288fda775a53c0cd8a
Author: Laurent Montel <montel@kde.org>
Date: Sat Apr 4 16:28:24 2020 +0200
Fix compilation with more recent Qt 5.15
####################### korganizer
commit cc87c7fca52d7c4e9aa13613867f36303990549f
Author: Heiko Becker <heirecka@exherbo.org>
Date: Tue Apr 7 00:52:01 2020 +0200
Fix building against Qt >= 5.15.0-beta3
QComboBox::currentIndexChanged(int index) was deprecated for a short
time.
This partially reverts 990e4bedbdb6c787869902f906c3702bb449043e.
####################### kpimtextedit
commit 6e93b08a80bb7fdc10d245caa54c80fba83f210f
Author: Laurent Montel <montel@kde.org>
Date: Wed Apr 15 13:33:58 2020 +0200
Minor optimization
commit 1577eaf4695db64a17ca0de596a570b93d1c68ed
Author: Laurent Montel <montel@kde.org>
Date: Wed Apr 15 13:30:23 2020 +0200
Reduce duplicate code
commit 9bcc3b03b087bd7194eb83ec08de60d64cf953c1
Author: Laurent Montel <montel@kde.org>
Date: Sun Apr 12 00:06:53 2020 +0200
Simplify autotest
commit c788ab0c1b7f53c4b6df61392e136bdba165431e
Author: Laurent Montel <montel@kde.org>
Date: Sat Apr 11 17:05:38 2020 +0200
Add more autotest
commit 95cf586e3b35c682725afe903e4fdedf70531808
Author: Laurent Montel <montel@kde.org>
Date: Sat Apr 11 16:53:53 2020 +0200
Add autotest
commit 8977ceb661c1671db03ad10ccb9266fafe1e05b9
Author: Laurent Montel <montel@kde.org>
Date: Fri Apr 3 14:50:35 2020 +0200
Add margin
commit 4275774597340c85803556ebbb53dffc8c0ea26a
Author: Laurent Montel <montel@kde.org>
Date: Fri Apr 3 13:58:02 2020 +0200
Fix tab support
commit 4e841f1d0ca1340495950d3197aabd90603b0d3d
Author: Laurent Montel <montel@kde.org>
Date: Fri Apr 3 13:33:00 2020 +0200
Add more autotest
commit 0e6f9c8bdb77185bd764c89ac55546e6d179536f
Author: Laurent Montel <montel@kde.org>
Date: Fri Apr 3 09:00:05 2020 +0200
Fix install header
commit f860627986d0ffed959631c50b01c97e2b02a7fa
Author: Laurent Montel <montel@kde.org>
Date: Fri Apr 3 08:55:33 2020 +0200
Improve autotest
commit f02d4d53b13df2d5a261b783ae5225847ba838e5
Author: Laurent Montel <montel@kde.org>
Date: Fri Apr 3 08:22:45 2020 +0200
Improve autotest
commit f72320e3fc224b2d13059319eb421fb53e79e18d
Author: Laurent Montel <montel@kde.org>
Date: Fri Apr 3 08:17:20 2020 +0200
Add autotest
commit c18ba12124a7424f4a81d74c77957fbda573948b
Author: Laurent Montel <montel@kde.org>
Date: Fri Apr 3 07:51:36 2020 +0200
Fix prefix
commit 105d6e327547e7a81ffab634938ef4aeef25a8b1
Author: Laurent Montel <montel@kde.org>
Date: Fri Apr 3 07:49:27 2020 +0200
We need a specific texthtmlbuilder for fixing bug as 419448
####################### ksystemlog
commit b10791980083c83d49e772c65f8e36a4e1a7d431
Author: Heiko Becker <heirecka@exherbo.org>
Date: Tue Apr 7 17:44:28 2020 +0200
Fix build with Qt >= 5.15.0-beta3
46ebd11e6 in qtbase removed the (int, QString) overload again and
un-deprecated the int overload.
####################### ktuberling
commit 4ae7ae8f7816afb02f7809c067c89439ec6f7ff5
Author: Heiko Becker <heirecka@exherbo.org>
Date: Tue Apr 7 13:17:49 2020 +0200
Fix build with Qt >= 5.15.0-beta3
46ebd11e6 in qtbase removed the (int, QString) overload again and
un-deprecated the int overload.
####################### libkdepim
commit 78fffa883a98b97a9684a6e734bb54f8266b9bce
Author: Laurent Montel <montel@kde.org>
Date: Tue Apr 7 13:32:20 2020 +0200
Use isEmpty
####################### libksieve
commit 6aed7dfd9e011462bf15fa71e0e41b79b6128093
Author: Laurent Montel <montel@kde.org>
Date: Tue Apr 7 07:10:20 2020 +0200
Use QLatin1Char('/') here
commit 1663b1850096f9126863491bea2d4d00e26ed7a6
Author: Laurent Montel <montel@kde.org>
Date: Sat Apr 4 17:07:03 2020 +0200
Fix KNS3::UploadDialog usage
commit 8e93abf5a4146d237da1f716defa8688c58b7b1e
Author: David Faure <faure@kde.org>
Date: Sat Apr 4 11:37:17 2020 +0200
Fix compilation with more recent Qt 5.15
commit 46ebd11e66f6f in qtbase removed the (int, QString) overload again and
un-deprecated the int overload.
(cherry picked from commit 8adb341f667069773fcc3c5df07b42634d91823c)
####################### lokalize
commit f0137b7d0a659d11d3be3b0e2f531b3264fd5aba
Author: Karl Ove Hufthammer <karl@huftis.org>
Date: Fri Apr 3 20:47:23 2020 +0200
Update mailings list for the Norwegian languages
Norwegian Bokmål and Norwegian Nynorsk has a new mailing list.
Northern Sami (‘se’) doesn’t really have a new mailing list,
but the old one is no longer available, and it’s acceptable to
use the mailing list for Norwegian Bokmål and Norwegian Nynorsk
for any queries about the Northern Sami translation (which for
the KDE software is currently not active).
####################### mailcommon
commit 9031467023047e3e9b131182e9edba904eb6d267
Author: Laurent Montel <montel@kde.org>
Date: Thu Apr 16 07:27:18 2020 +0200
Save external ref here too
commit c67e7be97d5074030f816e2906ed013919cddd19
Author: Laurent Montel <montel@kde.org>
Date: Mon Apr 6 20:37:56 2020 +0200
Fix Bug 419720 - Message status filter broken
FIXED-IN: 5.14.0
BUG: 419720
commit 588109f4a78ad47f4628910329bf2e7fd34605de
Author: Laurent Montel <montel@kde.org>
Date: Mon Apr 6 20:37:44 2020 +0200
It's already initialize in header
commit 0628360b2240fda1be54e38abd46865707666c2c
Author: Martin Koller <kollix@aon.at>
Date: Sat Apr 4 20:40:53 2020 +0200
do not lose address headers when decrypting mail
Differential Revision: https://phabricator.kde.org/D28399
BUG: 413022
####################### mailimporter
commit dfad61788e06b623d65cbf0947e18d40363531e7
Author: Laurent Montel <montel@kde.org>
Date: Wed Apr 8 13:23:04 2020 +0200
Fix clazy warning
commit 8a909256c898e0ac00c1b00a35083484d59c36c4
Author: Laurent Montel <montel@kde.org>
Date: Tue Apr 7 07:16:27 2020 +0200
Use QLatin1Char('/') here
####################### messagelib
commit f20a966bc3287863e2df1e713f3ec0ea35df6acc
Author: Laurent Montel <montel@kde.org>
Date: Mon Apr 13 13:27:20 2020 +0200
Add equal operator
commit ebec7bd19a557b9f26a70bed9dc8d19d5b9fc0da
Author: Laurent Montel <montel@kde.org>
Date: Mon Apr 13 10:49:13 2020 +0200
Return a struct so we can return more element
commit 4583d81975a5749ee20d59c493803d7de43e7424
Author: Laurent Montel <montel@kde.org>
Date: Sun Apr 12 19:30:40 2020 +0200
Start to improve parsing html
(cherry picked from commit 7545a3f798f21339448e1805b0c323faa2b8d25d)
commit 7f2baf045fa2bee902c17f7e623a22592b738c57
Author: Laurent Montel <montel@kde.org>
Date: Sun Apr 12 10:15:10 2020 +0200
Not necessary to assign qstring
commit 3706e6ae5c6c961336ae85230b456e5fd92dad62
Author: Laurent Montel <montel@kde.org>
Date: Sat Apr 11 15:38:38 2020 +0200
Continue to look at bug 345360
commit b0021079b91018d026dc0e5e5756b293151913e4
Author: Laurent Montel <montel@kde.org>
Date: Sat Apr 11 15:25:11 2020 +0200
Add QStringLiteral
commit 4b945a37283acc010edc3d84a77c866f5a61cfee
Author: Laurent Montel <montel@kde.org>
Date: Sat Apr 11 14:34:29 2020 +0200
Fix Bug 419949 - KMail only partly shows HTML mail
BUG: 419949
FIXED-IN: 5.14.0
commit 43d8b100c91723c88845edfffdd996d767630fc2
Author: Laurent Montel <montel@kde.org>
Date: Thu Apr 9 07:09:28 2020 +0200
Fix typo. We need to use akonadi variable not akonadimime
commit e756936dee48258b245e6e9f3fce049202b25ca8
Author: Laurent Montel <montel@kde.org>
Date: Wed Apr 8 13:21:31 2020 +0200
Fix clazy warning
commit ca197857569138e03597ced25178c050dc783a48
Author: Laurent Montel <montel@kde.org>
Date: Wed Apr 8 07:26:03 2020 +0200
Remove debug
commit 934d53a721e937ae4b8b2e9563babb5f447683eb
Author: Laurent Montel <montel@kde.org>
Date: Tue Apr 7 07:08:24 2020 +0200
Use QLatin1Char('/') here
commit b14c64d51fa6b88df3be2c35095ad1536debdb0d
Author: Laurent Montel <montel@kde.org>
Date: Mon Apr 6 13:57:18 2020 +0200
Don't attach when we click on cancel:
commit 0ae3bf5405cf6332bad8c4a836af9a5ad5ef86e7
Author: Volker Krause <vkrause@kde.org>
Date: Sun Apr 5 13:18:59 2020 +0200
Make sure MessageViewerSettings::self() is called before the base class one
Summary:
This is a dirty workaround and fixes akonadiconsole crashing on startup.
A proper solution would need a larger review of the settings handling
here I guess, ideally getting rid of the base-class self() method to
prevent this from happening in the first place.
Reviewers: mlaurent, dfaure
Subscribers: kde-pim
Tags: #kde_pim
Differential Revision: https://phabricator.kde.org/D28588
commit 26077419a8fae820fabd4e35c306bb14f17ee44d
Author: David Faure <faure@kde.org>
Date: Sat Apr 4 21:50:44 2020 +0200
Downgrade "Valid Data" warning to debug ;)
commit 855b291a7bfe03531bedb6c1c9fb0c8dc9858b58
Author: Laurent Montel <montel@kde.org>
Date: Sat Apr 4 16:26:42 2020 +0200
Fix compilation with more recent Qt 5.15
commit c265784271ffba39e25584964b07ae00ec589ba8
Author: Aleix Pol <aleixpol@kde.org>
Date: Sat Apr 4 16:07:23 2020 +0200
Revert premature port of QComboBox::currentIndexChanged
CCMAIL: montel@kde.org
(cherry picked from commit 94df4238047ee252069190b7f02e745711ba5868)
commit 433986d0fb819d61cba6e2913e2e583d30467523
Author: Laurent Montel <montel@kde.org>
Date: Sat Apr 4 12:15:11 2020 +0200
We need a generic method for fixing "export as pdf" feature
commit bb149fd38c6fe2ff38f74148ba8a40cd0b2fc0bb
Author: Laurent Montel <montel@kde.org>
Date: Fri Apr 3 19:45:14 2020 +0200
Fix extract charset
commit 073808251a3f89f9f026bdc0789fe73548a0d7ff
Author: Laurent Montel <montel@kde.org>
Date: Fri Apr 3 13:49:16 2020 +0200
Fix Bug 419448 - MS Exchange sqeeze spaces in HTML messages
BUG:419448
FIXED-IN: 5.14.0
####################### okular
commit da24829ee2b425185b9e9c0ed7582d37ce1c9bd4
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Apr 12 17:37:16 2020 +0200
djvu: Fix garbage on empty pages at "high" zoom levels
BUGS: 419962
####################### parley
commit 12c8e6b5cf289a10f89e24367cbcad4e3feb176e
Author: Heiko Becker <heirecka@exherbo.org>
Date: Tue Apr 7 17:36:52 2020 +0200
Fix build with Qt >= 5.15.0-beta3
46ebd11e6 in qtbase removed the (int, QString) overload again and
un-deprecated the int overload.
####################### pimcommon
commit 96c80ab5e4bf2767c51cb26b2f0943e4cdf618bf
Author: Laurent Montel <montel@kde.org>
Date: Tue Apr 7 13:54:24 2020 +0200
Use variable here
commit daa50beee18133677de68e25cbc9a9eff2d19c5d
Author: Laurent Montel <montel@kde.org>
Date: Tue Apr 7 07:18:35 2020 +0200
Use QLatin1Char('/') here
commit addbc65d1f59f3a6a619800ae10bc63ca4b8e8fc
Author: Laurent Montel <montel@kde.org>
Date: Mon Apr 6 09:03:27 2020 +0200
Show message info when we change setting
commit ee1958fccf29def66699e71148b29a70f6c66021
Author: Laurent Montel <montel@kde.org>
Date: Sat Apr 4 13:43:07 2020 +0200
Fix compilation with more recent Qt 5.15
####################### pim-data-exporter
commit 5efab34a4a85aaf3d38750e8b14821c7376fade8
Author: Laurent Montel <montel@kde.org>
Date: Tue Apr 7 07:45:36 2020 +0200
Use QLatin1Char('/') here
####################### print-manager
commit 43da9240bba85bf2719839d35f0a67a59df721e0
Author: Gastón Haro <harogaston@gmail.com>
Date: Tue Apr 7 12:53:14 2020 -0600
Fixes printer-manager error messages from exceeding window dimenssions
Summary:
Set setWordWrap(true) on the various KMessageWidget used.
I could not test it as I was not able to produce an error message.
BUG: 415444
Test Plan: ?? Ideas
Reviewers: broulik, ngraham
Reviewed By: ngraham
Subscribers: ngraham, kde-utils-devel
Differential Revision: https://phabricator.kde.org/D28548
####################### spectacle
commit 464dde9677f4270c5d2ecfddf45c192a33493efe
Author: Franz Baumgärtner <f.baumg@mailbox.org>
Date: Sun Apr 12 19:31:52 2020 -0600
Fix inability to Drag+Drop screenshot due to subfolder in filename
Summary:
Fixes the mentioned bug by creating all necessary subdirectories.
BUG: 417722
Test Plan:
1. Set save Filename in Spectacle to one including one or more `/`, thus including subdirectories. Example: `%Y/%M/screen-%2d`
2. Take a screenshot
3. Start dragging the preview
Reviewers: #spectacle, davidre, ngraham
Reviewed By: #spectacle, davidre, ngraham
Subscribers: ngraham, davidre, #spectacle
Tags: #spectacle
Differential Revision: https://phabricator.kde.org/D28702
####################### umbrello
commit 05b493ab033a28183f9e01786b22bf1c9ddb6837
Author: Ralf Habacker <ralf.habacker@freenet.de>
Date: Thu Apr 16 18:35:23 2020 +0200
cmake use svg as image format for dot
This should fix 'dot' errors like 'Format: "png" not recognized....'
CCBUG:419202
commit 40ad558e8aa71c15446b291b5bc320bedf11d61f
Author: Ralf Habacker <ralf.habacker@freenet.de>
Date: Thu Apr 16 17:50:14 2020 +0200
cmake: increase maximum dot graph depth to not limit generated graphs
This fixes the following warning on KDE CI:
Generating docs for file umbrello/codeimport/idlimport.cpp warning:
Included by graph for 'debug_utils.h' not generated, too many nodes.
Consider increasing DOT_GRAPH_MAX_NODES.
commit a5ef27d1b4aa660c0b0fcda4193024e88826a89e
Author: Ralf Habacker <ralf.habacker@freenet.de>
Date: Thu Apr 16 17:47:34 2020 +0200
cmake: on generating api doc disable using multiple dot targets
The detection of supported dot versions (>= 1.8.10) seems to not work
correctly.
CCBUG:419202
commit 6f98de12883c5a04946e9d2d506ca7b2e66b4539
Author: Ralf Habacker <ralf.habacker@freenet.de>
Date: Thu Apr 16 17:39:02 2020 +0200
cmake: Only enable generating dot files if the 'dot' tool was found
CCBUG:419202
commit 3d467938b5770e060f8b4da55ad362b6160ab5f9
Author: Ralf Habacker <ralf.habacker@freenet.de>
Date: Thu Apr 16 08:50:15 2020 +0200
Add support for Qt5 variant of qhelpgenerator
CCBUG:419202
cfeck created this paste.Apr 17 2020, 10:51 AM
cfeck created this object in space S1 KDE Community.
cfeck created this object with edit policy "Administrators".