Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-12-06 | Commit translations from l10n-kf5v5.17.0-rc1v5.17.0 | l10n daemon script | |
2015-12-06 | Upgrade ECM and KF5 version requirements for 5.17.0 release. | l10n daemon script | |
2015-12-06 | Upgrade KF5 version to 5.17.0. | l10n daemon script | |
2015-11-21 | SVN_SILENT made messages (.desktop file) - always resolve ours | l10n 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" | |||
2015-11-09 | In KConfigTest::testEntryMap, convert QByteArray with nulls using a char * | Matthew Dawson | |
Due to https://codereview.qt-project.org/#/c/106473/, Qt 5.6 keeps null characters in QByteArray -> QString conversions, which breaks this test as one QByteArray contains nulls. Instead, convert the QByteArray to const char * first, so QString stops at the first null. The actual behaviour of KConfig is unchanged, as internally the conversion always went through a const char *, which avoids creating QStrings with null characters. REVIEW: 126001 | |||
2015-11-08 | Upgrade ECM and KF5 version requirements for 5.16.0 release. | l10n daemon script | |
2015-11-04 | SVN_SILENT made messages (.desktop file) - always resolve ours | l10n 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" | |||
2015-11-03 | Fix usage of ecm_create_qm_loader. | Alex Merry | |
Generate-source-file macros should be used from the same CMakeLists.txt file as the targets they generate files for. | |||
2015-10-30 | Use QStringLiteral in generated code | Montel Laurent | |
REVIEW: 125833 | |||
2015-10-27 | Fix include variable | Aleix Pol | |
2015-10-20 | use KDE_INSTALL_FULL_ variant, so there is no ambiguity | Rex Dieter | |
2015-10-17 | Allow KConfig to use resources as fallback config files | Christoph Cullmann | |
Fallback will be :/kconfig/ REVIEW: 125598 | |||
2015-10-10 | Upgrade KF5 version to 5.16.0. | l10n daemon script | |
2015-10-05 | Minor optimizations | Albert Astals Cid | |
Ran the clazy tool (http://www.kdab.com/use-static-analysis-improve-performance/) Mostly QStringLiteral/QLatin1String additions A few const & additions to non public methods Compiles, test pass REVIEW: 125106 | |||
2015-10-03 | Upgrade ECM and KF5 version requirements for 5.15.0 release. | l10n daemon script | |
2015-09-25 | Mark kconfig-compiler as non-gui tool | Harald Fernengel | |
Makes sure that it doens't create an app bundle on Mac OS X REVIEW: 125337 | |||
2015-09-12 | Upgrade KF5 version to 5.15.0. | l10n daemon script | |
2015-09-07 | [KDesktopFile] add readMimeTypes | Kai Uwe Broulik | |
CHANGELOG: KDesktopFile can now read mime types specified in the MimeType field REVIEW: 124746 | |||
2015-09-04 | Upgrade ECM and KF5 version requirements for 5.14.0 release. | l10n daemon script | |
2015-08-22 | Optimize readEntryGui | Kevin Funk | |
Don't build error string every time REVIEW: 124879 | |||
2015-08-19 | Rename private class to avoid exporting it accidentally | Montel Laurent | |
2015-08-19 | Fix pedantic | Montel Laurent | |
2015-08-19 | unittest fix: compare floats/doubles rather than ↵ | David Faure | |
strings-made-from-floats/doubles. Qt 5.5 writes out "123.567001" for 123.567f. No matter, what we want is the roundtrip float-string-float to work, and it does. | |||
2015-08-18 | Fix unit-tests, expected output changed, so update the tests. | Sergio Martins | |
2015-08-18 | Avoid QString::fromLatin1() in generated code | Sergio Martins | |
Because it allocates memory. REVIEW: 124717 | |||
2015-08-16 | Rename private class to avoid exporting it accidentally | Montel Laurent | |
2015-08-12 | Minimize calls to expensive QStandardPaths::locateAll() | Sergio Martins | |
It's called a lot at startup as shown by profiling. heaptrack also complains it does many heap allocations, so cache it. REVIEW: 124199 | |||
2015-08-12 | Upgrade KF5 version to 5.14.0. | l10n daemon script | |
2015-08-05 | finish the port to QCommandLineParser (it has addPositionalArgument now) | David Faure | |
2015-08-05 | test_kconf_update: use QStandardPaths test mode | David Faure | |
to avoid touching the user's real files | |||
2015-08-05 | print path on failure | David Faure | |
2015-08-01 | Upgrade Qt version requirement to 5.3 | David Faure | |
2015-08-01 | Upgrade ECM and KF5 version requirements for 5.13.0 release. | l10n daemon script | |
2015-07-27 | Add/update first line of README.md to be a short description, useful for inqlude | David Faure | |
2015-07-27 | Don't recommend to use deprecated API | Aleix Pol | |
REVIEW: 124467 | |||
2015-07-27 | Don't generate deprecated code | Aleix Pol | |
::usrWriteConfig is deprecated, use ::usrSave as recommended by the documentation. REVIEW: 124467 | |||
2015-07-10 | Upgrade KF5 version to 5.13.0. | l10n daemon script | |
2015-07-04 | Upgrade ECM and KF5 version requirements for 5.12.0 release. | l10n daemon script | |
2015-07-02 | Remove compiler warning about initialization of sub object. | Milian Wolff | |
2015-06-24 | Mark message() as WARNING | Aleix Pol | |
As recommended by Alex Merry CCMAIL: alex.merry@kde.org | |||
2015-06-23 | Install kconfig_compiler into libexec | Aleix Pol | |
This will make it end up in a platform-dependent prefix (i.e. /usr/lib64, /usr/lib/arm-linux-gnueabihf, etc) rather than /usr/bin, making it possible to have different kconfig_compiler versions installed, useful for cross-compilation. REVIEW: 124138 | |||
2015-06-22 | Support translation domain in 'kde' translation system | Chusslove Illich (Часлав Илић) | |
In applications translations can be looked up in the globally set translation domain, but in libraries it is necessary to link every i18n call to the library's own translation domain. A new code generation option TranslationDomain= is added to enable this. It has effect only if TranslationSystem=kde is set. Added unit tests to check generated translation calls. CHANGELOG: New code generation option TranslationDomain=, for use with TranslationSystem=kde; normally needed in libraries. REVIEW: 123872 | |||
2015-06-21 | Make it possible to use kconfig_compiler from different sources | Aleix Pol | |
This way we can specify the used tooling targets to be used, useful if we're cross-compiling, since we get to use the tooling that runs in the local platform. REVIEW: 124104 | |||
2015-06-15 | Unittest of reading config data from qt resource | Sune Vuorela | |
REVIEW: 124098 | |||
2015-06-12 | Upgrade KF5 version to 5.12.0. | l10n daemon script | |
2015-06-06 | Upgrade ECM and KF5 version requirements for 5.11.0 release. | l10n daemon script | |
2015-05-29 | Prevent crash if QWindow::screen() is null | Aleix Pol | |
Reviewed by Handa | |||
2015-05-13 | Add verbose ecm message when ECM is not found. | Jeremy Whiting | |
2015-05-12 | fix missing export | David Faure | |
2015-05-11 | Add KConfigGui::setSessionConfig() | Stefan Becker | |
When the application receives a saveState signal it needs to replace the current KConfig object with a new one based on the QSessionManager information. Add a new interface that accepts the new session id and key. BUG: 346768 REVIEW: 123705 |