aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-11-07Make sure we don't break compilation with past broken unitsv5.28.0-rc2v5.28.0Aleix Pol
Summary: Show a warning together with the old broken behavior Reviewers: #frameworks, dfaure Reviewed By: dfaure Differential Revision: https://phabricator.kde.org/D3287 (cherry picked from commit ab9d76d7c012aa1a07a942cf50f33616bd49605f)
2016-11-05Commit translations from l10n-kf5v5.28.0-rc1l10n daemon script
2016-11-05Upgrade ECM and KF5 version requirements for 5.28.0 release.l10n daemon script
2016-11-03Don't be fatal on File field not being properly parsedAleix Pol
Summary: Fallback on trying the same filename as the actual file. There were some regressions due to the former matching expression: string(REGEX REPLACE "^(.*\n)?File=([^\n]+kcfg).*\n.*$" "\\2" _kcfg_FILENAME "${_contents}") This one would allow for the File field to be the kcfgc file (which doesn't make sense). With this patch we're not reproducing this behaviour, but we're allowing for the things that aren't building to work. After all, most kcfg and kcfgc files share the same name. Reviewers: #frameworks, davidedmundson Reviewed By: davidedmundson Subscribers: aacid, kfunk Differential Revision: https://phabricator.kde.org/D3226
2016-10-31Make kconfig_compiler autotests use the KCONFIG_ADD_KCFG_FILESAleix Pol
Summary: Instead of having an odd fake of it. Will help some required refactorings and already showed some issues, fixed by this patch, namely: - don't use string(regex replace) to extract a string from another string. in case it doesn't match it will offer the whole content which is never what we want. - messages(ERROR), the correct parameter is FATAL_ERROR, cmake understands "ERROR" as mere output string - turn the macro into a function, otherwise 2 calls in the same subdirectory are dangerous. CCBUG: 371562 Test Plan: tests still pass, projects that use the macro still build Reviewers: #frameworks, dfaure Reviewed By: dfaure Subscribers: dfaure Differential Revision: https://phabricator.kde.org/D3178
2016-10-24Add documentation for the GenerateProperties optionElvis Angelaccio
REVIEW: 129188
2016-10-09Upgrade KF5 version to 5.28.0.l10n daemon script
2016-10-02Upgrade ECM and KF5 version requirements for 5.27.0 release.l10n daemon script
2016-10-02Fix memory leak in SignalsTestNoSingletonDpointer, found by ASAN.David Faure
2016-09-27Marm test QSKIP when running as root.Evgeniy Sadovnik
The test checks that saving a read-only config file fails. But because root can write into read-only files, the test is failing when running by root. Check for uid when running the test and make it XFAIL if we are running as root. REVIEW: 128916
2016-09-10Upgrade KF5 version to 5.27.0.l10n daemon script
2016-09-05Upgrade ECM and KF5 version requirements for 5.26.0 release.l10n daemon script
2016-09-05Upgrade KF5 version to 5.26.0.l10n daemon script
2016-08-14Add Donate standard shortcutElvis Angelaccio
REVIEW: 128608 CHANGELOG: Add Donate entry to KStandardShortcut
2016-08-06Upgrade ECM and KF5 version requirements for 5.25.0 release.l10n daemon script
2016-08-04api docs: add version to @deprecated tag for authorizeKActionDavid Faure
2016-08-01Add DeleteFile and RenameFile standard shortcut.Leslie Zhai
REVIEW: 128517
2016-07-24Qt 5.5.0 is now required, as discussed on kde-frameworks-devell10n daemon script
2016-07-13Reduce string modifications when calling translatePathAleix Pol
Don't drop the file: prefix twice in every run. Use appropriate API on paths rather than string handling, when possible. REVIEW: 127813
2016-07-09Upgrade KF5 version to 5.25.0.l10n daemon script
2016-07-02Fix previous commit - this still needs to be exportedDavid Faure
CCMAIL: elvis.angelaccio@kdemail.net
2016-07-02Deprecate authorizeKAction() in favor of authorizeAction()Elvis Angelaccio
REVIEW: 128023
2016-07-02Upgrade ECM and KF5 version requirements for 5.24.0 release.l10n daemon script
2016-06-22Fix reproducibility in builds by ensuring utf-8 encoding.Scarlett Clark
REVIEW:128102 Set encoding on kconfig_compiler generated cpp and headers to utf-8 ( reproducible builds ) Under certain locals non standard characters will get dropped making builds un reproducible. Setting the encoding to utf-8 on the files makes all builds reproducible no matter what ( or none ) locale is in use. Thereby making the build reproducible.
2016-06-17Promote Android supportAndreas Cord-Landwehr
2016-06-15Individually specify supported platformsAndreas Cord-Landwehr
2016-06-13Upgrade KF5 version to 5.24.0.l10n daemon script
2016-06-06Upgrade ECM and KF5 version requirements for 5.23.0 release.l10n daemon script
2016-06-06Upgrade KF5 version to 5.23.0.l10n daemon script
2016-05-22update metainfo.yaml for new kapidox versionOlivier CHURLAUD
2016-05-19Avoid skipping KAuthorized checkDavid Edmundson
Previously, if a .desktop file had a TryExec and a X-KDE-AuthorizeAction entry we would skip the KAuthorized check. This is clearly wrong. REVIEW: 127948
2016-05-19Add autotest for broken KAuthorised check in tryExec()David Edmundson
2016-05-11Remove not-implemented functionStephen Kelly
No one could be using this because they would not be able to link,
2016-05-11Remove typedef copyStephen Kelly
The typedef is copied here to avoid including the header that contains it. However, this confuses sip if binding definitions are generated from the C++ headers. Simply inline the typedef instead.
2016-05-06Upgrade ECM and KF5 version requirements for 5.22.0 release.l10n daemon script
2016-05-02Upgrade KF5 version to 5.22.0.l10n daemon script
2016-04-27Make kdeglobals file path static as intendedAleix Pol
2016-04-27Remove unneeded ifdefs to compare pathsAleix Pol
Just keep the setting once and always use QString::compare instead of using QString::operator== or QString::compare depending on the platform.
2016-04-27Remove unused variableAleix Pol
2016-04-17core/ksharedconfig.cpp - pedanticAllen Winter
2016-04-16kconfigcompiler_test_signals.cpp - pedanticAllen Winter
2016-04-03Upgrade Qt version requirement.l10n daemon script
2016-04-02Upgrade ECM and KF5 version requirements for 5.21.0 release.l10n daemon script
2016-03-28Add support for get QStandardPaths locations.Sandro Knauß
Inside desktop files we want to reach also data, cache and config home to create files inside these directories. REVIEW: 127462 CHANGELOG: Add support for get QStandardPaths locations inside desktop files.
2016-03-13Upgrade KF5 version to 5.21.0.l10n daemon script
2016-03-04Upgrade ECM and KF5 version requirements for 5.20.0 release.l10n daemon script
2016-02-19KConfigIniBackend: Fix expensive detach in lookupKevin Funk
Differential Revision: https://phabricator.kde.org/D990
2016-02-13Upgrade KF5 version to 5.20.0.l10n daemon script
2016-02-06Upgrade ECM and KF5 version requirements for 5.19.0 release.l10n daemon script
2016-01-28Let KDE*CompilerSettings change the policies in the projectAleix Pol
As suggested in ECM documentation.