aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-11-03GIT_SILENT Commit translations from l10n-kf5v5.52.0-rc1v5.52.0l10n daemon script
2018-11-03GIT_SILENT Upgrade ECM and KF5 version requirements for 5.52.0 release.l10n daemon script
2018-11-02Remove unused variableAlbert Astals Cid
Reviewers: svuorela Reviewed By: svuorela Subscribers: kde-frameworks-devel Tags: #frameworks Differential Revision: https://phabricator.kde.org/D16565
2018-10-15Fix logic error in NotifyFlag testingDavid Edmundson
Notify was changed to 0x08 | Persistent as it implied the other flag state. However this change was not updated in the test. Reviewed-by: Kai Uwe Broulik
2018-10-15GIT_SILENT Upgrade KF5 version to 5.52.0.l10n daemon script
2018-10-12GIT_SILENT: Clean up compile flags which are already includes in ↵Laurent Montel
KDEFrameworkCompilerSettings
2018-10-12GIT_SILENT: Remove include(QT_NO_NARROWING_CONVERSIONS_IN_CONNECT) as it ↵Laurent Montel
already included in KDEFrameworkCompilerSettings
2018-10-10Set explicit arg type in QCOMPAREDavid Edmundson
2018-10-10Fix compilation without D-BusVolker Krause
Relevant on Android.
2018-10-10Add mechanism to notify other clients of config changes over DBusDavid Edmundson
Summary: Intention is not to create a registry like system, but to replace KDElibs4Support::KGlobalSettings and to replace other system settingss -> some app communication in a more generic way. writeEntry gains an additional flag Notify which if set, will notify clients of what has actually changed when we sync. Rationale to put this into KConfig was so that we could have everything batched and sychronised to the file sync and to get the fine detailed exposure of what has actually changed which we don't get with a file watcher. Default behaviour remains identical without any broadcast messages. As it is a new dependency it is purely optional and anything referencing DBus is not in the public API. Our deployment on platforms without DBus tend to be standalone applications anyway. Test Plan: Attached unit test Reviewers: broulik, dfaure Reviewed By: broulik, dfaure Subscribers: dfaure, broulik, zzag, kde-frameworks-devel Tags: #frameworks Differential Revision: https://phabricator.kde.org/D13034
2018-10-10Expose getter method for KConfig::addConfigSourcesDavid Edmundson
Test Plan: Used in subsequent patch Subscribers: kde-frameworks-devel Tags: #frameworks Differential Revision: https://phabricator.kde.org/D13033
2018-10-10SVN_SILENT made messages (.desktop file) - always resolve oursl10n daemon script
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"
2018-10-07GIT_SILENT Upgrade ECM and KF5 version requirements for 5.51.0 release.l10n daemon script
2018-09-30Remove misleading use of KDE_INSTALL_PYTHONBINDINGSDIRStefan Brüns
Summary: Removing the (typically empty) optional argument from the function invocation avoids confusion and allows to remove the parameter. See also D15558 Test Plan: make Reviewers: #frameworks, apol Subscribers: kde-frameworks-devel Tags: #frameworks Differential Revision: https://phabricator.kde.org/D15848
2018-09-28 Fix issue when reading path listsAleix Pol
Summary: They were not being split properly. Test Plan: Tests pass, including the new one. Reviewers: #frameworks, dfaure Reviewed By: dfaure Subscribers: dfaure, anthonyfieroni, kde-frameworks-devel Tags: #frameworks Differential Revision: https://phabricator.kde.org/D14162
2018-09-18API dox: 0 -> nullptrFriedrich W. H. Kossebau
2018-09-17kcfg_compiler now documents valid inputs for its 'Color' typeHarald Sitter
Summary: it wasn't exactly clear what the inputs for a Color type may be. this is now explained along with special type descriptions. it isn't perfectly ideal here since it is a bit hard to find, but better be hard to find than not documented at all. from a quick glance at the code indeed anything goes that QColor can construct from a QString. there is also custom regex code in the compiler that allows construction from r,g,b,a via the appropriate ctor of qcolor. Reviewers: broulik Reviewed By: broulik Subscribers: broulik, kde-frameworks-devel Tags: #frameworks Differential Revision: https://phabricator.kde.org/D15576
2018-09-17whitespace cleanupHarald Sitter
SCM_SILENT
2018-09-14Port deprecated method + use strict compile flagsLaurent Montel
2018-09-08GIT_SILENT Upgrade KF5 version to 5.51.0.l10n daemon script
2018-08-31GIT_SILENT Upgrade ECM and KF5 version requirements for 5.50.0 release.l10n daemon script
2018-08-26SVN_SILENT made messages (.desktop file) - always resolve oursl10n daemon script
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"
2018-08-14Remove warning about old kiosk feature that no longer applies.David Faure
Summary: The concept of KStandardDirs resources no longer exists; and anyway kiosk users disable things at the feature level, not at the config file level. Test Plan: Compiles without warnings Reviewers: davidedmundson, arichardson, broulik Reviewed By: broulik Subscribers: kde-frameworks-devel Tags: #frameworks Differential Revision: https://phabricator.kde.org/D14829
2018-08-11GIT_SILENT Upgrade KF5 version to 5.50.0.l10n daemon script
2018-08-11Set system default shortcut Ctrl+0 for "Actual Size" actionPeter Mühlenpfordt
Summary: Default shortcuts for zoom in ({key Ctrl +}) and out ({key Ctrl -}) already exists but not for going back to 100%. The shortcut {key Ctrl 0} is widely used by different applications for zoom to original size. This patch adds {key Ctrl 0} as system default for `KStandardAction::ActualSize`. FEATURE: 305702 FIXED-IN: 5.50 Test Plan: Searched lxr for conflicts of `KStandardAction::ActualSize` and usage of Ctrl+0 shortcut. Checked the following applications with set system default shortcut: * Gwenview * KAlgebra * KolourPaint * KStars (FITS viewer) * Cirkuit Only Cirkuit uses Ctrl+0 for "Zoom To Fit" action. I'll create a patch to solve this conflict. Reviewers: dfaure, broulik, ngraham, rkflx Reviewed By: dfaure, ngraham, rkflx Subscribers: jriddell, rkflx, kde-frameworks-devel Tags: #frameworks Differential Revision: https://phabricator.kde.org/D14201
2018-08-08Fix cleanup of kconfigtest kdeglobalsDavid Edmundson
Summary: We expand the path of kdeglobals to ~/.qttest/kconfigtests/../kdeglobals which works during the test, but this cleanup is run both on startup and after removing ~/.qttest/kconfigtests at which point the expansion fails. Test Plan: Ran test, looked at qttest dir. It had cleaned up Reviewers: broulik Reviewed By: broulik Subscribers: kde-frameworks-devel Tags: #frameworks Differential Revision: https://phabricator.kde.org/D13032
2018-08-04GIT_SILENT Upgrade ECM and KF5 version requirements for 5.49.0 release.l10n daemon script
2018-08-04GIT_SILENT Upgrade KF5 version to 5.49.0.l10n daemon script
2018-07-08Honor BUILD_TESTINGAntonio Rojas
Only build tests if BUILD_TESTING is on Differential Revision: https://phabricator.kde.org/D13947
2018-07-07GIT_SILENT Upgrade ECM and KF5 version requirements for 5.48.0 release.l10n daemon script
2018-06-30Remove unused includeBoudewijn Rempt
Differential revision: https://phabricator.kde.org/D13792
2018-06-10GIT_SILENT Upgrade KF5 version to 5.48.0.l10n daemon script
2018-06-02GIT_SILENT Upgrade ECM and KF5 version requirements for 5.47.0 release.l10n daemon script
2018-05-16KConfigCompiler_Test: Update test_signal.h.ref to follow the generated fileMaximiliano Curia
Summary: Since "Use override" (3985f2a0) kconfig_compiler.cpp generates usrSave with override instead of Q_DECL_OVERRIDE. This causes the KConfigCompiler_Test to fail [1], as the reference file of the test was not updated. [1]: https://build.kde.org/job/Frameworks%20kconfig%20kf5-qt5%20SUSEQt5.10/32/ Reviewers: #frameworks, mlaurent Reviewed By: mlaurent Subscribers: kde-frameworks-devel Tags: #frameworks Differential Revision: https://phabricator.kde.org/D12892
2018-05-13GIT_SILENT Upgrade KF5 version to 5.47.0.l10n daemon script
2018-05-07kcfg.xsd - do not require a kcfgfile elementAllen Winter
Differential Revision: https://phabricator.kde.org/D7415
2018-05-05GIT_SILENT Upgrade ECM and KF5 version requirements for 5.46.0 release.l10n daemon script
2018-05-04GIT_SILENT Upgrade KF5 version to 5.46.0.l10n daemon script
2018-05-04Use overrideLaurent Montel
2018-04-19Warning--Laurent Montel
2018-04-07GIT_SILENT Upgrade ECM and KF5 version requirements for 5.45.0 release.l10n daemon script
2018-04-06Fix autotestLaurent Montel
2018-04-06SVN_SILENT made messages (.desktop file) - always resolve oursl10n daemon script
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"
2018-03-24Remove useless QT_VERSION_CHECKAlbert Astals Cid
We require Qt 5.8
2018-03-24GIT_SILENT Upgrade Qt5 version requirement to 5.8.0.l10n daemon script
2018-03-11Remove not necessary QtCore and coLaurent Montel
2018-03-10GIT_SILENT Upgrade KF5 version to 5.45.0.l10n daemon script
2018-03-03GIT_SILENT Upgrade ECM and KF5 version requirements for 5.44.0 release.l10n daemon script
2018-03-03GIT_SILENT Upgrade KF5 version to 5.44.0.l10n daemon script
2018-02-24Save some memory allocations by using the right APIAleix Pol
Test Plan: tests pass Reviewers: #frameworks, markg Reviewed By: markg Subscribers: markg Tags: #frameworks Differential Revision: https://phabricator.kde.org/D10771